diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bd8f3e4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,14 @@ +name: CI +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Install dependencies + run: npm ci + - name: Run tests + run: npm test diff --git a/.github/workflows/update-cpp-parser.yml b/.github/workflows/update-cpp-parser.yml new file mode 100644 index 0000000..402a710 --- /dev/null +++ b/.github/workflows/update-cpp-parser.yml @@ -0,0 +1,37 @@ +name: Update Dependencies +on: + schedule: + - cron: "0 0/4 * * *" # every day at midnight + push: + branches: ["main"] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Update CPP parser + run: npm update + - name: Install dependencies + run: npm ci + - name: Regenerate Source Files + run: npm run generate + - name: Generate parser + run: npm install + - name: Run tests + run: | + git submodule init + git submodule update + cd tree-sitter-cpp && git checkout origin/master && cd .. + cp tree-sitter-cpp/corpus/* test/corpus + npm test + - name: Create Pull Request + uses: peter-evans/create-pull-request@v3 + with: + base: ${{ github.head_ref }} + body: Update dependencies and regenerate CPP parser + branch: update-cpp-parser + commit-message: Update dependencies and regenerate CPP parser + title: Update CPP parser diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..32e6d4b --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,59 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "0.7.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" +dependencies = [ + "memchr", +] + +[[package]] +name = "cc" +version = "1.0.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + +[[package]] +name = "regex" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.6.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" + +[[package]] +name = "tree-sitter" +version = "0.20.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4423c784fe11398ca91e505cdc71356b07b1a924fc8735cfab5333afe3e18bc" +dependencies = [ + "cc", + "regex", +] + +[[package]] +name = "tree-sitter-mql5" +version = "0.0.1" +dependencies = [ + "cc", + "tree-sitter", +] diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c0e4bfd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tree-sitter-mql5" +description = "mql5 grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "mql5"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-mql5" +edition = "2018" +license = "ISC" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "~0.20.3" + +[build-dependencies] +cc = "1.0" diff --git a/README.md b/README.md new file mode 100644 index 0000000..5ee759d --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +## tree-sitter-mql5 + +[![CI](https://github.com/mskelton/tree-sitter-mql5/actions/workflows/ci.yml/badge.svg)](https://github.com/mskelton/tree-sitter-styled/actions/workflows/ci.yml) + +This is an extension of +[tree-sitter-cpp](https://github.com/tree-sitter/tree-sitter-cpp) to support +mql5 syntax. diff --git a/binding.gyp b/binding.gyp new file mode 100644 index 0000000..3e1154a --- /dev/null +++ b/binding.gyp @@ -0,0 +1,19 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_mql5_binding", + "include_dirs": [ + " +#include "nan.h" + +using namespace v8; + +extern "C" TSLanguage * tree_sitter_mql5(); + +namespace { + +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_mql5()); + + Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("mql5").ToLocalChecked()); + Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +} + +NODE_MODULE(tree_sitter_mql5_binding, Init) + +} // namespace diff --git a/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 0000000..f995808 --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,19 @@ +try { + module.exports = require("../../build/Release/tree_sitter_mql5_binding"); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require("../../build/Debug/tree_sitter_mql5_binding"); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1 + } +} + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs new file mode 100644 index 0000000..c6061f0 --- /dev/null +++ b/bindings/rust/build.rs @@ -0,0 +1,40 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.include(&src_dir); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + + // 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("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("-Wno-unused-parameter") + .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/bindings/rust/lib.rs b/bindings/rust/lib.rs new file mode 100644 index 0000000..c9bcbd5 --- /dev/null +++ b/bindings/rust/lib.rs @@ -0,0 +1,52 @@ +//! This crate provides mql5 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 = ""; +//! let mut parser = tree_sitter::Parser::new(); +//! parser.set_language(tree_sitter_mql5::language()).expect("Error loading mql5 grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter::Language; + +extern "C" { + fn tree_sitter_mql5() -> Language; +} + +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_mql5() } +} + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +// 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 { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(super::language()) + .expect("Error loading mql5 language"); + } +} diff --git a/grammar.js b/grammar.js new file mode 100644 index 0000000..4c0c5bb --- /dev/null +++ b/grammar.js @@ -0,0 +1,6 @@ +const CPP = require("tree-sitter-cpp/grammar") + +module.exports = grammar(CPP, { + name: "mql5", + rules: {}, +}) diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1a04360 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,107 @@ +{ + "name": "tree-sitter-mql5", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-mql5", + "version": "0.1.0", + "license": "ISC", + "dependencies": { + "nan": "^2.17.0" + }, + "devDependencies": { + "prettier": "^2.8.1", + "tree-sitter-c": "git://github.com/tree-sitter/tree-sitter-c.git", + "tree-sitter-cli": "^0.20.7", + "tree-sitter-cpp": "git://github.com/tree-sitter/tree-sitter-cpp.git" + } + }, + "node_modules/nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==" + }, + "node_modules/prettier": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/tree-sitter-c": { + "version": "0.20.2", + "resolved": "git+ssh://git@github.com/tree-sitter/tree-sitter-c.git#7175a6dd5fc1cee660dce6fe23f6043d75af424a", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "nan": "^2.14.0" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.20.7", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.7.tgz", + "integrity": "sha512-MHABT8oCPr4D0fatsPo6ATQ9H4h9vHpPRjlxkxJs80tpfAEKGn6A1zU3eqfCKBcgmfZDe9CiL3rKOGMzYHwA3w==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/tree-sitter-cpp": { + "version": "0.20.0", + "resolved": "git+ssh://git@github.com/tree-sitter/tree-sitter-cpp.git#cf12e881661e4c9a5ca6ae2ed5c6b9dfd44d81dd", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "nan": "^2.14.0" + } + } + }, + "dependencies": { + "nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==" + }, + "prettier": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", + "dev": true + }, + "tree-sitter-c": { + "version": "git+ssh://git@github.com/tree-sitter/tree-sitter-c.git#7175a6dd5fc1cee660dce6fe23f6043d75af424a", + "dev": true, + "from": "tree-sitter-c@git://github.com/tree-sitter/tree-sitter-c.git", + "requires": { + "nan": "^2.14.0" + } + }, + "tree-sitter-cli": { + "version": "0.20.7", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.7.tgz", + "integrity": "sha512-MHABT8oCPr4D0fatsPo6ATQ9H4h9vHpPRjlxkxJs80tpfAEKGn6A1zU3eqfCKBcgmfZDe9CiL3rKOGMzYHwA3w==", + "dev": true + }, + "tree-sitter-cpp": { + "version": "git+ssh://git@github.com/tree-sitter/tree-sitter-cpp.git#cf12e881661e4c9a5ca6ae2ed5c6b9dfd44d81dd", + "dev": true, + "from": "tree-sitter-cpp@git://github.com/tree-sitter/tree-sitter-cpp.git", + "requires": { + "nan": "^2.14.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..62b9e33 --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "tree-sitter-mql5", + "version": "0.1.0", + "description": "mql5 grammar for tree-sitter", + "repository": "https://github.com/mskelton/tree-sitter-mql5.git", + "main": "bindings/node", + "keywords": [ + "tree-sitter", + "parser", + "mql5" + ], + "author": "Mark Skelton", + "license": "ISC", + "scripts": { + "generate": "tree-sitter generate", + "test": "tree-sitter test && tree-sitter parse examples/* --quiet --time" + }, + "dependencies": { + "nan": "^2.17.0" + }, + "devDependencies": { + "prettier": "^2.8.1", + "tree-sitter-cli": "^0.20.7", + "tree-sitter-c": "git://github.com/tree-sitter/tree-sitter-c.git", + "tree-sitter-cpp": "git://github.com/tree-sitter/tree-sitter-cpp.git" + }, + "tree-sitter": [ + { + "scope": "source.mql5", + "file-types": [ + "mql5", + "mqh" + ], + "highlights": [ + "queries/highlights.scm", + "node_modules/tree-sitter-cpp/queries/highlights.scm" + ] + } + ] +} diff --git a/src/grammar.json b/src/grammar.json new file mode 100644 index 0000000..2a0cdcf --- /dev/null +++ b/src/grammar.json @@ -0,0 +1,12944 @@ +{ + "name": "mql5", + "word": "identifier", + "rules": { + "translation_unit": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + "_top_level_item": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_if" + }, + { + "type": "SYMBOL", + "name": "preproc_ifdef" + }, + { + "type": "SYMBOL", + "name": "preproc_include" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + } + ] + }, + { + "type": "SYMBOL", + "name": "namespace_definition" + }, + { + "type": "SYMBOL", + "name": "concept_definition" + }, + { + "type": "SYMBOL", + "name": "namespace_alias_definition" + }, + { + "type": "SYMBOL", + "name": "using_declaration" + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "static_assert_declaration" + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "SYMBOL", + "name": "template_instantiation" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" + }, + "named": true, + "value": "declaration" + } + ] + }, + "preproc_include": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*include" + }, + "named": false, + "value": "#include" + }, + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "system_lib_string" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + "preproc_def": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*define" + }, + "named": false, + "value": "#define" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + "preproc_function_def": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*define" + }, + "named": false, + "value": "#define" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "preproc_params" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + "preproc_params": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "..." + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "..." + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_call": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "directive", + "content": { + "type": "SYMBOL", + "name": "preproc_directive" + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_arg" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "\n" + } + ] + }, + "preproc_if": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_ifdef": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_else": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + } + ] + }, + "preproc_elif": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_if_in_field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_ifdef_in_field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + }, + "preproc_else_in_field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + } + ] + }, + "preproc_elif_in_field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_field_declaration_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_field_declaration_list" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_directive": { + "type": "PATTERN", + "value": "#[ \\t]*[a-zA-Z]\\w*" + }, + "preproc_arg": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": ".|\\\\\\r?\\n" + } + } + } + }, + "_preproc_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "char_literal" + }, + { + "type": "SYMBOL", + "name": "preproc_defined" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_unary_expression" + }, + "named": true, + "value": "unary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_binary_expression" + }, + "named": true, + "value": "binary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_parenthesized_expression" + }, + "named": true, + "value": "parenthesized_expression" + } + ] + }, + "preproc_parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_preproc_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_defined": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "defined" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "defined" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + }, + "preproc_unary_expression": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + "preproc_call_expression": { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_argument_list" + }, + "named": true, + "value": "argument_list" + } + } + ] + } + }, + "preproc_argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_preproc_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_preproc_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "preproc_binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + } + ] + } + } + ] + }, + "function_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + } + ] + } + } + ] + }, + "declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "init_declarator" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "init_declarator" + } + ] + } + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "type_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "typedef" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_declaration_modifiers": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "storage_class_specifier" + }, + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "attribute_declaration" + }, + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + } + ] + }, + { + "type": "SYMBOL", + "name": "virtual_function_specifier" + } + ] + }, + "_declaration_specifiers": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + } + ] + }, + "linkage_specification": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "declaration_list" + } + ] + } + } + ] + }, + "attribute_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__attribute__" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "prefix", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "::" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "attribute_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]]" + } + ] + }, + "ms_declspec_modifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__declspec" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "ms_based_modifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__based" + }, + { + "type": "SYMBOL", + "name": "argument_list" + } + ] + }, + "ms_call_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__cdecl" + }, + { + "type": "STRING", + "value": "__clrcall" + }, + { + "type": "STRING", + "value": "__stdcall" + }, + { + "type": "STRING", + "value": "__fastcall" + }, + { + "type": "STRING", + "value": "__thiscall" + }, + { + "type": "STRING", + "value": "__vectorcall" + } + ] + }, + "ms_restrict_modifier": { + "type": "STRING", + "value": "__restrict" + }, + "ms_unsigned_ptr_modifier": { + "type": "STRING", + "value": "__uptr" + }, + "ms_signed_ptr_modifier": { + "type": "STRING", + "value": "__sptr" + }, + "ms_unaligned_ptr_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_unaligned" + }, + { + "type": "STRING", + "value": "__unaligned" + } + ] + }, + "ms_pointer_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_unaligned_ptr_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_restrict_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_unsigned_ptr_modifier" + }, + { + "type": "SYMBOL", + "name": "ms_signed_ptr_modifier" + } + ] + }, + "declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_declarator" + }, + { + "type": "SYMBOL", + "name": "pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "function_declarator" + }, + { + "type": "SYMBOL", + "name": "array_declarator" + }, + { + "type": "SYMBOL", + "name": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "SYMBOL", + "name": "reference_declarator" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "template_function" + }, + { + "type": "SYMBOL", + "name": "operator_name" + }, + { + "type": "SYMBOL", + "name": "destructor_name" + }, + { + "type": "SYMBOL", + "name": "structured_binding_declarator" + } + ] + }, + "_field_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "attributed_field_declarator" + }, + "named": true, + "value": "attributed_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pointer_field_declarator" + }, + "named": true, + "value": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "function_field_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "array_field_declarator" + }, + "named": true, + "value": "array_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_field_declarator" + }, + "named": true, + "value": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "reference_field_declarator" + }, + "named": true, + "value": "reference_declarator" + }, + { + "type": "SYMBOL", + "name": "template_method" + }, + { + "type": "SYMBOL", + "name": "operator_name" + } + ] + }, + "_type_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "attributed_type_declarator" + }, + "named": true, + "value": "attributed_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pointer_type_declarator" + }, + "named": true, + "value": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "function_type_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "array_type_declarator" + }, + "named": true, + "value": "array_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_type_declarator" + }, + "named": true, + "value": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + }, + "_abstract_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "abstract_pointer_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_function_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_array_declarator" + }, + { + "type": "SYMBOL", + "name": "abstract_parenthesized_declarator" + } + ] + }, + { + "type": "SYMBOL", + "name": "abstract_reference_declarator" + } + ] + }, + "parenthesized_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "parenthesized_field_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_field_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "parenthesized_type_declarator": { + "type": "PREC_DYNAMIC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_type_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "abstract_parenthesized_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "attributed_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "attributed_field_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_field_declarator" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "attributed_type_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_declarator" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + } + ] + } + }, + "pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + } + ] + } + } + }, + "pointer_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + } + ] + } + } + }, + "pointer_type_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_based_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + } + ] + } + } + }, + "abstract_pointer_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + } + }, + "function_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "ref_qualifier" + }, + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "SYMBOL", + "name": "noexcept" + }, + { + "type": "SYMBOL", + "name": "throw_specifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trailing_return_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "function_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "ref_qualifier" + }, + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "SYMBOL", + "name": "noexcept" + }, + { + "type": "SYMBOL", + "name": "throw_specifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trailing_return_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "function_type_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + } + ] + } + }, + "abstract_function_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_qualifier" + }, + { + "type": "SYMBOL", + "name": "ref_qualifier" + }, + { + "type": "SYMBOL", + "name": "noexcept" + }, + { + "type": "SYMBOL", + "name": "throw_specifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trailing_return_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "array_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "array_field_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "array_type_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "abstract_array_declarator": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "size", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "init_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + ] + }, + "compound_statement": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_top_level_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "storage_class_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "register" + }, + { + "type": "STRING", + "value": "inline" + }, + { + "type": "STRING", + "value": "thread_local" + } + ] + }, + "type_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "restrict" + }, + { + "type": "STRING", + "value": "_Atomic" + } + ] + }, + { + "type": "STRING", + "value": "mutable" + }, + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "STRING", + "value": "constinit" + }, + { + "type": "STRING", + "value": "consteval" + } + ] + }, + "_type_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "SYMBOL", + "name": "union_specifier" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + }, + { + "type": "SYMBOL", + "name": "class_specifier" + }, + { + "type": "SYMBOL", + "name": "sized_type_specifier" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "SYMBOL", + "name": "dependent_type" + }, + { + "type": "SYMBOL", + "name": "placeholder_type_specifier" + }, + { + "type": "SYMBOL", + "name": "decltype" + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + } + ] + }, + "sized_type_specifier": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "SYMBOL", + "name": "primitive_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "primitive_type": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "char" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "float" + }, + { + "type": "STRING", + "value": "double" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "size_t" + }, + { + "type": "STRING", + "value": "ssize_t" + }, + { + "type": "STRING", + "value": "intptr_t" + }, + { + "type": "STRING", + "value": "uintptr_t" + }, + { + "type": "STRING", + "value": "charptr_t" + }, + { + "type": "STRING", + "value": "int8_t" + }, + { + "type": "STRING", + "value": "int16_t" + }, + { + "type": "STRING", + "value": "int32_t" + }, + { + "type": "STRING", + "value": "int64_t" + }, + { + "type": "STRING", + "value": "uint8_t" + }, + { + "type": "STRING", + "value": "uint16_t" + }, + { + "type": "STRING", + "value": "uint32_t" + }, + { + "type": "STRING", + "value": "uint64_t" + }, + { + "type": "STRING", + "value": "char8_t" + }, + { + "type": "STRING", + "value": "char16_t" + }, + { + "type": "STRING", + "value": "char32_t" + }, + { + "type": "STRING", + "value": "char64_t" + } + ] + } + }, + "enum_specifier": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "enum" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "struct" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_enum_base_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enumerator_list" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enumerator_list" + } + } + ] + } + ] + } + }, + "enumerator_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "enumerator" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "struct_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "struct" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_declaration" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_class_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + } + ] + } + ] + } + }, + "union_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "union" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_declaration" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_class_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + } + ] + } + ] + } + }, + "field_declaration_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_field_declaration_list_item" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_field_declaration_list_item": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration" + }, + { + "type": "SYMBOL", + "name": "preproc_def" + }, + { + "type": "SYMBOL", + "name": "preproc_function_def" + }, + { + "type": "SYMBOL", + "name": "preproc_call" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_field_declaration_list" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_field_declaration_list" + }, + "named": true, + "value": "preproc_ifdef" + } + ] + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "inline_method_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "SYMBOL", + "name": "friend_declaration" + }, + { + "type": "SYMBOL", + "name": "access_specifier" + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "using_declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "static_assert_declaration" + } + ] + }, + "field_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "bitfield_clause" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "bitfield_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "enumerator": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "variadic_parameter": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + } + ] + }, + "parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "STRING", + "value": "..." + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "STRING", + "value": "..." + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "SYMBOL", + "name": "_abstract_declarator" + } + ] + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "attributed_statement": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "attribute_declaration" + } + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, + "_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "_non_case_statement" + } + ] + }, + "_non_case_statement": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "goto_statement" + } + ] + }, + { + "type": "SYMBOL", + "name": "co_return_statement" + }, + { + "type": "SYMBOL", + "name": "co_yield_statement" + }, + { + "type": "SYMBOL", + "name": "for_range_loop" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + } + ] + }, + "labeled_statement": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "_statement_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, + "expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "if_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "condition_clause" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "switch_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "switch" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "condition_clause" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "case_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "STRING", + "value": "default" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_case_statement" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + } + ] + } + } + ] + } + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "condition_clause" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "do_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "update", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + } + ] + }, + "break_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "continue_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "goto_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "goto" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "_statement_identifier" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "SYMBOL", + "name": "cast_expression" + }, + { + "type": "SYMBOL", + "name": "pointer_expression" + }, + { + "type": "SYMBOL", + "name": "sizeof_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "compound_literal_expression" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + }, + { + "type": "SYMBOL", + "name": "char_literal" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "co_await_expression" + }, + { + "type": "SYMBOL", + "name": "requires_expression" + }, + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "SYMBOL", + "name": "template_function" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "new_expression" + }, + { + "type": "SYMBOL", + "name": "delete_expression" + }, + { + "type": "SYMBOL", + "name": "lambda_expression" + }, + { + "type": "SYMBOL", + "name": "parameter_pack_expansion" + }, + { + "type": "SYMBOL", + "name": "nullptr" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + }, + { + "type": "SYMBOL", + "name": "user_defined_literal" + }, + { + "type": "SYMBOL", + "name": "fold_expression" + } + ] + }, + "comma_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + } + } + ] + }, + "conditional_expression": { + "type": "PREC_RIGHT", + "value": -2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "_assignment_left_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "field_expression" + }, + { + "type": "SYMBOL", + "name": "pointer_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + } + ] + }, + "assignment_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_assignment_left_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_assignment_left_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "xor_eq" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] + }, + "pointer_expression": { + "type": "PREC_LEFT", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "&" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "unary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "compl" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "or" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "and" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "xor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitand" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "not_eq" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] + }, + "update_expression": { + "type": "PREC_RIGHT", + "value": 13, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "++" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "++" + } + ] + } + } + ] + } + ] + } + }, + "cast_expression": { + "type": "PREC", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "type_descriptor": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "sizeof_expression": { + "type": "PREC_RIGHT", + "value": 8, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sizeof" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sizeof" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, + "subscript_expression": { + "type": "PREC", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "index", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "call_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "primitive_type" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + ] + }, + "argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "field_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "->" + } + ] + } + } + ] + } + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "->" + } + ] + } + ] + } + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "destructor_name" + }, + { + "type": "SYMBOL", + "name": "template_method" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "dependent_field_identifier" + }, + "named": true, + "value": "dependent_name" + } + ] + } + } + ] + } + ] + }, + "compound_literal_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "initializer_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_pair" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_pair" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "initializer_pair": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "designator", + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript_designator" + }, + { + "type": "SYMBOL", + "name": "field_designator" + } + ] + } + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + } + ] + }, + "subscript_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "field_designator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + }, + "number_literal": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0b" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eEpP]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[-\\+]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-fA-F]" + } + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "u" + }, + { + "type": "STRING", + "value": "l" + }, + { + "type": "STRING", + "value": "U" + }, + { + "type": "STRING", + "value": "L" + }, + { + "type": "STRING", + "value": "f" + }, + { + "type": "STRING", + "value": "F" + } + ] + } + } + ] + } + }, + "char_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "L'" + }, + { + "type": "STRING", + "value": "u'" + }, + { + "type": "STRING", + "value": "U'" + }, + { + "type": "STRING", + "value": "u8'" + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\n']" + } + } + ] + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "concatenated_string": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "raw_string_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "raw_string_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + } + } + ] + }, + "string_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "L\"" + }, + { + "type": "STRING", + "value": "u\"" + }, + { + "type": "STRING", + "value": "U\"" + }, + { + "type": "STRING", + "value": "u8\"" + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\\\\\"\\n]+" + } + } + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "escape_sequence": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^xuU]" + }, + { + "type": "PATTERN", + "value": "\\d{2,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2,}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "U[0-9a-fA-F]{8}" + } + ] + } + ] + } + } + }, + "system_lib_string": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^>\\n]" + }, + { + "type": "STRING", + "value": "\\>" + } + ] + } + }, + { + "type": "STRING", + "value": ">" + } + ] + } + }, + "true": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "TRUE" + }, + { + "type": "STRING", + "value": "true" + } + ] + } + }, + "false": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "FALSE" + }, + { + "type": "STRING", + "value": "false" + } + ] + } + }, + "null": { + "type": "STRING", + "value": "NULL" + }, + "identifier": { + "type": "PATTERN", + "value": "[a-zA-Z_]\\w*" + }, + "_type_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "type_identifier" + }, + "_field_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "field_identifier" + }, + "_statement_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + "_empty_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_type_specifier" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "macro_type_specifier": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": "(\\\\(.|\\r?\\n)|[^\\\\\\n])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] + } + }, + "placeholder_type_specifier": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_specifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "auto" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decltype_auto" + }, + "named": true, + "value": "decltype" + } + ] + } + ] + }, + "auto": { + "type": "STRING", + "value": "auto" + }, + "decltype_auto": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "decltype" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "auto" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "decltype": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "decltype" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "class_specifier": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_declaration" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_class_name" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "virtual_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_class_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" + } + } + ] + } + ] + } + ] + } + }, + "_class_name": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" + } + ] + } + }, + "virtual_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "final" + }, + { + "type": "STRING", + "value": "override" + } + ] + }, + "virtual_function_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "virtual" + } + ] + }, + "explicit_function_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "explicit" + }, + { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "explicit" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + } + ] + }, + "base_class_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_class_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_class_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + } + ] + }, + "_enum_base_clause": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "base", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "sized_type_specifier" + } + ] + } + } + ] + } + }, + "dependent_type": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "SYMBOL", + "name": "_type_specifier" + } + ] + } + } + }, + "template_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "template_parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "requires_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_empty_declaration" + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "concept_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" + }, + "named": true, + "value": "declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" + }, + "named": true, + "value": "function_definition" + } + ] + } + ] + }, + "template_instantiation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "template_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "template_template_parameter_declaration" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "template_template_parameter_declaration" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": ">" + } + } + }, + "named": false, + "value": ">" + } + ] + }, + "type_parameter_declaration": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "STRING", + "value": "class" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "variadic_type_parameter_declaration": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "STRING", + "value": "class" + } + ] + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "optional_type_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "STRING", + "value": "class" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + } + ] + }, + "template_template_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "template_parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_type_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter_declaration" + } + ] + } + ] + }, + "optional_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + "variadic_parameter_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "variadic_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "variadic_reference_declarator" + }, + "named": true, + "value": "reference_declarator" + } + ] + } + } + ] + }, + "variadic_declarator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "variadic_reference_declarator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "&" + } + ] + }, + { + "type": "SYMBOL", + "name": "variadic_declarator" + } + ] + }, + "operator_cast": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "operator" + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_abstract_declarator" + } + } + ] + } + }, + "field_initializer_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "field_initializer" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "field_initializer" + } + ] + } + } + ] + } + ] + }, + "field_initializer": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_identifier" + }, + { + "type": "SYMBOL", + "name": "template_method" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_field_identifier" + }, + "named": true, + "value": "qualified_identifier" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "initializer_list" + }, + { + "type": "SYMBOL", + "name": "argument_list" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "inline_method_definition": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_field_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "default_method_clause" + }, + { + "type": "SYMBOL", + "name": "delete_method_clause" + } + ] + } + ] + }, + "_constructor_specifiers": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_modifiers" + }, + { + "type": "SYMBOL", + "name": "explicit_function_specifier" + } + ] + }, + "operator_cast_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_constructor_specifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "operator_cast" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_operator_cast_identifier" + }, + "named": true, + "value": "qualified_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "compound_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + } + ] + } + } + ] + }, + "operator_cast_declaration": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_constructor_specifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "operator_cast" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_operator_cast_identifier" + }, + "named": true, + "value": "qualified_identifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + "constructor_try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_initializer_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "catch_clause" + } + } + ] + }, + "constructor_or_destructor_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_constructor_specifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "function_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_initializer_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_try_statement" + }, + "named": true, + "value": "try_statement" + }, + { + "type": "SYMBOL", + "name": "default_method_clause" + }, + { + "type": "SYMBOL", + "name": "delete_method_clause" + } + ] + } + ] + }, + "constructor_or_destructor_declaration": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_constructor_specifiers" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "function_declarator" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "default_method_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "delete_method_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "delete" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "friend_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "friend" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "struct" + }, + { + "type": "STRING", + "value": "union" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_class_name" + }, + { + "type": "STRING", + "value": ";" + } + ] + } + ] + } + ] + }, + "access_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + } + ] + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + "reference_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "SYMBOL", + "name": "_declarator" + } + ] + } + } + }, + "reference_field_declarator": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "SYMBOL", + "name": "_field_declarator" + } + ] + } + } + }, + "abstract_reference_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_abstract_declarator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "structured_binding_declarator": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "ref_qualifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + "trailing_return_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + }, + "noexcept": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "noexcept" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "throw_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "template_type": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_argument_list" + } + } + ] + }, + "template_method": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_field_identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_argument_list" + } + } + ] + }, + "template_function": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_argument_list" + } + } + ] + }, + "template_argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 2, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "type_parameter_pack_expansion" + }, + "named": true, + "value": "parameter_pack_expansion" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 2, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "type_parameter_pack_expansion" + }, + "named": true, + "value": "parameter_pack_expansion" + } + }, + { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": ">" + } + } + }, + "named": false, + "value": ">" + } + ] + }, + "namespace_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "namespace_definition_name" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "declaration_list" + } + } + ] + }, + "namespace_alias_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "namespace_definition_name": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "namespace_definition_name" + } + ] + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "inline" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "using_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "STRING", + "value": "enum" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "alias_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "static_assert_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static_assert" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "concept_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "concept" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "for_range_loop": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "init_statement" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] + }, + "init_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + } + ] + }, + "condition_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "init_statement" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "condition_declaration" + }, + "named": true, + "value": "declaration" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "condition_declaration": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] + } + ] + }, + "co_return_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "co_return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "co_yield_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "co_yield" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "throw_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "catch_clause" + } + } + ] + }, + "catch_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "catch" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "raw_string_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "R\"" + }, + { + "type": "STRING", + "value": "LR\"" + }, + { + "type": "STRING", + "value": "uR\"" + }, + { + "type": "STRING", + "value": "UR\"" + }, + { + "type": "STRING", + "value": "u8R\"" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "delimiter", + "content": { + "type": "SYMBOL", + "name": "raw_string_delimiter" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "SYMBOL", + "name": "raw_string_delimiter" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "co_await_expression": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "co_await" + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + "new_expression": { + "type": "PREC_RIGHT", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "::" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "placement", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "new_declarator" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "new_declarator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "length", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "new_declarator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "delete_expression": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "::" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "delete" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "type_requirement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "typename" + }, + { + "type": "SYMBOL", + "name": "_class_name" + } + ] + }, + "compound_requirement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "noexcept" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trailing_return_type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "_requirement": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "expression_statement" + }, + "named": true, + "value": "simple_requirement" + }, + { + "type": "SYMBOL", + "name": "type_requirement" + }, + { + "type": "SYMBOL", + "name": "compound_requirement" + } + ] + }, + "requirement_seq": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_requirement" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "constraint_conjunction": { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } + } + ] + } + }, + "constraint_disjunction": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } + } + ] + } + }, + "_requirement_clause_constraint": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "_class_name" + }, + { + "type": "SYMBOL", + "name": "fold_expression" + }, + { + "type": "SYMBOL", + "name": "lambda_expression" + }, + { + "type": "SYMBOL", + "name": "requires_expression" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SYMBOL", + "name": "constraint_conjunction" + }, + { + "type": "SYMBOL", + "name": "constraint_disjunction" + } + ] + }, + "requires_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "requires" + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "_requirement_clause_constraint" + } + } + ] + }, + "requires_parameter_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "optional_parameter_declaration" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter_declaration" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "requires_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "requires" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "requires_parameter_list" + }, + "named": true, + "value": "parameter_list" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "requirements", + "content": { + "type": "SYMBOL", + "name": "requirement_seq" + } + } + ] + }, + "lambda_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "captures", + "content": { + "type": "SYMBOL", + "name": "lambda_capture_specifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "template_parameters", + "content": { + "type": "SYMBOL", + "name": "template_parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "SYMBOL", + "name": "requires_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "abstract_function_declarator" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "compound_statement" + } + } + ] + }, + "lambda_capture_specifier": { + "type": "PREC", + "value": 18, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_default_capture" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_default_capture" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "lambda_default_capture": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "&" + } + ] + }, + "_fold_operator": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": ".*" + }, + { + "type": "STRING", + "value": "->*" + } + ] + }, + "_binary_fold_operator": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "/" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "%" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "^" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "&" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<<" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ">>" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "+=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "-=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "*=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "/=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "%=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "^=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "&=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "|=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ">>=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<<=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "==" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "!=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "<=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ">=" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "&&" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "||" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "," + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ".*" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ".*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "->*" + } + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "->*" + } + ] + } + ] + }, + "_unary_left_fold": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "STRING", + "value": "..." + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "SYMBOL", + "name": "_fold_operator" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + "_unary_right_fold": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "SYMBOL", + "name": "_fold_operator" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "STRING", + "value": "..." + } + } + ] + }, + "_binary_fold": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "SYMBOL", + "name": "_binary_fold_operator" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + "fold_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_unary_right_fold" + }, + { + "type": "SYMBOL", + "name": "_unary_left_fold" + }, + { + "type": "SYMBOL", + "name": "_binary_fold" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "parameter_pack_expansion": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "..." + } + ] + } + }, + "type_parameter_pack_expansion": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": "..." + } + ] + }, + "destructor_name": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "~" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + "dependent_identifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "SYMBOL", + "name": "template_function" + } + ] + }, + "dependent_field_identifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "SYMBOL", + "name": "template_method" + } + ] + }, + "dependent_type_identifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "template" + }, + { + "type": "SYMBOL", + "name": "template_type" + } + ] + }, + "_scope_resolution": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "scope", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_namespace_identifier" + }, + { + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "dependent_type_identifier" + }, + "named": true, + "value": "dependent_name" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "::" + } + ] + } + }, + "qualified_field_identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_scope_resolution" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "dependent_field_identifier" + }, + "named": true, + "value": "dependent_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_field_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "template_method" + }, + { + "type": "SYMBOL", + "name": "_field_identifier" + } + ] + } + } + ] + }, + "qualified_identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_scope_resolution" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "dependent_identifier" + }, + "named": true, + "value": "dependent_name" + }, + { + "type": "SYMBOL", + "name": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "template_function" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "operator_name" + }, + { + "type": "SYMBOL", + "name": "destructor_name" + } + ] + } + } + ] + }, + "qualified_type_identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_scope_resolution" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "dependent_type_identifier" + }, + "named": true, + "value": "dependent_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + } + ] + }, + "qualified_operator_cast_identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_scope_resolution" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_operator_cast_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "operator_cast" + } + ] + } + } + ] + }, + "operator_name": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "operator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "co_await" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "<=>" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "->*" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "STRING", + "value": "()" + }, + { + "type": "STRING", + "value": "[]" + }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "STRING", + "value": "bitand" + }, + { + "type": "STRING", + "value": "bitor" + }, + { + "type": "STRING", + "value": "compl" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "xor_eq" + }, + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "not_eq" + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "delete" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "[]" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"\"" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + } + ] + } + }, + "this": { + "type": "STRING", + "value": "this" + }, + "nullptr": { + "type": "STRING", + "value": "nullptr" + }, + "literal_suffix": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[a-zA-Z_]\\w*" + } + }, + "user_defined_literal": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "SYMBOL", + "name": "char_literal" + }, + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "raw_string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + } + ] + }, + { + "type": "SYMBOL", + "name": "literal_suffix" + } + ] + }, + "_namespace_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "namespace_identifier" + } + }, + "extras": [ + { + "type": "PATTERN", + "value": "\\s|\\\\\\r?\\n" + }, + { + "type": "SYMBOL", + "name": "comment" + } + ], + "conflicts": [ + [ + "_type_specifier", + "_declarator" + ], + [ + "_type_specifier", + "_declarator", + "macro_type_specifier" + ], + [ + "_type_specifier", + "_expression" + ], + [ + "_type_specifier", + "_expression", + "macro_type_specifier" + ], + [ + "_type_specifier", + "macro_type_specifier" + ], + [ + "sized_type_specifier" + ], + [ + "attributed_statement" + ], + [ + "_declaration_modifiers", + "attributed_statement" + ], + [ + "template_function", + "template_type" + ], + [ + "template_function", + "template_type", + "_expression" + ], + [ + "template_function", + "template_type", + "qualified_identifier" + ], + [ + "template_method", + "field_expression" + ], + [ + "template_type", + "qualified_type_identifier" + ], + [ + "qualified_type_identifier", + "qualified_identifier" + ], + [ + "dependent_type_identifier", + "dependent_identifier" + ], + [ + "comma_expression", + "initializer_list" + ], + [ + "_expression", + "_declarator" + ], + [ + "_expression", + "structured_binding_declarator" + ], + [ + "_expression", + "_declarator", + "_type_specifier" + ], + [ + "parameter_list", + "argument_list" + ], + [ + "_type_specifier", + "call_expression" + ], + [ + "_declaration_specifiers", + "_constructor_specifiers" + ], + [ + "_declaration_modifiers", + "operator_cast_declaration", + "operator_cast_definition", + "constructor_or_destructor_definition" + ], + [ + "_declaration_modifiers", + "attributed_statement", + "operator_cast_declaration", + "operator_cast_definition", + "constructor_or_destructor_definition" + ], + [ + "attributed_statement", + "operator_cast_declaration", + "operator_cast_definition", + "constructor_or_destructor_definition" + ], + [ + "_binary_fold_operator", + "_fold_operator" + ], + [ + "expression_statement", + "for_statement" + ], + [ + "init_statement", + "for_statement" + ] + ], + "precedences": [], + "externals": [ + { + "type": "SYMBOL", + "name": "raw_string_delimiter" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + } + ], + "inline": [ + "_statement", + "_top_level_item", + "_type_identifier", + "_field_identifier", + "_statement_identifier", + "_non_case_statement", + "_assignment_left_expression", + "_namespace_identifier" + ], + "supertypes": [ + "_expression", + "_statement", + "_type_specifier", + "_declarator", + "_field_declarator", + "_type_declarator", + "_abstract_declarator" + ] +} + diff --git a/src/node-types.json b/src/node-types.json new file mode 100644 index 0000000..154f399 --- /dev/null +++ b/src/node-types.json @@ -0,0 +1,6866 @@ +[ + { + "type": "_abstract_declarator", + "named": true, + "subtypes": [ + { + "type": "abstract_array_declarator", + "named": true + }, + { + "type": "abstract_function_declarator", + "named": true + }, + { + "type": "abstract_parenthesized_declarator", + "named": true + }, + { + "type": "abstract_pointer_declarator", + "named": true + }, + { + "type": "abstract_reference_declarator", + "named": true + } + ] + }, + { + "type": "_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "destructor_name", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "operator_name", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "reference_declarator", + "named": true + }, + { + "type": "structured_binding_declarator", + "named": true + }, + { + "type": "template_function", + "named": true + } + ] + }, + { + "type": "_expression", + "named": true, + "subtypes": [ + { + "type": "assignment_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "co_await_expression", + "named": true + }, + { + "type": "compound_literal_expression", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "delete_expression", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "fold_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "lambda_expression", + "named": true + }, + { + "type": "new_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "nullptr", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "parameter_pack_expansion", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "pointer_expression", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "requires_expression", + "named": true + }, + { + "type": "sizeof_expression", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "template_function", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "update_expression", + "named": true + }, + { + "type": "user_defined_literal", + "named": true + } + ] + }, + { + "type": "_field_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "operator_name", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + }, + { + "type": "reference_declarator", + "named": true + }, + { + "type": "template_method", + "named": true + } + ] + }, + { + "type": "_statement", + "named": true, + "subtypes": [ + { + "type": "attributed_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "co_return_statement", + "named": true + }, + { + "type": "co_yield_statement", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_range_loop", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + }, + { + "type": "_type_declarator", + "named": true, + "subtypes": [ + { + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "function_declarator", + "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + { + "type": "_type_specifier", + "named": true, + "subtypes": [ + { + "type": "class_specifier", + "named": true + }, + { + "type": "decltype", + "named": true + }, + { + "type": "dependent_type", + "named": true + }, + { + "type": "enum_specifier", + "named": true + }, + { + "type": "placeholder_type_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "sized_type_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "union_specifier", + "named": true + } + ] + }, + { + "type": "abstract_array_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "size": { + "multiple": false, + "required": false, + "types": [ + { + "type": "*", + "named": false + }, + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_function_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "noexcept", + "named": true + }, + { + "type": "ref_qualifier", + "named": true + }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "throw_specifier", + "named": true + }, + { + "type": "trailing_return_type", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_parenthesized_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + } + }, + { + "type": "abstract_pointer_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "abstract_reference_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + } + }, + { + "type": "access_specifier", + "named": true, + "fields": {} + }, + { + "type": "alias_declaration", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, + { + "type": "argument_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "preproc_defined", + "named": true + } + ] + } + }, + { + "type": "array_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + }, + "size": { + "multiple": false, + "required": false, + "types": [ + { + "type": "*", + "named": false + }, + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "field_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "pointer_expression", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "subscript_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "and_eq", + "named": false + }, + { + "type": "or_eq", + "named": false + }, + { + "type": "xor_eq", + "named": false + }, + { + "type": "|=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "attribute", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "prefix": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + } + }, + { + "type": "attribute_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, + { + "type": "attribute_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + } + }, + { + "type": "attributed_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + } + ] + } + }, + { + "type": "attributed_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "attribute_declaration", + "named": true + } + ] + } + }, + { + "type": "base_class_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "binary_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<=>", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, + { + "type": "not_eq", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + } + ] + } + } + }, + { + "type": "bitfield_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "break_statement", + "named": true, + "fields": {} + }, + { + "type": "call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "primitive_type", + "named": true + } + ] + } + } + }, + { + "type": "case_statement", + "named": true, + "fields": { + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributed_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "co_return_statement", + "named": true + }, + { + "type": "co_yield_statement", + "named": true + }, + { + "type": "compound_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_range_loop", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "cast_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "catch_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + } + } + }, + { + "type": "char_literal", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + } + ] + } + }, + { + "type": "class_specifier", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "field_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "base_class_clause", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "virtual_specifier", + "named": true + } + ] + } + }, + { + "type": "co_await_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "co_await", + "named": false + } + ] + } + } + }, + { + "type": "co_return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "co_yield_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "comma_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + } + ] + } + } + }, + { + "type": "compound_literal_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_descriptor", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "initializer_list", + "named": true + } + ] + } + } + }, + { + "type": "compound_requirement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "trailing_return_type", + "named": true + } + ] + } + }, + { + "type": "compound_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "concatenated_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "concept_definition", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "condition_clause", + "named": true, + "fields": { + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "init_statement", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + }, + { + "type": "declaration", + "named": true + } + ] + } + } + }, + { + "type": "conditional_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "constraint_conjunction", + "named": true, + "fields": { + "left": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "_expression", + "named": true + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "&&", + "named": false + } + ] + }, + "right": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "_expression", + "named": true + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "constraint_disjunction", + "named": true, + "fields": { + "left": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "_expression", + "named": true + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "_expression", + "named": true + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "continue_statement", + "named": true, + "fields": {} + }, + { + "type": "declaration", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "init_declarator", + "named": true + }, + { + "type": "operator_cast", + "named": true + } + ] + }, + "default_value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "explicit_function_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "decltype", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "auto", + "named": true + } + ] + } + }, + { + "type": "default_method_clause", + "named": true, + "fields": {} + }, + { + "type": "delete_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "delete_method_clause", + "named": true, + "fields": {} + }, + { + "type": "dependent_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_function", + "named": true + }, + { + "type": "template_method", + "named": true + }, + { + "type": "template_type", + "named": true + } + ] + } + }, + { + "type": "dependent_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + { + "type": "destructor_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "do_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "enum_specifier", + "named": true, + "fields": { + "base": { + "multiple": false, + "required": false, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "sized_type_specifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "enumerator_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "enumerator", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "enumerator_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "enumerator", + "named": true + } + ] + } + }, + { + "type": "explicit_function_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + } + ] + } + }, + { + "type": "field_declaration", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_field_declarator", + "named": true + } + ] + }, + "default_value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "bitfield_clause", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "field_declaration_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "friend_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "field_designator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + } + }, + { + "type": "field_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "field": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dependent_name", + "named": true + }, + { + "type": "destructor_name", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "template_method", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + } + ] + } + } + }, + { + "type": "field_initializer", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_method", + "named": true + } + ] + } + }, + { + "type": "field_initializer_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "field_initializer", + "named": true + } + ] + } + }, + { + "type": "fold_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "...", + "named": false + }, + { + "type": "_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->*", + "named": false + }, + { + "type": ".*", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "...", + "named": false + }, + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "for_range_loop", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "init_statement", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + }, + { + "type": "declaration", + "named": true + } + ] + }, + "update": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + } + ] + } + } + }, + { + "type": "friend_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "function_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "noexcept", + "named": true + }, + { + "type": "ref_qualifier", + "named": true + }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "throw_specifier", + "named": true + }, + { + "type": "trailing_return_type", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_specifier", + "named": true + } + ] + } + }, + { + "type": "function_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "compound_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "operator_cast", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "default_method_clause", + "named": true + }, + { + "type": "delete_method_clause", + "named": true + }, + { + "type": "explicit_function_specifier", + "named": true + }, + { + "type": "field_initializer_list", + "named": true + }, + { + "type": "ms_call_modifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "goto_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "condition_clause", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + } + }, + { + "type": "init_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "argument_list", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + } + }, + { + "type": "init_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "alias_declaration", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "type_definition", + "named": true + } + ] + } + }, + { + "type": "initializer_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "initializer_pair", + "named": true + } + ] + } + }, + { + "type": "initializer_pair", + "named": true, + "fields": { + "designator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "field_designator", + "named": true + }, + { + "type": "subscript_designator", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + } + }, + { + "type": "labeled_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, + { + "type": "lambda_capture_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "lambda_default_capture", + "named": true + } + ] + } + }, + { + "type": "lambda_default_capture", + "named": true, + "fields": {} + }, + { + "type": "lambda_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "captures": { + "multiple": false, + "required": true, + "types": [ + { + "type": "lambda_capture_specifier", + "named": true + } + ] + }, + "constraint": { + "multiple": false, + "required": false, + "types": [ + { + "type": "requires_clause", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "abstract_function_declarator", + "named": true + } + ] + }, + "template_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "template_parameter_list", + "named": true + } + ] + } + } + }, + { + "type": "linkage_specification", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "declaration_list", + "named": true + }, + { + "type": "function_definition", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "ms_based_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + } + }, + { + "type": "ms_call_modifier", + "named": true, + "fields": {} + }, + { + "type": "ms_declspec_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "ms_pointer_modifier", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "ms_restrict_modifier", + "named": true + }, + { + "type": "ms_signed_ptr_modifier", + "named": true + }, + { + "type": "ms_unaligned_ptr_modifier", + "named": true + }, + { + "type": "ms_unsigned_ptr_modifier", + "named": true + } + ] + } + }, + { + "type": "ms_unaligned_ptr_modifier", + "named": true, + "fields": {} + }, + { + "type": "namespace_alias_definition", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + } + ] + } + }, + { + "type": "namespace_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "namespace_definition_name", + "named": true + } + ] + } + } + }, + { + "type": "namespace_definition_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "namespace_definition_name", + "named": true + } + ] + } + }, + { + "type": "new_declarator", + "named": true, + "fields": { + "length": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "new_declarator", + "named": true + } + ] + } + }, + { + "type": "new_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "argument_list", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + }, + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "new_declarator", + "named": true + } + ] + }, + "placement": { + "multiple": false, + "required": false, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + } + }, + { + "type": "noexcept", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "operator_cast", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "operator_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "optional_parameter_declaration", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "default_value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "optional_type_parameter_declaration", + "named": true, + "fields": { + "default_type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "parameter_declaration", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + }, + { + "type": "_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "parameter_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "optional_parameter_declaration", + "named": true + }, + { + "type": "parameter_declaration", + "named": true + }, + { + "type": "variadic_parameter_declaration", + "named": true + } + ] + } + }, + { + "type": "parameter_pack_expansion", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, + { + "type": "parenthesized_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + } + ] + } + }, + { + "type": "placeholder_type_specifier", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "auto", + "named": true + }, + { + "type": "decltype", + "named": true + } + ] + } + }, + { + "type": "pointer_declarator", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "_type_declarator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ms_based_modifier", + "named": true + }, + { + "type": "ms_pointer_modifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "pointer_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "&", + "named": false + }, + { + "type": "*", + "named": false + } + ] + } + } + }, + { + "type": "preproc_call", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_arg", + "named": true + } + ] + }, + "directive": { + "multiple": false, + "required": true, + "types": [ + { + "type": "preproc_directive", + "named": true + } + ] + } + } + }, + { + "type": "preproc_def", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_arg", + "named": true + } + ] + } + } + }, + { + "type": "preproc_defined", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "preproc_elif", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "binary_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "unary_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "access_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "friend_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "preproc_else", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "access_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "friend_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "preproc_function_def", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "preproc_params", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_arg", + "named": true + } + ] + } + } + }, + { + "type": "preproc_if", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "binary_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + }, + { + "type": "unary_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "access_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "friend_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "preproc_ifdef", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "access_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "field_declaration", + "named": true + }, + { + "type": "friend_declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "preproc_include", + "named": true, + "fields": { + "path": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + } + } + }, + { + "type": "preproc_params", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "qualified_identifier", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dependent_name", + "named": true + }, + { + "type": "destructor_name", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "operator_cast", + "named": true + }, + { + "type": "operator_name", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_function", + "named": true + }, + { + "type": "template_method", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "scope": { + "multiple": false, + "required": false, + "types": [ + { + "type": "dependent_name", + "named": true + }, + { + "type": "namespace_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + } + ] + } + } + }, + { + "type": "raw_string_literal", + "named": true, + "fields": { + "delimiter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "raw_string_delimiter", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_delimiter", + "named": true + } + ] + } + }, + { + "type": "ref_qualifier", + "named": true, + "fields": {} + }, + { + "type": "reference_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + }, + { + "type": "_field_declarator", + "named": true + }, + { + "type": "variadic_declarator", + "named": true + } + ] + } + }, + { + "type": "requirement_seq", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_requirement", + "named": true + }, + { + "type": "simple_requirement", + "named": true + }, + { + "type": "type_requirement", + "named": true + } + ] + } + }, + { + "type": "requires_clause", + "named": true, + "fields": { + "constraint": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "_expression", + "named": true + }, + { + "type": "constraint_conjunction", + "named": true + }, + { + "type": "constraint_disjunction", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "requires_expression", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "parameter_list", + "named": true + } + ] + }, + "requirements": { + "multiple": false, + "required": true, + "types": [ + { + "type": "requirement_seq", + "named": true + } + ] + } + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + }, + { + "type": "simple_requirement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "comma_expression", + "named": true + } + ] + } + }, + { + "type": "sized_type_specifier", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "primitive_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "sizeof_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, + { + "type": "static_assert_declaration", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "message": { + "multiple": false, + "required": false, + "types": [ + { + "type": "concatenated_string", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + } + }, + { + "type": "storage_class_specifier", + "named": true, + "fields": {} + }, + { + "type": "string_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + } + ] + } + }, + { + "type": "struct_specifier", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "field_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "base_class_clause", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "virtual_specifier", + "named": true + } + ] + } + }, + { + "type": "structured_binding_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "subscript_designator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "subscript_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "index": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "initializer_list", + "named": true + } + ] + } + } + }, + { + "type": "switch_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "condition_clause", + "named": true + } + ] + } + } + }, + { + "type": "template_argument_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "template_declaration", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "requires_clause", + "named": true + }, + { + "type": "template_declaration", + "named": true + } + ] + } + }, + { + "type": "template_function", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_argument_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "template_instantiation", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "template_method", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_argument_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "field_identifier", + "named": true + } + ] + } + } + }, + { + "type": "template_parameter_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "optional_parameter_declaration", + "named": true + }, + { + "type": "optional_type_parameter_declaration", + "named": true + }, + { + "type": "parameter_declaration", + "named": true + }, + { + "type": "template_template_parameter_declaration", + "named": true + }, + { + "type": "type_parameter_declaration", + "named": true + }, + { + "type": "variadic_parameter_declaration", + "named": true + }, + { + "type": "variadic_type_parameter_declaration", + "named": true + } + ] + } + }, + { + "type": "template_template_parameter_declaration", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_parameter_list", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "optional_type_parameter_declaration", + "named": true + }, + { + "type": "type_parameter_declaration", + "named": true + }, + { + "type": "variadic_type_parameter_declaration", + "named": true + } + ] + } + }, + { + "type": "template_type", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "template_argument_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "throw_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "throw_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, + { + "type": "trailing_return_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "translation_unit", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, + { + "type": "try_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "compound_statement", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "catch_clause", + "named": true + }, + { + "type": "field_initializer_list", + "named": true + } + ] + } + }, + { + "type": "type_definition", + "named": true, + "fields": { + "declarator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_type_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "type_descriptor", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_qualifier", + "named": true + } + ] + } + }, + { + "type": "type_parameter_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "type_qualifier", + "named": true, + "fields": {} + }, + { + "type": "type_requirement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "unary_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "preproc_defined", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "compl", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "~", + "named": false + } + ] + } + } + }, + { + "type": "union_specifier", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "field_declaration_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "base_class_clause", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "virtual_specifier", + "named": true + } + ] + } + }, + { + "type": "update_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "++", + "named": false + }, + { + "type": "--", + "named": false + } + ] + } + } + }, + { + "type": "user_defined_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "char_literal", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "literal_suffix", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "using_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + } + ] + } + }, + { + "type": "variadic_declarator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "variadic_parameter_declaration", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "reference_declarator", + "named": true + }, + { + "type": "variadic_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_declaration", + "named": true + }, + { + "type": "attribute_specifier", + "named": true + }, + { + "type": "ms_declspec_modifier", + "named": true + }, + { + "type": "storage_class_specifier", + "named": true + }, + { + "type": "type_qualifier", + "named": true + }, + { + "type": "virtual_function_specifier", + "named": true + } + ] + } + }, + { + "type": "variadic_type_parameter_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "virtual_function_specifier", + "named": true, + "fields": {} + }, + { + "type": "virtual_specifier", + "named": true, + "fields": {} + }, + { + "type": "while_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "condition_clause", + "named": true + } + ] + } + } + }, + { + "type": "\n", + "named": false + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "\"\"", + "named": false + }, + { + "type": "#define", + "named": false + }, + { + "type": "#elif", + "named": false + }, + { + "type": "#else", + "named": false + }, + { + "type": "#endif", + "named": false + }, + { + "type": "#if", + "named": false + }, + { + "type": "#ifdef", + "named": false + }, + { + "type": "#ifndef", + "named": false + }, + { + "type": "#include", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": "()", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": "->*", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": ".*", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<=>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "L\"", + "named": false + }, + { + "type": "L'", + "named": false + }, + { + "type": "LR\"", + "named": false + }, + { + "type": "R\"", + "named": false + }, + { + "type": "U\"", + "named": false + }, + { + "type": "U'", + "named": false + }, + { + "type": "UR\"", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "[[", + "named": false + }, + { + "type": "[]", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "]]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "_Atomic", + "named": false + }, + { + "type": "__attribute__", + "named": false + }, + { + "type": "__based", + "named": false + }, + { + "type": "__cdecl", + "named": false + }, + { + "type": "__clrcall", + "named": false + }, + { + "type": "__declspec", + "named": false + }, + { + "type": "__fastcall", + "named": false + }, + { + "type": "__stdcall", + "named": false + }, + { + "type": "__thiscall", + "named": false + }, + { + "type": "__unaligned", + "named": false + }, + { + "type": "__vectorcall", + "named": false + }, + { + "type": "_unaligned", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "and_eq", + "named": false + }, + { + "type": "auto", + "named": true + }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "catch", + "named": false + }, + { + "type": "class", + "named": false + }, + { + "type": "co_await", + "named": false + }, + { + "type": "co_return", + "named": false + }, + { + "type": "co_yield", + "named": false + }, + { + "type": "comment", + "named": true + }, + { + "type": "compl", + "named": false + }, + { + "type": "concept", + "named": false + }, + { + "type": "const", + "named": false + }, + { + "type": "consteval", + "named": false + }, + { + "type": "constexpr", + "named": false + }, + { + "type": "constinit", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "decltype", + "named": false + }, + { + "type": "default", + "named": false + }, + { + "type": "defined", + "named": false + }, + { + "type": "delete", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "explicit", + "named": false + }, + { + "type": "extern", + "named": false + }, + { + "type": "false", + "named": true + }, + { + "type": "field_identifier", + "named": true + }, + { + "type": "final", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "friend", + "named": false + }, + { + "type": "goto", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "inline", + "named": false + }, + { + "type": "literal_suffix", + "named": true + }, + { + "type": "long", + "named": false + }, + { + "type": "ms_restrict_modifier", + "named": true + }, + { + "type": "ms_signed_ptr_modifier", + "named": true + }, + { + "type": "ms_unsigned_ptr_modifier", + "named": true + }, + { + "type": "mutable", + "named": false + }, + { + "type": "namespace", + "named": false + }, + { + "type": "namespace_identifier", + "named": true + }, + { + "type": "new", + "named": false + }, + { + "type": "noexcept", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "not_eq", + "named": false + }, + { + "type": "null", + "named": true + }, + { + "type": "nullptr", + "named": true + }, + { + "type": "number_literal", + "named": true + }, + { + "type": "operator", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "or_eq", + "named": false + }, + { + "type": "override", + "named": false + }, + { + "type": "preproc_arg", + "named": true + }, + { + "type": "preproc_directive", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "private", + "named": false + }, + { + "type": "protected", + "named": false + }, + { + "type": "public", + "named": false + }, + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_delimiter", + "named": true + }, + { + "type": "register", + "named": false + }, + { + "type": "requires", + "named": false + }, + { + "type": "restrict", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "short", + "named": false + }, + { + "type": "signed", + "named": false + }, + { + "type": "sizeof", + "named": false + }, + { + "type": "statement_identifier", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "static_assert", + "named": false + }, + { + "type": "struct", + "named": false + }, + { + "type": "switch", + "named": false + }, + { + "type": "system_lib_string", + "named": true + }, + { + "type": "template", + "named": false + }, + { + "type": "this", + "named": true + }, + { + "type": "thread_local", + "named": false + }, + { + "type": "throw", + "named": false + }, + { + "type": "true", + "named": true + }, + { + "type": "try", + "named": false + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "typedef", + "named": false + }, + { + "type": "typename", + "named": false + }, + { + "type": "u\"", + "named": false + }, + { + "type": "u'", + "named": false + }, + { + "type": "u8\"", + "named": false + }, + { + "type": "u8'", + "named": false + }, + { + "type": "u8R\"", + "named": false + }, + { + "type": "uR\"", + "named": false + }, + { + "type": "union", + "named": false + }, + { + "type": "unsigned", + "named": false + }, + { + "type": "using", + "named": false + }, + { + "type": "virtual", + "named": false + }, + { + "type": "volatile", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "xor_eq", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c new file mode 100644 index 0000000..8d2a538 --- /dev/null +++ b/src/parser.c @@ -0,0 +1,416649 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 7231 +#define LARGE_STATE_COUNT 1812 +#define SYMBOL_COUNT 438 +#define ALIAS_COUNT 5 +#define TOKEN_COUNT 188 +#define EXTERNAL_TOKEN_COUNT 2 +#define FIELD_COUNT 38 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 169 + +enum { + sym_identifier = 1, + aux_sym_preproc_include_token1 = 2, + anon_sym_LF = 3, + aux_sym_preproc_def_token1 = 4, + anon_sym_LPAREN = 5, + anon_sym_DOT_DOT_DOT = 6, + anon_sym_COMMA = 7, + anon_sym_RPAREN = 8, + aux_sym_preproc_if_token1 = 9, + aux_sym_preproc_if_token2 = 10, + aux_sym_preproc_ifdef_token1 = 11, + aux_sym_preproc_ifdef_token2 = 12, + aux_sym_preproc_else_token1 = 13, + aux_sym_preproc_elif_token1 = 14, + sym_preproc_directive = 15, + sym_preproc_arg = 16, + anon_sym_LPAREN2 = 17, + anon_sym_defined = 18, + anon_sym_BANG = 19, + anon_sym_TILDE = 20, + anon_sym_DASH = 21, + anon_sym_PLUS = 22, + anon_sym_STAR = 23, + anon_sym_SLASH = 24, + anon_sym_PERCENT = 25, + anon_sym_PIPE_PIPE = 26, + anon_sym_AMP_AMP = 27, + anon_sym_PIPE = 28, + anon_sym_CARET = 29, + anon_sym_AMP = 30, + anon_sym_EQ_EQ = 31, + anon_sym_BANG_EQ = 32, + anon_sym_GT = 33, + anon_sym_GT_EQ = 34, + anon_sym_LT_EQ = 35, + anon_sym_LT = 36, + anon_sym_LT_LT = 37, + anon_sym_GT_GT = 38, + anon_sym_SEMI = 39, + anon_sym_typedef = 40, + anon_sym_extern = 41, + anon_sym___attribute__ = 42, + anon_sym_COLON_COLON = 43, + anon_sym_LBRACK_LBRACK = 44, + anon_sym_RBRACK_RBRACK = 45, + anon_sym___declspec = 46, + anon_sym___based = 47, + anon_sym___cdecl = 48, + anon_sym___clrcall = 49, + anon_sym___stdcall = 50, + anon_sym___fastcall = 51, + anon_sym___thiscall = 52, + anon_sym___vectorcall = 53, + sym_ms_restrict_modifier = 54, + sym_ms_unsigned_ptr_modifier = 55, + sym_ms_signed_ptr_modifier = 56, + anon_sym__unaligned = 57, + anon_sym___unaligned = 58, + anon_sym_LBRACE = 59, + anon_sym_RBRACE = 60, + anon_sym_LBRACK = 61, + anon_sym_RBRACK = 62, + anon_sym_EQ = 63, + anon_sym_static = 64, + anon_sym_register = 65, + anon_sym_inline = 66, + anon_sym_thread_local = 67, + anon_sym_const = 68, + anon_sym_volatile = 69, + anon_sym_restrict = 70, + anon_sym__Atomic = 71, + anon_sym_mutable = 72, + anon_sym_constexpr = 73, + anon_sym_constinit = 74, + anon_sym_consteval = 75, + anon_sym_signed = 76, + anon_sym_unsigned = 77, + anon_sym_long = 78, + anon_sym_short = 79, + sym_primitive_type = 80, + anon_sym_enum = 81, + anon_sym_class = 82, + anon_sym_struct = 83, + anon_sym_union = 84, + anon_sym_COLON = 85, + anon_sym_if = 86, + anon_sym_else = 87, + anon_sym_switch = 88, + anon_sym_case = 89, + anon_sym_default = 90, + anon_sym_while = 91, + anon_sym_do = 92, + anon_sym_for = 93, + anon_sym_return = 94, + anon_sym_break = 95, + anon_sym_continue = 96, + anon_sym_goto = 97, + anon_sym_QMARK = 98, + anon_sym_STAR_EQ = 99, + anon_sym_SLASH_EQ = 100, + anon_sym_PERCENT_EQ = 101, + anon_sym_PLUS_EQ = 102, + anon_sym_DASH_EQ = 103, + anon_sym_LT_LT_EQ = 104, + anon_sym_GT_GT_EQ = 105, + anon_sym_AMP_EQ = 106, + anon_sym_CARET_EQ = 107, + anon_sym_PIPE_EQ = 108, + anon_sym_and_eq = 109, + anon_sym_or_eq = 110, + anon_sym_xor_eq = 111, + anon_sym_not = 112, + anon_sym_compl = 113, + anon_sym_LT_EQ_GT = 114, + anon_sym_or = 115, + anon_sym_and = 116, + anon_sym_bitor = 117, + anon_sym_xor = 118, + anon_sym_bitand = 119, + anon_sym_not_eq = 120, + anon_sym_DASH_DASH = 121, + anon_sym_PLUS_PLUS = 122, + anon_sym_sizeof = 123, + anon_sym_DOT = 124, + anon_sym_DASH_GT = 125, + sym_number_literal = 126, + anon_sym_L_SQUOTE = 127, + anon_sym_u_SQUOTE = 128, + anon_sym_U_SQUOTE = 129, + anon_sym_u8_SQUOTE = 130, + anon_sym_SQUOTE = 131, + aux_sym_char_literal_token1 = 132, + anon_sym_L_DQUOTE = 133, + anon_sym_u_DQUOTE = 134, + anon_sym_U_DQUOTE = 135, + anon_sym_u8_DQUOTE = 136, + anon_sym_DQUOTE = 137, + aux_sym_string_literal_token1 = 138, + sym_escape_sequence = 139, + sym_system_lib_string = 140, + sym_true = 141, + sym_false = 142, + sym_null = 143, + sym_comment = 144, + sym_auto = 145, + anon_sym_decltype = 146, + anon_sym_final = 147, + anon_sym_override = 148, + anon_sym_virtual = 149, + anon_sym_explicit = 150, + anon_sym_public = 151, + anon_sym_private = 152, + anon_sym_protected = 153, + anon_sym_typename = 154, + anon_sym_template = 155, + anon_sym_GT2 = 156, + anon_sym_operator = 157, + anon_sym_try = 158, + anon_sym_delete = 159, + anon_sym_friend = 160, + anon_sym_noexcept = 161, + anon_sym_throw = 162, + anon_sym_namespace = 163, + anon_sym_using = 164, + anon_sym_static_assert = 165, + anon_sym_concept = 166, + anon_sym_co_return = 167, + anon_sym_co_yield = 168, + anon_sym_catch = 169, + anon_sym_R_DQUOTE = 170, + anon_sym_LR_DQUOTE = 171, + anon_sym_uR_DQUOTE = 172, + anon_sym_UR_DQUOTE = 173, + anon_sym_u8R_DQUOTE = 174, + anon_sym_co_await = 175, + anon_sym_new = 176, + anon_sym_requires = 177, + anon_sym_DOT_STAR = 178, + anon_sym_DASH_GT_STAR = 179, + anon_sym_LPAREN_RPAREN = 180, + anon_sym_LBRACK_RBRACK = 181, + anon_sym_DQUOTE_DQUOTE = 182, + sym_this = 183, + sym_nullptr = 184, + sym_literal_suffix = 185, + sym_raw_string_delimiter = 186, + sym_raw_string_content = 187, + sym_translation_unit = 188, + sym_preproc_include = 189, + sym_preproc_def = 190, + sym_preproc_function_def = 191, + sym_preproc_params = 192, + sym_preproc_call = 193, + sym_preproc_if = 194, + sym_preproc_ifdef = 195, + sym_preproc_else = 196, + sym_preproc_elif = 197, + sym_preproc_if_in_field_declaration_list = 198, + sym_preproc_ifdef_in_field_declaration_list = 199, + sym_preproc_else_in_field_declaration_list = 200, + sym_preproc_elif_in_field_declaration_list = 201, + sym__preproc_expression = 202, + sym_preproc_parenthesized_expression = 203, + sym_preproc_defined = 204, + sym_preproc_unary_expression = 205, + sym_preproc_call_expression = 206, + sym_preproc_argument_list = 207, + sym_preproc_binary_expression = 208, + sym_function_definition = 209, + sym_declaration = 210, + sym_type_definition = 211, + sym__declaration_modifiers = 212, + sym__declaration_specifiers = 213, + sym_linkage_specification = 214, + sym_attribute_specifier = 215, + sym_attribute = 216, + sym_attribute_declaration = 217, + sym_ms_declspec_modifier = 218, + sym_ms_based_modifier = 219, + sym_ms_call_modifier = 220, + sym_ms_unaligned_ptr_modifier = 221, + sym_ms_pointer_modifier = 222, + sym_declaration_list = 223, + sym__declarator = 224, + sym__field_declarator = 225, + sym__type_declarator = 226, + sym__abstract_declarator = 227, + sym_parenthesized_declarator = 228, + sym_parenthesized_field_declarator = 229, + sym_parenthesized_type_declarator = 230, + sym_abstract_parenthesized_declarator = 231, + sym_attributed_declarator = 232, + sym_attributed_field_declarator = 233, + sym_attributed_type_declarator = 234, + sym_pointer_declarator = 235, + sym_pointer_field_declarator = 236, + sym_pointer_type_declarator = 237, + sym_abstract_pointer_declarator = 238, + sym_function_declarator = 239, + sym_function_field_declarator = 240, + sym_function_type_declarator = 241, + sym_abstract_function_declarator = 242, + sym_array_declarator = 243, + sym_array_field_declarator = 244, + sym_array_type_declarator = 245, + sym_abstract_array_declarator = 246, + sym_init_declarator = 247, + sym_compound_statement = 248, + sym_storage_class_specifier = 249, + sym_type_qualifier = 250, + sym__type_specifier = 251, + sym_sized_type_specifier = 252, + sym_enum_specifier = 253, + sym_enumerator_list = 254, + sym_struct_specifier = 255, + sym_union_specifier = 256, + sym_field_declaration_list = 257, + sym__field_declaration_list_item = 258, + sym_field_declaration = 259, + sym_bitfield_clause = 260, + sym_enumerator = 261, + sym_parameter_list = 262, + sym_parameter_declaration = 263, + sym_attributed_statement = 264, + sym_labeled_statement = 265, + sym_expression_statement = 266, + sym_if_statement = 267, + sym_switch_statement = 268, + sym_case_statement = 269, + sym_while_statement = 270, + sym_do_statement = 271, + sym_for_statement = 272, + sym_return_statement = 273, + sym_break_statement = 274, + sym_continue_statement = 275, + sym_goto_statement = 276, + sym__expression = 277, + sym_comma_expression = 278, + sym_conditional_expression = 279, + sym_assignment_expression = 280, + sym_pointer_expression = 281, + sym_unary_expression = 282, + sym_binary_expression = 283, + sym_update_expression = 284, + sym_cast_expression = 285, + sym_type_descriptor = 286, + sym_sizeof_expression = 287, + sym_subscript_expression = 288, + sym_call_expression = 289, + sym_argument_list = 290, + sym_field_expression = 291, + sym_compound_literal_expression = 292, + sym_parenthesized_expression = 293, + sym_initializer_list = 294, + sym_initializer_pair = 295, + sym_subscript_designator = 296, + sym_field_designator = 297, + sym_char_literal = 298, + sym_concatenated_string = 299, + sym_string_literal = 300, + sym__empty_declaration = 301, + sym_placeholder_type_specifier = 302, + sym_decltype_auto = 303, + sym_decltype = 304, + sym_class_specifier = 305, + sym__class_name = 306, + sym_virtual_specifier = 307, + sym_virtual_function_specifier = 308, + sym_explicit_function_specifier = 309, + sym_base_class_clause = 310, + sym__enum_base_clause = 311, + sym_dependent_type = 312, + sym_template_declaration = 313, + sym_template_instantiation = 314, + sym_template_parameter_list = 315, + sym_type_parameter_declaration = 316, + sym_variadic_type_parameter_declaration = 317, + sym_optional_type_parameter_declaration = 318, + sym_template_template_parameter_declaration = 319, + sym_optional_parameter_declaration = 320, + sym_variadic_parameter_declaration = 321, + sym_variadic_declarator = 322, + sym_variadic_reference_declarator = 323, + sym_operator_cast = 324, + sym_field_initializer_list = 325, + sym_field_initializer = 326, + sym_inline_method_definition = 327, + sym__constructor_specifiers = 328, + sym_operator_cast_definition = 329, + sym_operator_cast_declaration = 330, + sym_constructor_try_statement = 331, + sym_constructor_or_destructor_definition = 332, + sym_constructor_or_destructor_declaration = 333, + sym_default_method_clause = 334, + sym_delete_method_clause = 335, + sym_friend_declaration = 336, + sym_access_specifier = 337, + sym_reference_declarator = 338, + sym_reference_field_declarator = 339, + sym_abstract_reference_declarator = 340, + sym_structured_binding_declarator = 341, + sym_ref_qualifier = 342, + sym_trailing_return_type = 343, + sym_noexcept = 344, + sym_throw_specifier = 345, + sym_template_type = 346, + sym_template_method = 347, + sym_template_function = 348, + sym_template_argument_list = 349, + sym_namespace_definition = 350, + sym_namespace_alias_definition = 351, + sym_namespace_definition_name = 352, + sym_using_declaration = 353, + sym_alias_declaration = 354, + sym_static_assert_declaration = 355, + sym_concept_definition = 356, + sym_for_range_loop = 357, + sym_init_statement = 358, + sym_condition_clause = 359, + sym_condition_declaration = 360, + sym_co_return_statement = 361, + sym_co_yield_statement = 362, + sym_throw_statement = 363, + sym_try_statement = 364, + sym_catch_clause = 365, + sym_raw_string_literal = 366, + sym_co_await_expression = 367, + sym_new_expression = 368, + sym_new_declarator = 369, + sym_delete_expression = 370, + sym_type_requirement = 371, + sym_compound_requirement = 372, + sym__requirement = 373, + sym_requirement_seq = 374, + sym_constraint_conjunction = 375, + sym_constraint_disjunction = 376, + sym__requirement_clause_constraint = 377, + sym_requires_clause = 378, + sym_requires_parameter_list = 379, + sym_requires_expression = 380, + sym_lambda_expression = 381, + sym_lambda_capture_specifier = 382, + sym_lambda_default_capture = 383, + sym__fold_operator = 384, + sym__binary_fold_operator = 385, + sym__unary_left_fold = 386, + sym__unary_right_fold = 387, + sym__binary_fold = 388, + sym_fold_expression = 389, + sym_parameter_pack_expansion = 390, + sym_type_parameter_pack_expansion = 391, + sym_destructor_name = 392, + sym_dependent_identifier = 393, + sym_dependent_field_identifier = 394, + sym_dependent_type_identifier = 395, + sym__scope_resolution = 396, + sym_qualified_field_identifier = 397, + sym_qualified_identifier = 398, + sym_qualified_type_identifier = 399, + sym_qualified_operator_cast_identifier = 400, + sym_operator_name = 401, + sym_user_defined_literal = 402, + aux_sym_translation_unit_repeat1 = 403, + aux_sym_preproc_params_repeat1 = 404, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 405, + aux_sym_preproc_argument_list_repeat1 = 406, + aux_sym_declaration_repeat1 = 407, + aux_sym_type_definition_repeat1 = 408, + aux_sym_type_definition_repeat2 = 409, + aux_sym__declaration_specifiers_repeat1 = 410, + aux_sym_attribute_declaration_repeat1 = 411, + aux_sym_attributed_declarator_repeat1 = 412, + aux_sym_pointer_declarator_repeat1 = 413, + aux_sym_function_declarator_repeat1 = 414, + aux_sym_function_declarator_repeat2 = 415, + aux_sym_abstract_function_declarator_repeat1 = 416, + aux_sym_sized_type_specifier_repeat1 = 417, + aux_sym_enumerator_list_repeat1 = 418, + aux_sym_field_declaration_repeat1 = 419, + aux_sym_parameter_list_repeat1 = 420, + aux_sym_case_statement_repeat1 = 421, + aux_sym_argument_list_repeat1 = 422, + aux_sym_initializer_list_repeat1 = 423, + aux_sym_initializer_pair_repeat1 = 424, + aux_sym_concatenated_string_repeat1 = 425, + aux_sym_string_literal_repeat1 = 426, + aux_sym_base_class_clause_repeat1 = 427, + aux_sym_template_parameter_list_repeat1 = 428, + aux_sym_field_initializer_list_repeat1 = 429, + aux_sym_operator_cast_definition_repeat1 = 430, + aux_sym_constructor_try_statement_repeat1 = 431, + aux_sym_structured_binding_declarator_repeat1 = 432, + aux_sym_throw_specifier_repeat1 = 433, + aux_sym_template_argument_list_repeat1 = 434, + aux_sym_requirement_seq_repeat1 = 435, + aux_sym_requires_parameter_list_repeat1 = 436, + aux_sym_lambda_capture_specifier_repeat1 = 437, + alias_sym_field_identifier = 438, + alias_sym_namespace_identifier = 439, + alias_sym_simple_requirement = 440, + alias_sym_statement_identifier = 441, + alias_sym_type_identifier = 442, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [aux_sym_preproc_include_token1] = "#include", + [anon_sym_LF] = "\n", + [aux_sym_preproc_def_token1] = "#define", + [anon_sym_LPAREN] = "(", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", + [aux_sym_preproc_if_token1] = "#if", + [aux_sym_preproc_if_token2] = "#endif", + [aux_sym_preproc_ifdef_token1] = "#ifdef", + [aux_sym_preproc_ifdef_token2] = "#ifndef", + [aux_sym_preproc_else_token1] = "#else", + [aux_sym_preproc_elif_token1] = "#elif", + [sym_preproc_directive] = "preproc_directive", + [sym_preproc_arg] = "preproc_arg", + [anon_sym_LPAREN2] = "(", + [anon_sym_defined] = "defined", + [anon_sym_BANG] = "!", + [anon_sym_TILDE] = "~", + [anon_sym_DASH] = "-", + [anon_sym_PLUS] = "+", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE] = "|", + [anon_sym_CARET] = "^", + [anon_sym_AMP] = "&", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", + [anon_sym_LT_EQ] = "<=", + [anon_sym_LT] = "<", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_SEMI] = ";", + [anon_sym_typedef] = "typedef", + [anon_sym_extern] = "extern", + [anon_sym___attribute__] = "__attribute__", + [anon_sym_COLON_COLON] = "::", + [anon_sym_LBRACK_LBRACK] = "[[", + [anon_sym_RBRACK_RBRACK] = "]]", + [anon_sym___declspec] = "__declspec", + [anon_sym___based] = "__based", + [anon_sym___cdecl] = "__cdecl", + [anon_sym___clrcall] = "__clrcall", + [anon_sym___stdcall] = "__stdcall", + [anon_sym___fastcall] = "__fastcall", + [anon_sym___thiscall] = "__thiscall", + [anon_sym___vectorcall] = "__vectorcall", + [sym_ms_restrict_modifier] = "ms_restrict_modifier", + [sym_ms_unsigned_ptr_modifier] = "ms_unsigned_ptr_modifier", + [sym_ms_signed_ptr_modifier] = "ms_signed_ptr_modifier", + [anon_sym__unaligned] = "_unaligned", + [anon_sym___unaligned] = "__unaligned", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_EQ] = "=", + [anon_sym_static] = "static", + [anon_sym_register] = "register", + [anon_sym_inline] = "inline", + [anon_sym_thread_local] = "thread_local", + [anon_sym_const] = "const", + [anon_sym_volatile] = "volatile", + [anon_sym_restrict] = "restrict", + [anon_sym__Atomic] = "_Atomic", + [anon_sym_mutable] = "mutable", + [anon_sym_constexpr] = "constexpr", + [anon_sym_constinit] = "constinit", + [anon_sym_consteval] = "consteval", + [anon_sym_signed] = "signed", + [anon_sym_unsigned] = "unsigned", + [anon_sym_long] = "long", + [anon_sym_short] = "short", + [sym_primitive_type] = "primitive_type", + [anon_sym_enum] = "enum", + [anon_sym_class] = "class", + [anon_sym_struct] = "struct", + [anon_sym_union] = "union", + [anon_sym_COLON] = ":", + [anon_sym_if] = "if", + [anon_sym_else] = "else", + [anon_sym_switch] = "switch", + [anon_sym_case] = "case", + [anon_sym_default] = "default", + [anon_sym_while] = "while", + [anon_sym_do] = "do", + [anon_sym_for] = "for", + [anon_sym_return] = "return", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_goto] = "goto", + [anon_sym_QMARK] = "\?", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_and_eq] = "and_eq", + [anon_sym_or_eq] = "or_eq", + [anon_sym_xor_eq] = "xor_eq", + [anon_sym_not] = "not", + [anon_sym_compl] = "compl", + [anon_sym_LT_EQ_GT] = "<=>", + [anon_sym_or] = "or", + [anon_sym_and] = "and", + [anon_sym_bitor] = "bitor", + [anon_sym_xor] = "xor", + [anon_sym_bitand] = "bitand", + [anon_sym_not_eq] = "not_eq", + [anon_sym_DASH_DASH] = "--", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_sizeof] = "sizeof", + [anon_sym_DOT] = ".", + [anon_sym_DASH_GT] = "->", + [sym_number_literal] = "number_literal", + [anon_sym_L_SQUOTE] = "L'", + [anon_sym_u_SQUOTE] = "u'", + [anon_sym_U_SQUOTE] = "U'", + [anon_sym_u8_SQUOTE] = "u8'", + [anon_sym_SQUOTE] = "'", + [aux_sym_char_literal_token1] = "char_literal_token1", + [anon_sym_L_DQUOTE] = "L\"", + [anon_sym_u_DQUOTE] = "u\"", + [anon_sym_U_DQUOTE] = "U\"", + [anon_sym_u8_DQUOTE] = "u8\"", + [anon_sym_DQUOTE] = "\"", + [aux_sym_string_literal_token1] = "string_literal_token1", + [sym_escape_sequence] = "escape_sequence", + [sym_system_lib_string] = "system_lib_string", + [sym_true] = "true", + [sym_false] = "false", + [sym_null] = "null", + [sym_comment] = "comment", + [sym_auto] = "auto", + [anon_sym_decltype] = "decltype", + [anon_sym_final] = "final", + [anon_sym_override] = "override", + [anon_sym_virtual] = "virtual", + [anon_sym_explicit] = "explicit", + [anon_sym_public] = "public", + [anon_sym_private] = "private", + [anon_sym_protected] = "protected", + [anon_sym_typename] = "typename", + [anon_sym_template] = "template", + [anon_sym_GT2] = ">", + [anon_sym_operator] = "operator", + [anon_sym_try] = "try", + [anon_sym_delete] = "delete", + [anon_sym_friend] = "friend", + [anon_sym_noexcept] = "noexcept", + [anon_sym_throw] = "throw", + [anon_sym_namespace] = "namespace", + [anon_sym_using] = "using", + [anon_sym_static_assert] = "static_assert", + [anon_sym_concept] = "concept", + [anon_sym_co_return] = "co_return", + [anon_sym_co_yield] = "co_yield", + [anon_sym_catch] = "catch", + [anon_sym_R_DQUOTE] = "R\"", + [anon_sym_LR_DQUOTE] = "LR\"", + [anon_sym_uR_DQUOTE] = "uR\"", + [anon_sym_UR_DQUOTE] = "UR\"", + [anon_sym_u8R_DQUOTE] = "u8R\"", + [anon_sym_co_await] = "co_await", + [anon_sym_new] = "new", + [anon_sym_requires] = "requires", + [anon_sym_DOT_STAR] = ".*", + [anon_sym_DASH_GT_STAR] = "->*", + [anon_sym_LPAREN_RPAREN] = "()", + [anon_sym_LBRACK_RBRACK] = "[]", + [anon_sym_DQUOTE_DQUOTE] = "\"\"", + [sym_this] = "this", + [sym_nullptr] = "nullptr", + [sym_literal_suffix] = "literal_suffix", + [sym_raw_string_delimiter] = "raw_string_delimiter", + [sym_raw_string_content] = "raw_string_content", + [sym_translation_unit] = "translation_unit", + [sym_preproc_include] = "preproc_include", + [sym_preproc_def] = "preproc_def", + [sym_preproc_function_def] = "preproc_function_def", + [sym_preproc_params] = "preproc_params", + [sym_preproc_call] = "preproc_call", + [sym_preproc_if] = "preproc_if", + [sym_preproc_ifdef] = "preproc_ifdef", + [sym_preproc_else] = "preproc_else", + [sym_preproc_elif] = "preproc_elif", + [sym_preproc_if_in_field_declaration_list] = "preproc_if", + [sym_preproc_ifdef_in_field_declaration_list] = "preproc_ifdef", + [sym_preproc_else_in_field_declaration_list] = "preproc_else", + [sym_preproc_elif_in_field_declaration_list] = "preproc_elif", + [sym__preproc_expression] = "_preproc_expression", + [sym_preproc_parenthesized_expression] = "parenthesized_expression", + [sym_preproc_defined] = "preproc_defined", + [sym_preproc_unary_expression] = "unary_expression", + [sym_preproc_call_expression] = "call_expression", + [sym_preproc_argument_list] = "argument_list", + [sym_preproc_binary_expression] = "binary_expression", + [sym_function_definition] = "function_definition", + [sym_declaration] = "declaration", + [sym_type_definition] = "type_definition", + [sym__declaration_modifiers] = "_declaration_modifiers", + [sym__declaration_specifiers] = "_declaration_specifiers", + [sym_linkage_specification] = "linkage_specification", + [sym_attribute_specifier] = "attribute_specifier", + [sym_attribute] = "attribute", + [sym_attribute_declaration] = "attribute_declaration", + [sym_ms_declspec_modifier] = "ms_declspec_modifier", + [sym_ms_based_modifier] = "ms_based_modifier", + [sym_ms_call_modifier] = "ms_call_modifier", + [sym_ms_unaligned_ptr_modifier] = "ms_unaligned_ptr_modifier", + [sym_ms_pointer_modifier] = "ms_pointer_modifier", + [sym_declaration_list] = "declaration_list", + [sym__declarator] = "_declarator", + [sym__field_declarator] = "_field_declarator", + [sym__type_declarator] = "_type_declarator", + [sym__abstract_declarator] = "_abstract_declarator", + [sym_parenthesized_declarator] = "parenthesized_declarator", + [sym_parenthesized_field_declarator] = "parenthesized_declarator", + [sym_parenthesized_type_declarator] = "parenthesized_declarator", + [sym_abstract_parenthesized_declarator] = "abstract_parenthesized_declarator", + [sym_attributed_declarator] = "attributed_declarator", + [sym_attributed_field_declarator] = "attributed_declarator", + [sym_attributed_type_declarator] = "attributed_declarator", + [sym_pointer_declarator] = "pointer_declarator", + [sym_pointer_field_declarator] = "pointer_declarator", + [sym_pointer_type_declarator] = "pointer_declarator", + [sym_abstract_pointer_declarator] = "abstract_pointer_declarator", + [sym_function_declarator] = "function_declarator", + [sym_function_field_declarator] = "function_declarator", + [sym_function_type_declarator] = "function_declarator", + [sym_abstract_function_declarator] = "abstract_function_declarator", + [sym_array_declarator] = "array_declarator", + [sym_array_field_declarator] = "array_declarator", + [sym_array_type_declarator] = "array_declarator", + [sym_abstract_array_declarator] = "abstract_array_declarator", + [sym_init_declarator] = "init_declarator", + [sym_compound_statement] = "compound_statement", + [sym_storage_class_specifier] = "storage_class_specifier", + [sym_type_qualifier] = "type_qualifier", + [sym__type_specifier] = "_type_specifier", + [sym_sized_type_specifier] = "sized_type_specifier", + [sym_enum_specifier] = "enum_specifier", + [sym_enumerator_list] = "enumerator_list", + [sym_struct_specifier] = "struct_specifier", + [sym_union_specifier] = "union_specifier", + [sym_field_declaration_list] = "field_declaration_list", + [sym__field_declaration_list_item] = "_field_declaration_list_item", + [sym_field_declaration] = "field_declaration", + [sym_bitfield_clause] = "bitfield_clause", + [sym_enumerator] = "enumerator", + [sym_parameter_list] = "parameter_list", + [sym_parameter_declaration] = "parameter_declaration", + [sym_attributed_statement] = "attributed_statement", + [sym_labeled_statement] = "labeled_statement", + [sym_expression_statement] = "expression_statement", + [sym_if_statement] = "if_statement", + [sym_switch_statement] = "switch_statement", + [sym_case_statement] = "case_statement", + [sym_while_statement] = "while_statement", + [sym_do_statement] = "do_statement", + [sym_for_statement] = "for_statement", + [sym_return_statement] = "return_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_goto_statement] = "goto_statement", + [sym__expression] = "_expression", + [sym_comma_expression] = "comma_expression", + [sym_conditional_expression] = "conditional_expression", + [sym_assignment_expression] = "assignment_expression", + [sym_pointer_expression] = "pointer_expression", + [sym_unary_expression] = "unary_expression", + [sym_binary_expression] = "binary_expression", + [sym_update_expression] = "update_expression", + [sym_cast_expression] = "cast_expression", + [sym_type_descriptor] = "type_descriptor", + [sym_sizeof_expression] = "sizeof_expression", + [sym_subscript_expression] = "subscript_expression", + [sym_call_expression] = "call_expression", + [sym_argument_list] = "argument_list", + [sym_field_expression] = "field_expression", + [sym_compound_literal_expression] = "compound_literal_expression", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_initializer_list] = "initializer_list", + [sym_initializer_pair] = "initializer_pair", + [sym_subscript_designator] = "subscript_designator", + [sym_field_designator] = "field_designator", + [sym_char_literal] = "char_literal", + [sym_concatenated_string] = "concatenated_string", + [sym_string_literal] = "string_literal", + [sym__empty_declaration] = "_empty_declaration", + [sym_placeholder_type_specifier] = "placeholder_type_specifier", + [sym_decltype_auto] = "decltype", + [sym_decltype] = "decltype", + [sym_class_specifier] = "class_specifier", + [sym__class_name] = "_class_name", + [sym_virtual_specifier] = "virtual_specifier", + [sym_virtual_function_specifier] = "virtual_function_specifier", + [sym_explicit_function_specifier] = "explicit_function_specifier", + [sym_base_class_clause] = "base_class_clause", + [sym__enum_base_clause] = "_enum_base_clause", + [sym_dependent_type] = "dependent_type", + [sym_template_declaration] = "template_declaration", + [sym_template_instantiation] = "template_instantiation", + [sym_template_parameter_list] = "template_parameter_list", + [sym_type_parameter_declaration] = "type_parameter_declaration", + [sym_variadic_type_parameter_declaration] = "variadic_type_parameter_declaration", + [sym_optional_type_parameter_declaration] = "optional_type_parameter_declaration", + [sym_template_template_parameter_declaration] = "template_template_parameter_declaration", + [sym_optional_parameter_declaration] = "optional_parameter_declaration", + [sym_variadic_parameter_declaration] = "variadic_parameter_declaration", + [sym_variadic_declarator] = "variadic_declarator", + [sym_variadic_reference_declarator] = "reference_declarator", + [sym_operator_cast] = "operator_cast", + [sym_field_initializer_list] = "field_initializer_list", + [sym_field_initializer] = "field_initializer", + [sym_inline_method_definition] = "function_definition", + [sym__constructor_specifiers] = "_constructor_specifiers", + [sym_operator_cast_definition] = "function_definition", + [sym_operator_cast_declaration] = "declaration", + [sym_constructor_try_statement] = "try_statement", + [sym_constructor_or_destructor_definition] = "function_definition", + [sym_constructor_or_destructor_declaration] = "declaration", + [sym_default_method_clause] = "default_method_clause", + [sym_delete_method_clause] = "delete_method_clause", + [sym_friend_declaration] = "friend_declaration", + [sym_access_specifier] = "access_specifier", + [sym_reference_declarator] = "reference_declarator", + [sym_reference_field_declarator] = "reference_declarator", + [sym_abstract_reference_declarator] = "abstract_reference_declarator", + [sym_structured_binding_declarator] = "structured_binding_declarator", + [sym_ref_qualifier] = "ref_qualifier", + [sym_trailing_return_type] = "trailing_return_type", + [sym_noexcept] = "noexcept", + [sym_throw_specifier] = "throw_specifier", + [sym_template_type] = "template_type", + [sym_template_method] = "template_method", + [sym_template_function] = "template_function", + [sym_template_argument_list] = "template_argument_list", + [sym_namespace_definition] = "namespace_definition", + [sym_namespace_alias_definition] = "namespace_alias_definition", + [sym_namespace_definition_name] = "namespace_definition_name", + [sym_using_declaration] = "using_declaration", + [sym_alias_declaration] = "alias_declaration", + [sym_static_assert_declaration] = "static_assert_declaration", + [sym_concept_definition] = "concept_definition", + [sym_for_range_loop] = "for_range_loop", + [sym_init_statement] = "init_statement", + [sym_condition_clause] = "condition_clause", + [sym_condition_declaration] = "declaration", + [sym_co_return_statement] = "co_return_statement", + [sym_co_yield_statement] = "co_yield_statement", + [sym_throw_statement] = "throw_statement", + [sym_try_statement] = "try_statement", + [sym_catch_clause] = "catch_clause", + [sym_raw_string_literal] = "raw_string_literal", + [sym_co_await_expression] = "co_await_expression", + [sym_new_expression] = "new_expression", + [sym_new_declarator] = "new_declarator", + [sym_delete_expression] = "delete_expression", + [sym_type_requirement] = "type_requirement", + [sym_compound_requirement] = "compound_requirement", + [sym__requirement] = "_requirement", + [sym_requirement_seq] = "requirement_seq", + [sym_constraint_conjunction] = "constraint_conjunction", + [sym_constraint_disjunction] = "constraint_disjunction", + [sym__requirement_clause_constraint] = "_requirement_clause_constraint", + [sym_requires_clause] = "requires_clause", + [sym_requires_parameter_list] = "parameter_list", + [sym_requires_expression] = "requires_expression", + [sym_lambda_expression] = "lambda_expression", + [sym_lambda_capture_specifier] = "lambda_capture_specifier", + [sym_lambda_default_capture] = "lambda_default_capture", + [sym__fold_operator] = "_fold_operator", + [sym__binary_fold_operator] = "_binary_fold_operator", + [sym__unary_left_fold] = "_unary_left_fold", + [sym__unary_right_fold] = "_unary_right_fold", + [sym__binary_fold] = "_binary_fold", + [sym_fold_expression] = "fold_expression", + [sym_parameter_pack_expansion] = "parameter_pack_expansion", + [sym_type_parameter_pack_expansion] = "parameter_pack_expansion", + [sym_destructor_name] = "destructor_name", + [sym_dependent_identifier] = "dependent_name", + [sym_dependent_field_identifier] = "dependent_name", + [sym_dependent_type_identifier] = "dependent_name", + [sym__scope_resolution] = "_scope_resolution", + [sym_qualified_field_identifier] = "qualified_identifier", + [sym_qualified_identifier] = "qualified_identifier", + [sym_qualified_type_identifier] = "qualified_identifier", + [sym_qualified_operator_cast_identifier] = "qualified_identifier", + [sym_operator_name] = "operator_name", + [sym_user_defined_literal] = "user_defined_literal", + [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", + [aux_sym_preproc_params_repeat1] = "preproc_params_repeat1", + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = "preproc_if_in_field_declaration_list_repeat1", + [aux_sym_preproc_argument_list_repeat1] = "preproc_argument_list_repeat1", + [aux_sym_declaration_repeat1] = "declaration_repeat1", + [aux_sym_type_definition_repeat1] = "type_definition_repeat1", + [aux_sym_type_definition_repeat2] = "type_definition_repeat2", + [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", + [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", + [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", + [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", + [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", + [aux_sym_function_declarator_repeat2] = "function_declarator_repeat2", + [aux_sym_abstract_function_declarator_repeat1] = "abstract_function_declarator_repeat1", + [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", + [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", + [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", + [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", + [aux_sym_case_statement_repeat1] = "case_statement_repeat1", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", + [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", + [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", + [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym_base_class_clause_repeat1] = "base_class_clause_repeat1", + [aux_sym_template_parameter_list_repeat1] = "template_parameter_list_repeat1", + [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", + [aux_sym_operator_cast_definition_repeat1] = "operator_cast_definition_repeat1", + [aux_sym_constructor_try_statement_repeat1] = "constructor_try_statement_repeat1", + [aux_sym_structured_binding_declarator_repeat1] = "structured_binding_declarator_repeat1", + [aux_sym_throw_specifier_repeat1] = "throw_specifier_repeat1", + [aux_sym_template_argument_list_repeat1] = "template_argument_list_repeat1", + [aux_sym_requirement_seq_repeat1] = "requirement_seq_repeat1", + [aux_sym_requires_parameter_list_repeat1] = "requires_parameter_list_repeat1", + [aux_sym_lambda_capture_specifier_repeat1] = "lambda_capture_specifier_repeat1", + [alias_sym_field_identifier] = "field_identifier", + [alias_sym_namespace_identifier] = "namespace_identifier", + [alias_sym_simple_requirement] = "simple_requirement", + [alias_sym_statement_identifier] = "statement_identifier", + [alias_sym_type_identifier] = "type_identifier", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [aux_sym_preproc_include_token1] = aux_sym_preproc_include_token1, + [anon_sym_LF] = anon_sym_LF, + [aux_sym_preproc_def_token1] = aux_sym_preproc_def_token1, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [aux_sym_preproc_if_token1] = aux_sym_preproc_if_token1, + [aux_sym_preproc_if_token2] = aux_sym_preproc_if_token2, + [aux_sym_preproc_ifdef_token1] = aux_sym_preproc_ifdef_token1, + [aux_sym_preproc_ifdef_token2] = aux_sym_preproc_ifdef_token2, + [aux_sym_preproc_else_token1] = aux_sym_preproc_else_token1, + [aux_sym_preproc_elif_token1] = aux_sym_preproc_elif_token1, + [sym_preproc_directive] = sym_preproc_directive, + [sym_preproc_arg] = sym_preproc_arg, + [anon_sym_LPAREN2] = anon_sym_LPAREN, + [anon_sym_defined] = anon_sym_defined, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_typedef] = anon_sym_typedef, + [anon_sym_extern] = anon_sym_extern, + [anon_sym___attribute__] = anon_sym___attribute__, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_LBRACK_LBRACK] = anon_sym_LBRACK_LBRACK, + [anon_sym_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, + [anon_sym___declspec] = anon_sym___declspec, + [anon_sym___based] = anon_sym___based, + [anon_sym___cdecl] = anon_sym___cdecl, + [anon_sym___clrcall] = anon_sym___clrcall, + [anon_sym___stdcall] = anon_sym___stdcall, + [anon_sym___fastcall] = anon_sym___fastcall, + [anon_sym___thiscall] = anon_sym___thiscall, + [anon_sym___vectorcall] = anon_sym___vectorcall, + [sym_ms_restrict_modifier] = sym_ms_restrict_modifier, + [sym_ms_unsigned_ptr_modifier] = sym_ms_unsigned_ptr_modifier, + [sym_ms_signed_ptr_modifier] = sym_ms_signed_ptr_modifier, + [anon_sym__unaligned] = anon_sym__unaligned, + [anon_sym___unaligned] = anon_sym___unaligned, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_static] = anon_sym_static, + [anon_sym_register] = anon_sym_register, + [anon_sym_inline] = anon_sym_inline, + [anon_sym_thread_local] = anon_sym_thread_local, + [anon_sym_const] = anon_sym_const, + [anon_sym_volatile] = anon_sym_volatile, + [anon_sym_restrict] = anon_sym_restrict, + [anon_sym__Atomic] = anon_sym__Atomic, + [anon_sym_mutable] = anon_sym_mutable, + [anon_sym_constexpr] = anon_sym_constexpr, + [anon_sym_constinit] = anon_sym_constinit, + [anon_sym_consteval] = anon_sym_consteval, + [anon_sym_signed] = anon_sym_signed, + [anon_sym_unsigned] = anon_sym_unsigned, + [anon_sym_long] = anon_sym_long, + [anon_sym_short] = anon_sym_short, + [sym_primitive_type] = sym_primitive_type, + [anon_sym_enum] = anon_sym_enum, + [anon_sym_class] = anon_sym_class, + [anon_sym_struct] = anon_sym_struct, + [anon_sym_union] = anon_sym_union, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_if] = anon_sym_if, + [anon_sym_else] = anon_sym_else, + [anon_sym_switch] = anon_sym_switch, + [anon_sym_case] = anon_sym_case, + [anon_sym_default] = anon_sym_default, + [anon_sym_while] = anon_sym_while, + [anon_sym_do] = anon_sym_do, + [anon_sym_for] = anon_sym_for, + [anon_sym_return] = anon_sym_return, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_goto] = anon_sym_goto, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_and_eq] = anon_sym_and_eq, + [anon_sym_or_eq] = anon_sym_or_eq, + [anon_sym_xor_eq] = anon_sym_xor_eq, + [anon_sym_not] = anon_sym_not, + [anon_sym_compl] = anon_sym_compl, + [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, + [anon_sym_or] = anon_sym_or, + [anon_sym_and] = anon_sym_and, + [anon_sym_bitor] = anon_sym_bitor, + [anon_sym_xor] = anon_sym_xor, + [anon_sym_bitand] = anon_sym_bitand, + [anon_sym_not_eq] = anon_sym_not_eq, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_sizeof] = anon_sym_sizeof, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [sym_number_literal] = sym_number_literal, + [anon_sym_L_SQUOTE] = anon_sym_L_SQUOTE, + [anon_sym_u_SQUOTE] = anon_sym_u_SQUOTE, + [anon_sym_U_SQUOTE] = anon_sym_U_SQUOTE, + [anon_sym_u8_SQUOTE] = anon_sym_u8_SQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_char_literal_token1] = aux_sym_char_literal_token1, + [anon_sym_L_DQUOTE] = anon_sym_L_DQUOTE, + [anon_sym_u_DQUOTE] = anon_sym_u_DQUOTE, + [anon_sym_U_DQUOTE] = anon_sym_U_DQUOTE, + [anon_sym_u8_DQUOTE] = anon_sym_u8_DQUOTE, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_string_literal_token1] = aux_sym_string_literal_token1, + [sym_escape_sequence] = sym_escape_sequence, + [sym_system_lib_string] = sym_system_lib_string, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_null] = sym_null, + [sym_comment] = sym_comment, + [sym_auto] = sym_auto, + [anon_sym_decltype] = anon_sym_decltype, + [anon_sym_final] = anon_sym_final, + [anon_sym_override] = anon_sym_override, + [anon_sym_virtual] = anon_sym_virtual, + [anon_sym_explicit] = anon_sym_explicit, + [anon_sym_public] = anon_sym_public, + [anon_sym_private] = anon_sym_private, + [anon_sym_protected] = anon_sym_protected, + [anon_sym_typename] = anon_sym_typename, + [anon_sym_template] = anon_sym_template, + [anon_sym_GT2] = anon_sym_GT, + [anon_sym_operator] = anon_sym_operator, + [anon_sym_try] = anon_sym_try, + [anon_sym_delete] = anon_sym_delete, + [anon_sym_friend] = anon_sym_friend, + [anon_sym_noexcept] = anon_sym_noexcept, + [anon_sym_throw] = anon_sym_throw, + [anon_sym_namespace] = anon_sym_namespace, + [anon_sym_using] = anon_sym_using, + [anon_sym_static_assert] = anon_sym_static_assert, + [anon_sym_concept] = anon_sym_concept, + [anon_sym_co_return] = anon_sym_co_return, + [anon_sym_co_yield] = anon_sym_co_yield, + [anon_sym_catch] = anon_sym_catch, + [anon_sym_R_DQUOTE] = anon_sym_R_DQUOTE, + [anon_sym_LR_DQUOTE] = anon_sym_LR_DQUOTE, + [anon_sym_uR_DQUOTE] = anon_sym_uR_DQUOTE, + [anon_sym_UR_DQUOTE] = anon_sym_UR_DQUOTE, + [anon_sym_u8R_DQUOTE] = anon_sym_u8R_DQUOTE, + [anon_sym_co_await] = anon_sym_co_await, + [anon_sym_new] = anon_sym_new, + [anon_sym_requires] = anon_sym_requires, + [anon_sym_DOT_STAR] = anon_sym_DOT_STAR, + [anon_sym_DASH_GT_STAR] = anon_sym_DASH_GT_STAR, + [anon_sym_LPAREN_RPAREN] = anon_sym_LPAREN_RPAREN, + [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, + [anon_sym_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE, + [sym_this] = sym_this, + [sym_nullptr] = sym_nullptr, + [sym_literal_suffix] = sym_literal_suffix, + [sym_raw_string_delimiter] = sym_raw_string_delimiter, + [sym_raw_string_content] = sym_raw_string_content, + [sym_translation_unit] = sym_translation_unit, + [sym_preproc_include] = sym_preproc_include, + [sym_preproc_def] = sym_preproc_def, + [sym_preproc_function_def] = sym_preproc_function_def, + [sym_preproc_params] = sym_preproc_params, + [sym_preproc_call] = sym_preproc_call, + [sym_preproc_if] = sym_preproc_if, + [sym_preproc_ifdef] = sym_preproc_ifdef, + [sym_preproc_else] = sym_preproc_else, + [sym_preproc_elif] = sym_preproc_elif, + [sym_preproc_if_in_field_declaration_list] = sym_preproc_if, + [sym_preproc_ifdef_in_field_declaration_list] = sym_preproc_ifdef, + [sym_preproc_else_in_field_declaration_list] = sym_preproc_else, + [sym_preproc_elif_in_field_declaration_list] = sym_preproc_elif, + [sym__preproc_expression] = sym__preproc_expression, + [sym_preproc_parenthesized_expression] = sym_parenthesized_expression, + [sym_preproc_defined] = sym_preproc_defined, + [sym_preproc_unary_expression] = sym_unary_expression, + [sym_preproc_call_expression] = sym_call_expression, + [sym_preproc_argument_list] = sym_argument_list, + [sym_preproc_binary_expression] = sym_binary_expression, + [sym_function_definition] = sym_function_definition, + [sym_declaration] = sym_declaration, + [sym_type_definition] = sym_type_definition, + [sym__declaration_modifiers] = sym__declaration_modifiers, + [sym__declaration_specifiers] = sym__declaration_specifiers, + [sym_linkage_specification] = sym_linkage_specification, + [sym_attribute_specifier] = sym_attribute_specifier, + [sym_attribute] = sym_attribute, + [sym_attribute_declaration] = sym_attribute_declaration, + [sym_ms_declspec_modifier] = sym_ms_declspec_modifier, + [sym_ms_based_modifier] = sym_ms_based_modifier, + [sym_ms_call_modifier] = sym_ms_call_modifier, + [sym_ms_unaligned_ptr_modifier] = sym_ms_unaligned_ptr_modifier, + [sym_ms_pointer_modifier] = sym_ms_pointer_modifier, + [sym_declaration_list] = sym_declaration_list, + [sym__declarator] = sym__declarator, + [sym__field_declarator] = sym__field_declarator, + [sym__type_declarator] = sym__type_declarator, + [sym__abstract_declarator] = sym__abstract_declarator, + [sym_parenthesized_declarator] = sym_parenthesized_declarator, + [sym_parenthesized_field_declarator] = sym_parenthesized_declarator, + [sym_parenthesized_type_declarator] = sym_parenthesized_declarator, + [sym_abstract_parenthesized_declarator] = sym_abstract_parenthesized_declarator, + [sym_attributed_declarator] = sym_attributed_declarator, + [sym_attributed_field_declarator] = sym_attributed_declarator, + [sym_attributed_type_declarator] = sym_attributed_declarator, + [sym_pointer_declarator] = sym_pointer_declarator, + [sym_pointer_field_declarator] = sym_pointer_declarator, + [sym_pointer_type_declarator] = sym_pointer_declarator, + [sym_abstract_pointer_declarator] = sym_abstract_pointer_declarator, + [sym_function_declarator] = sym_function_declarator, + [sym_function_field_declarator] = sym_function_declarator, + [sym_function_type_declarator] = sym_function_declarator, + [sym_abstract_function_declarator] = sym_abstract_function_declarator, + [sym_array_declarator] = sym_array_declarator, + [sym_array_field_declarator] = sym_array_declarator, + [sym_array_type_declarator] = sym_array_declarator, + [sym_abstract_array_declarator] = sym_abstract_array_declarator, + [sym_init_declarator] = sym_init_declarator, + [sym_compound_statement] = sym_compound_statement, + [sym_storage_class_specifier] = sym_storage_class_specifier, + [sym_type_qualifier] = sym_type_qualifier, + [sym__type_specifier] = sym__type_specifier, + [sym_sized_type_specifier] = sym_sized_type_specifier, + [sym_enum_specifier] = sym_enum_specifier, + [sym_enumerator_list] = sym_enumerator_list, + [sym_struct_specifier] = sym_struct_specifier, + [sym_union_specifier] = sym_union_specifier, + [sym_field_declaration_list] = sym_field_declaration_list, + [sym__field_declaration_list_item] = sym__field_declaration_list_item, + [sym_field_declaration] = sym_field_declaration, + [sym_bitfield_clause] = sym_bitfield_clause, + [sym_enumerator] = sym_enumerator, + [sym_parameter_list] = sym_parameter_list, + [sym_parameter_declaration] = sym_parameter_declaration, + [sym_attributed_statement] = sym_attributed_statement, + [sym_labeled_statement] = sym_labeled_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_if_statement] = sym_if_statement, + [sym_switch_statement] = sym_switch_statement, + [sym_case_statement] = sym_case_statement, + [sym_while_statement] = sym_while_statement, + [sym_do_statement] = sym_do_statement, + [sym_for_statement] = sym_for_statement, + [sym_return_statement] = sym_return_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_goto_statement] = sym_goto_statement, + [sym__expression] = sym__expression, + [sym_comma_expression] = sym_comma_expression, + [sym_conditional_expression] = sym_conditional_expression, + [sym_assignment_expression] = sym_assignment_expression, + [sym_pointer_expression] = sym_pointer_expression, + [sym_unary_expression] = sym_unary_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_update_expression] = sym_update_expression, + [sym_cast_expression] = sym_cast_expression, + [sym_type_descriptor] = sym_type_descriptor, + [sym_sizeof_expression] = sym_sizeof_expression, + [sym_subscript_expression] = sym_subscript_expression, + [sym_call_expression] = sym_call_expression, + [sym_argument_list] = sym_argument_list, + [sym_field_expression] = sym_field_expression, + [sym_compound_literal_expression] = sym_compound_literal_expression, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_initializer_list] = sym_initializer_list, + [sym_initializer_pair] = sym_initializer_pair, + [sym_subscript_designator] = sym_subscript_designator, + [sym_field_designator] = sym_field_designator, + [sym_char_literal] = sym_char_literal, + [sym_concatenated_string] = sym_concatenated_string, + [sym_string_literal] = sym_string_literal, + [sym__empty_declaration] = sym__empty_declaration, + [sym_placeholder_type_specifier] = sym_placeholder_type_specifier, + [sym_decltype_auto] = sym_decltype, + [sym_decltype] = sym_decltype, + [sym_class_specifier] = sym_class_specifier, + [sym__class_name] = sym__class_name, + [sym_virtual_specifier] = sym_virtual_specifier, + [sym_virtual_function_specifier] = sym_virtual_function_specifier, + [sym_explicit_function_specifier] = sym_explicit_function_specifier, + [sym_base_class_clause] = sym_base_class_clause, + [sym__enum_base_clause] = sym__enum_base_clause, + [sym_dependent_type] = sym_dependent_type, + [sym_template_declaration] = sym_template_declaration, + [sym_template_instantiation] = sym_template_instantiation, + [sym_template_parameter_list] = sym_template_parameter_list, + [sym_type_parameter_declaration] = sym_type_parameter_declaration, + [sym_variadic_type_parameter_declaration] = sym_variadic_type_parameter_declaration, + [sym_optional_type_parameter_declaration] = sym_optional_type_parameter_declaration, + [sym_template_template_parameter_declaration] = sym_template_template_parameter_declaration, + [sym_optional_parameter_declaration] = sym_optional_parameter_declaration, + [sym_variadic_parameter_declaration] = sym_variadic_parameter_declaration, + [sym_variadic_declarator] = sym_variadic_declarator, + [sym_variadic_reference_declarator] = sym_reference_declarator, + [sym_operator_cast] = sym_operator_cast, + [sym_field_initializer_list] = sym_field_initializer_list, + [sym_field_initializer] = sym_field_initializer, + [sym_inline_method_definition] = sym_function_definition, + [sym__constructor_specifiers] = sym__constructor_specifiers, + [sym_operator_cast_definition] = sym_function_definition, + [sym_operator_cast_declaration] = sym_declaration, + [sym_constructor_try_statement] = sym_try_statement, + [sym_constructor_or_destructor_definition] = sym_function_definition, + [sym_constructor_or_destructor_declaration] = sym_declaration, + [sym_default_method_clause] = sym_default_method_clause, + [sym_delete_method_clause] = sym_delete_method_clause, + [sym_friend_declaration] = sym_friend_declaration, + [sym_access_specifier] = sym_access_specifier, + [sym_reference_declarator] = sym_reference_declarator, + [sym_reference_field_declarator] = sym_reference_declarator, + [sym_abstract_reference_declarator] = sym_abstract_reference_declarator, + [sym_structured_binding_declarator] = sym_structured_binding_declarator, + [sym_ref_qualifier] = sym_ref_qualifier, + [sym_trailing_return_type] = sym_trailing_return_type, + [sym_noexcept] = sym_noexcept, + [sym_throw_specifier] = sym_throw_specifier, + [sym_template_type] = sym_template_type, + [sym_template_method] = sym_template_method, + [sym_template_function] = sym_template_function, + [sym_template_argument_list] = sym_template_argument_list, + [sym_namespace_definition] = sym_namespace_definition, + [sym_namespace_alias_definition] = sym_namespace_alias_definition, + [sym_namespace_definition_name] = sym_namespace_definition_name, + [sym_using_declaration] = sym_using_declaration, + [sym_alias_declaration] = sym_alias_declaration, + [sym_static_assert_declaration] = sym_static_assert_declaration, + [sym_concept_definition] = sym_concept_definition, + [sym_for_range_loop] = sym_for_range_loop, + [sym_init_statement] = sym_init_statement, + [sym_condition_clause] = sym_condition_clause, + [sym_condition_declaration] = sym_declaration, + [sym_co_return_statement] = sym_co_return_statement, + [sym_co_yield_statement] = sym_co_yield_statement, + [sym_throw_statement] = sym_throw_statement, + [sym_try_statement] = sym_try_statement, + [sym_catch_clause] = sym_catch_clause, + [sym_raw_string_literal] = sym_raw_string_literal, + [sym_co_await_expression] = sym_co_await_expression, + [sym_new_expression] = sym_new_expression, + [sym_new_declarator] = sym_new_declarator, + [sym_delete_expression] = sym_delete_expression, + [sym_type_requirement] = sym_type_requirement, + [sym_compound_requirement] = sym_compound_requirement, + [sym__requirement] = sym__requirement, + [sym_requirement_seq] = sym_requirement_seq, + [sym_constraint_conjunction] = sym_constraint_conjunction, + [sym_constraint_disjunction] = sym_constraint_disjunction, + [sym__requirement_clause_constraint] = sym__requirement_clause_constraint, + [sym_requires_clause] = sym_requires_clause, + [sym_requires_parameter_list] = sym_parameter_list, + [sym_requires_expression] = sym_requires_expression, + [sym_lambda_expression] = sym_lambda_expression, + [sym_lambda_capture_specifier] = sym_lambda_capture_specifier, + [sym_lambda_default_capture] = sym_lambda_default_capture, + [sym__fold_operator] = sym__fold_operator, + [sym__binary_fold_operator] = sym__binary_fold_operator, + [sym__unary_left_fold] = sym__unary_left_fold, + [sym__unary_right_fold] = sym__unary_right_fold, + [sym__binary_fold] = sym__binary_fold, + [sym_fold_expression] = sym_fold_expression, + [sym_parameter_pack_expansion] = sym_parameter_pack_expansion, + [sym_type_parameter_pack_expansion] = sym_parameter_pack_expansion, + [sym_destructor_name] = sym_destructor_name, + [sym_dependent_identifier] = sym_dependent_identifier, + [sym_dependent_field_identifier] = sym_dependent_identifier, + [sym_dependent_type_identifier] = sym_dependent_identifier, + [sym__scope_resolution] = sym__scope_resolution, + [sym_qualified_field_identifier] = sym_qualified_identifier, + [sym_qualified_identifier] = sym_qualified_identifier, + [sym_qualified_type_identifier] = sym_qualified_identifier, + [sym_qualified_operator_cast_identifier] = sym_qualified_identifier, + [sym_operator_name] = sym_operator_name, + [sym_user_defined_literal] = sym_user_defined_literal, + [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, + [aux_sym_preproc_params_repeat1] = aux_sym_preproc_params_repeat1, + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = aux_sym_preproc_if_in_field_declaration_list_repeat1, + [aux_sym_preproc_argument_list_repeat1] = aux_sym_preproc_argument_list_repeat1, + [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, + [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, + [aux_sym_type_definition_repeat2] = aux_sym_type_definition_repeat2, + [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, + [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, + [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, + [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, + [aux_sym_function_declarator_repeat1] = aux_sym_function_declarator_repeat1, + [aux_sym_function_declarator_repeat2] = aux_sym_function_declarator_repeat2, + [aux_sym_abstract_function_declarator_repeat1] = aux_sym_abstract_function_declarator_repeat1, + [aux_sym_sized_type_specifier_repeat1] = aux_sym_sized_type_specifier_repeat1, + [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, + [aux_sym_field_declaration_repeat1] = aux_sym_field_declaration_repeat1, + [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, + [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, + [aux_sym_initializer_pair_repeat1] = aux_sym_initializer_pair_repeat1, + [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, + [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym_base_class_clause_repeat1] = aux_sym_base_class_clause_repeat1, + [aux_sym_template_parameter_list_repeat1] = aux_sym_template_parameter_list_repeat1, + [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, + [aux_sym_operator_cast_definition_repeat1] = aux_sym_operator_cast_definition_repeat1, + [aux_sym_constructor_try_statement_repeat1] = aux_sym_constructor_try_statement_repeat1, + [aux_sym_structured_binding_declarator_repeat1] = aux_sym_structured_binding_declarator_repeat1, + [aux_sym_throw_specifier_repeat1] = aux_sym_throw_specifier_repeat1, + [aux_sym_template_argument_list_repeat1] = aux_sym_template_argument_list_repeat1, + [aux_sym_requirement_seq_repeat1] = aux_sym_requirement_seq_repeat1, + [aux_sym_requires_parameter_list_repeat1] = aux_sym_requires_parameter_list_repeat1, + [aux_sym_lambda_capture_specifier_repeat1] = aux_sym_lambda_capture_specifier_repeat1, + [alias_sym_field_identifier] = alias_sym_field_identifier, + [alias_sym_namespace_identifier] = alias_sym_namespace_identifier, + [alias_sym_simple_requirement] = alias_sym_simple_requirement, + [alias_sym_statement_identifier] = alias_sym_statement_identifier, + [alias_sym_type_identifier] = alias_sym_type_identifier, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [aux_sym_preproc_include_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LF] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_def_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_if_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_if_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_ifdef_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_ifdef_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_else_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_elif_token1] = { + .visible = true, + .named = false, + }, + [sym_preproc_directive] = { + .visible = true, + .named = true, + }, + [sym_preproc_arg] = { + .visible = true, + .named = true, + }, + [anon_sym_LPAREN2] = { + .visible = true, + .named = false, + }, + [anon_sym_defined] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_typedef] = { + .visible = true, + .named = false, + }, + [anon_sym_extern] = { + .visible = true, + .named = false, + }, + [anon_sym___attribute__] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym___declspec] = { + .visible = true, + .named = false, + }, + [anon_sym___based] = { + .visible = true, + .named = false, + }, + [anon_sym___cdecl] = { + .visible = true, + .named = false, + }, + [anon_sym___clrcall] = { + .visible = true, + .named = false, + }, + [anon_sym___stdcall] = { + .visible = true, + .named = false, + }, + [anon_sym___fastcall] = { + .visible = true, + .named = false, + }, + [anon_sym___thiscall] = { + .visible = true, + .named = false, + }, + [anon_sym___vectorcall] = { + .visible = true, + .named = false, + }, + [sym_ms_restrict_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_unsigned_ptr_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_signed_ptr_modifier] = { + .visible = true, + .named = true, + }, + [anon_sym__unaligned] = { + .visible = true, + .named = false, + }, + [anon_sym___unaligned] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [anon_sym_register] = { + .visible = true, + .named = false, + }, + [anon_sym_inline] = { + .visible = true, + .named = false, + }, + [anon_sym_thread_local] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_volatile] = { + .visible = true, + .named = false, + }, + [anon_sym_restrict] = { + .visible = true, + .named = false, + }, + [anon_sym__Atomic] = { + .visible = true, + .named = false, + }, + [anon_sym_mutable] = { + .visible = true, + .named = false, + }, + [anon_sym_constexpr] = { + .visible = true, + .named = false, + }, + [anon_sym_constinit] = { + .visible = true, + .named = false, + }, + [anon_sym_consteval] = { + .visible = true, + .named = false, + }, + [anon_sym_signed] = { + .visible = true, + .named = false, + }, + [anon_sym_unsigned] = { + .visible = true, + .named = false, + }, + [anon_sym_long] = { + .visible = true, + .named = false, + }, + [anon_sym_short] = { + .visible = true, + .named = false, + }, + [sym_primitive_type] = { + .visible = true, + .named = true, + }, + [anon_sym_enum] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = false, + }, + [anon_sym_union] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_switch] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_default] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_goto] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_and_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_or_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_xor_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { + .visible = true, + .named = false, + }, + [anon_sym_compl] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_bitor] = { + .visible = true, + .named = false, + }, + [anon_sym_xor] = { + .visible = true, + .named = false, + }, + [anon_sym_bitand] = { + .visible = true, + .named = false, + }, + [anon_sym_not_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_sizeof] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [sym_number_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_L_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_U_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_char_literal_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_L_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_U_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_string_literal_token1] = { + .visible = false, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym_system_lib_string] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym_auto] = { + .visible = true, + .named = true, + }, + [anon_sym_decltype] = { + .visible = true, + .named = false, + }, + [anon_sym_final] = { + .visible = true, + .named = false, + }, + [anon_sym_override] = { + .visible = true, + .named = false, + }, + [anon_sym_virtual] = { + .visible = true, + .named = false, + }, + [anon_sym_explicit] = { + .visible = true, + .named = false, + }, + [anon_sym_public] = { + .visible = true, + .named = false, + }, + [anon_sym_private] = { + .visible = true, + .named = false, + }, + [anon_sym_protected] = { + .visible = true, + .named = false, + }, + [anon_sym_typename] = { + .visible = true, + .named = false, + }, + [anon_sym_template] = { + .visible = true, + .named = false, + }, + [anon_sym_GT2] = { + .visible = true, + .named = false, + }, + [anon_sym_operator] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_delete] = { + .visible = true, + .named = false, + }, + [anon_sym_friend] = { + .visible = true, + .named = false, + }, + [anon_sym_noexcept] = { + .visible = true, + .named = false, + }, + [anon_sym_throw] = { + .visible = true, + .named = false, + }, + [anon_sym_namespace] = { + .visible = true, + .named = false, + }, + [anon_sym_using] = { + .visible = true, + .named = false, + }, + [anon_sym_static_assert] = { + .visible = true, + .named = false, + }, + [anon_sym_concept] = { + .visible = true, + .named = false, + }, + [anon_sym_co_return] = { + .visible = true, + .named = false, + }, + [anon_sym_co_yield] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, + [anon_sym_R_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_LR_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_uR_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_UR_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_u8R_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_co_await] = { + .visible = true, + .named = false, + }, + [anon_sym_new] = { + .visible = true, + .named = false, + }, + [anon_sym_requires] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE_DQUOTE] = { + .visible = true, + .named = false, + }, + [sym_this] = { + .visible = true, + .named = true, + }, + [sym_nullptr] = { + .visible = true, + .named = true, + }, + [sym_literal_suffix] = { + .visible = true, + .named = true, + }, + [sym_raw_string_delimiter] = { + .visible = true, + .named = true, + }, + [sym_raw_string_content] = { + .visible = true, + .named = true, + }, + [sym_translation_unit] = { + .visible = true, + .named = true, + }, + [sym_preproc_include] = { + .visible = true, + .named = true, + }, + [sym_preproc_def] = { + .visible = true, + .named = true, + }, + [sym_preproc_function_def] = { + .visible = true, + .named = true, + }, + [sym_preproc_params] = { + .visible = true, + .named = true, + }, + [sym_preproc_call] = { + .visible = true, + .named = true, + }, + [sym_preproc_if] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef] = { + .visible = true, + .named = true, + }, + [sym_preproc_else] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif] = { + .visible = true, + .named = true, + }, + [sym_preproc_if_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__preproc_expression] = { + .visible = false, + .named = true, + }, + [sym_preproc_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_preproc_defined] = { + .visible = true, + .named = true, + }, + [sym_preproc_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_preproc_call_expression] = { + .visible = true, + .named = true, + }, + [sym_preproc_argument_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym_declaration] = { + .visible = true, + .named = true, + }, + [sym_type_definition] = { + .visible = true, + .named = true, + }, + [sym__declaration_modifiers] = { + .visible = false, + .named = true, + }, + [sym__declaration_specifiers] = { + .visible = false, + .named = true, + }, + [sym_linkage_specification] = { + .visible = true, + .named = true, + }, + [sym_attribute_specifier] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_attribute_declaration] = { + .visible = true, + .named = true, + }, + [sym_ms_declspec_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_based_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_call_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_unaligned_ptr_modifier] = { + .visible = true, + .named = true, + }, + [sym_ms_pointer_modifier] = { + .visible = true, + .named = true, + }, + [sym_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__field_declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__type_declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__abstract_declarator] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_parenthesized_declarator] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_parenthesized_declarator] = { + .visible = true, + .named = true, + }, + [sym_attributed_declarator] = { + .visible = true, + .named = true, + }, + [sym_attributed_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_attributed_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_pointer_declarator] = { + .visible = true, + .named = true, + }, + [sym_pointer_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_pointer_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_pointer_declarator] = { + .visible = true, + .named = true, + }, + [sym_function_declarator] = { + .visible = true, + .named = true, + }, + [sym_function_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_function_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_function_declarator] = { + .visible = true, + .named = true, + }, + [sym_array_declarator] = { + .visible = true, + .named = true, + }, + [sym_array_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_array_type_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_array_declarator] = { + .visible = true, + .named = true, + }, + [sym_init_declarator] = { + .visible = true, + .named = true, + }, + [sym_compound_statement] = { + .visible = true, + .named = true, + }, + [sym_storage_class_specifier] = { + .visible = true, + .named = true, + }, + [sym_type_qualifier] = { + .visible = true, + .named = true, + }, + [sym__type_specifier] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_sized_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_enum_specifier] = { + .visible = true, + .named = true, + }, + [sym_enumerator_list] = { + .visible = true, + .named = true, + }, + [sym_struct_specifier] = { + .visible = true, + .named = true, + }, + [sym_union_specifier] = { + .visible = true, + .named = true, + }, + [sym_field_declaration_list] = { + .visible = true, + .named = true, + }, + [sym__field_declaration_list_item] = { + .visible = false, + .named = true, + }, + [sym_field_declaration] = { + .visible = true, + .named = true, + }, + [sym_bitfield_clause] = { + .visible = true, + .named = true, + }, + [sym_enumerator] = { + .visible = true, + .named = true, + }, + [sym_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_attributed_statement] = { + .visible = true, + .named = true, + }, + [sym_labeled_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_case_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_statement] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_goto_statement] = { + .visible = true, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_comma_expression] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym_pointer_expression] = { + .visible = true, + .named = true, + }, + [sym_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_update_expression] = { + .visible = true, + .named = true, + }, + [sym_cast_expression] = { + .visible = true, + .named = true, + }, + [sym_type_descriptor] = { + .visible = true, + .named = true, + }, + [sym_sizeof_expression] = { + .visible = true, + .named = true, + }, + [sym_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_field_expression] = { + .visible = true, + .named = true, + }, + [sym_compound_literal_expression] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_initializer_list] = { + .visible = true, + .named = true, + }, + [sym_initializer_pair] = { + .visible = true, + .named = true, + }, + [sym_subscript_designator] = { + .visible = true, + .named = true, + }, + [sym_field_designator] = { + .visible = true, + .named = true, + }, + [sym_char_literal] = { + .visible = true, + .named = true, + }, + [sym_concatenated_string] = { + .visible = true, + .named = true, + }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym__empty_declaration] = { + .visible = false, + .named = true, + }, + [sym_placeholder_type_specifier] = { + .visible = true, + .named = true, + }, + [sym_decltype_auto] = { + .visible = true, + .named = true, + }, + [sym_decltype] = { + .visible = true, + .named = true, + }, + [sym_class_specifier] = { + .visible = true, + .named = true, + }, + [sym__class_name] = { + .visible = false, + .named = true, + }, + [sym_virtual_specifier] = { + .visible = true, + .named = true, + }, + [sym_virtual_function_specifier] = { + .visible = true, + .named = true, + }, + [sym_explicit_function_specifier] = { + .visible = true, + .named = true, + }, + [sym_base_class_clause] = { + .visible = true, + .named = true, + }, + [sym__enum_base_clause] = { + .visible = false, + .named = true, + }, + [sym_dependent_type] = { + .visible = true, + .named = true, + }, + [sym_template_declaration] = { + .visible = true, + .named = true, + }, + [sym_template_instantiation] = { + .visible = true, + .named = true, + }, + [sym_template_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_type_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_variadic_type_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_optional_type_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_template_template_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_optional_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_variadic_parameter_declaration] = { + .visible = true, + .named = true, + }, + [sym_variadic_declarator] = { + .visible = true, + .named = true, + }, + [sym_variadic_reference_declarator] = { + .visible = true, + .named = true, + }, + [sym_operator_cast] = { + .visible = true, + .named = true, + }, + [sym_field_initializer_list] = { + .visible = true, + .named = true, + }, + [sym_field_initializer] = { + .visible = true, + .named = true, + }, + [sym_inline_method_definition] = { + .visible = true, + .named = true, + }, + [sym__constructor_specifiers] = { + .visible = false, + .named = true, + }, + [sym_operator_cast_definition] = { + .visible = true, + .named = true, + }, + [sym_operator_cast_declaration] = { + .visible = true, + .named = true, + }, + [sym_constructor_try_statement] = { + .visible = true, + .named = true, + }, + [sym_constructor_or_destructor_definition] = { + .visible = true, + .named = true, + }, + [sym_constructor_or_destructor_declaration] = { + .visible = true, + .named = true, + }, + [sym_default_method_clause] = { + .visible = true, + .named = true, + }, + [sym_delete_method_clause] = { + .visible = true, + .named = true, + }, + [sym_friend_declaration] = { + .visible = true, + .named = true, + }, + [sym_access_specifier] = { + .visible = true, + .named = true, + }, + [sym_reference_declarator] = { + .visible = true, + .named = true, + }, + [sym_reference_field_declarator] = { + .visible = true, + .named = true, + }, + [sym_abstract_reference_declarator] = { + .visible = true, + .named = true, + }, + [sym_structured_binding_declarator] = { + .visible = true, + .named = true, + }, + [sym_ref_qualifier] = { + .visible = true, + .named = true, + }, + [sym_trailing_return_type] = { + .visible = true, + .named = true, + }, + [sym_noexcept] = { + .visible = true, + .named = true, + }, + [sym_throw_specifier] = { + .visible = true, + .named = true, + }, + [sym_template_type] = { + .visible = true, + .named = true, + }, + [sym_template_method] = { + .visible = true, + .named = true, + }, + [sym_template_function] = { + .visible = true, + .named = true, + }, + [sym_template_argument_list] = { + .visible = true, + .named = true, + }, + [sym_namespace_definition] = { + .visible = true, + .named = true, + }, + [sym_namespace_alias_definition] = { + .visible = true, + .named = true, + }, + [sym_namespace_definition_name] = { + .visible = true, + .named = true, + }, + [sym_using_declaration] = { + .visible = true, + .named = true, + }, + [sym_alias_declaration] = { + .visible = true, + .named = true, + }, + [sym_static_assert_declaration] = { + .visible = true, + .named = true, + }, + [sym_concept_definition] = { + .visible = true, + .named = true, + }, + [sym_for_range_loop] = { + .visible = true, + .named = true, + }, + [sym_init_statement] = { + .visible = true, + .named = true, + }, + [sym_condition_clause] = { + .visible = true, + .named = true, + }, + [sym_condition_declaration] = { + .visible = true, + .named = true, + }, + [sym_co_return_statement] = { + .visible = true, + .named = true, + }, + [sym_co_yield_statement] = { + .visible = true, + .named = true, + }, + [sym_throw_statement] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_catch_clause] = { + .visible = true, + .named = true, + }, + [sym_raw_string_literal] = { + .visible = true, + .named = true, + }, + [sym_co_await_expression] = { + .visible = true, + .named = true, + }, + [sym_new_expression] = { + .visible = true, + .named = true, + }, + [sym_new_declarator] = { + .visible = true, + .named = true, + }, + [sym_delete_expression] = { + .visible = true, + .named = true, + }, + [sym_type_requirement] = { + .visible = true, + .named = true, + }, + [sym_compound_requirement] = { + .visible = true, + .named = true, + }, + [sym__requirement] = { + .visible = false, + .named = true, + }, + [sym_requirement_seq] = { + .visible = true, + .named = true, + }, + [sym_constraint_conjunction] = { + .visible = true, + .named = true, + }, + [sym_constraint_disjunction] = { + .visible = true, + .named = true, + }, + [sym__requirement_clause_constraint] = { + .visible = false, + .named = true, + }, + [sym_requires_clause] = { + .visible = true, + .named = true, + }, + [sym_requires_parameter_list] = { + .visible = true, + .named = true, + }, + [sym_requires_expression] = { + .visible = true, + .named = true, + }, + [sym_lambda_expression] = { + .visible = true, + .named = true, + }, + [sym_lambda_capture_specifier] = { + .visible = true, + .named = true, + }, + [sym_lambda_default_capture] = { + .visible = true, + .named = true, + }, + [sym__fold_operator] = { + .visible = false, + .named = true, + }, + [sym__binary_fold_operator] = { + .visible = false, + .named = true, + }, + [sym__unary_left_fold] = { + .visible = false, + .named = true, + }, + [sym__unary_right_fold] = { + .visible = false, + .named = true, + }, + [sym__binary_fold] = { + .visible = false, + .named = true, + }, + [sym_fold_expression] = { + .visible = true, + .named = true, + }, + [sym_parameter_pack_expansion] = { + .visible = true, + .named = true, + }, + [sym_type_parameter_pack_expansion] = { + .visible = true, + .named = true, + }, + [sym_destructor_name] = { + .visible = true, + .named = true, + }, + [sym_dependent_identifier] = { + .visible = true, + .named = true, + }, + [sym_dependent_field_identifier] = { + .visible = true, + .named = true, + }, + [sym_dependent_type_identifier] = { + .visible = true, + .named = true, + }, + [sym__scope_resolution] = { + .visible = false, + .named = true, + }, + [sym_qualified_field_identifier] = { + .visible = true, + .named = true, + }, + [sym_qualified_identifier] = { + .visible = true, + .named = true, + }, + [sym_qualified_type_identifier] = { + .visible = true, + .named = true, + }, + [sym_qualified_operator_cast_identifier] = { + .visible = true, + .named = true, + }, + [sym_operator_name] = { + .visible = true, + .named = true, + }, + [sym_user_defined_literal] = { + .visible = true, + .named = true, + }, + [aux_sym_translation_unit_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_params_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_definition_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym__declaration_specifiers_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attributed_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pointer_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_function_declarator_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_abstract_function_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sized_type_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enumerator_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_field_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_initializer_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_initializer_pair_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_concatenated_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_base_class_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_template_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_field_initializer_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_operator_cast_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_constructor_try_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_structured_binding_declarator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_throw_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_template_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_requirement_seq_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_requires_parameter_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_lambda_capture_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_field_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_namespace_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_simple_requirement] = { + .visible = true, + .named = true, + }, + [alias_sym_statement_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_type_identifier] = { + .visible = true, + .named = true, + }, +}; + +enum { + field_alternative = 1, + field_argument = 2, + field_arguments = 3, + field_base = 4, + field_body = 5, + field_captures = 6, + field_condition = 7, + field_consequence = 8, + field_constraint = 9, + field_declarator = 10, + field_default_type = 11, + field_default_value = 12, + field_delimiter = 13, + field_designator = 14, + field_directive = 15, + field_field = 16, + field_function = 17, + field_index = 18, + field_initializer = 19, + field_label = 20, + field_left = 21, + field_length = 22, + field_message = 23, + field_name = 24, + field_operator = 25, + field_parameters = 26, + field_path = 27, + field_pattern = 28, + field_placement = 29, + field_prefix = 30, + field_requirements = 31, + field_right = 32, + field_scope = 33, + field_size = 34, + field_template_parameters = 35, + field_type = 36, + field_update = 37, + field_value = 38, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_base] = "base", + [field_body] = "body", + [field_captures] = "captures", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_constraint] = "constraint", + [field_declarator] = "declarator", + [field_default_type] = "default_type", + [field_default_value] = "default_value", + [field_delimiter] = "delimiter", + [field_designator] = "designator", + [field_directive] = "directive", + [field_field] = "field", + [field_function] = "function", + [field_index] = "index", + [field_initializer] = "initializer", + [field_label] = "label", + [field_left] = "left", + [field_length] = "length", + [field_message] = "message", + [field_name] = "name", + [field_operator] = "operator", + [field_parameters] = "parameters", + [field_path] = "path", + [field_pattern] = "pattern", + [field_placement] = "placement", + [field_prefix] = "prefix", + [field_requirements] = "requirements", + [field_right] = "right", + [field_scope] = "scope", + [field_size] = "size", + [field_template_parameters] = "template_parameters", + [field_type] = "type", + [field_update] = "update", + [field_value] = "value", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 1}, + [3] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 2}, + [5] = {.index = 4, .length = 1}, + [6] = {.index = 5, .length = 1}, + [7] = {.index = 6, .length = 2}, + [8] = {.index = 8, .length = 1}, + [9] = {.index = 9, .length = 1}, + [10] = {.index = 10, .length = 1}, + [11] = {.index = 11, .length = 1}, + [12] = {.index = 12, .length = 2}, + [13] = {.index = 12, .length = 2}, + [14] = {.index = 14, .length = 1}, + [15] = {.index = 15, .length = 1}, + [16] = {.index = 16, .length = 1}, + [17] = {.index = 17, .length = 2}, + [18] = {.index = 19, .length = 2}, + [19] = {.index = 21, .length = 1}, + [20] = {.index = 22, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 2}, + [23] = {.index = 26, .length = 2}, + [24] = {.index = 11, .length = 1}, + [25] = {.index = 28, .length = 2}, + [26] = {.index = 30, .length = 1}, + [27] = {.index = 31, .length = 2}, + [28] = {.index = 31, .length = 2}, + [29] = {.index = 14, .length = 1}, + [30] = {.index = 33, .length = 1}, + [31] = {.index = 34, .length = 2}, + [32] = {.index = 36, .length = 2}, + [33] = {.index = 38, .length = 3}, + [34] = {.index = 41, .length = 1}, + [35] = {.index = 42, .length = 2}, + [36] = {.index = 44, .length = 1}, + [37] = {.index = 45, .length = 1}, + [38] = {.index = 46, .length = 1}, + [39] = {.index = 47, .length = 2}, + [40] = {.index = 49, .length = 2}, + [41] = {.index = 51, .length = 2}, + [42] = {.index = 53, .length = 2}, + [43] = {.index = 55, .length = 1}, + [44] = {.index = 56, .length = 3}, + [45] = {.index = 59, .length = 1}, + [46] = {.index = 60, .length = 1}, + [47] = {.index = 61, .length = 1}, + [48] = {.index = 62, .length = 2}, + [49] = {.index = 64, .length = 2}, + [50] = {.index = 66, .length = 2}, + [51] = {.index = 68, .length = 2}, + [53] = {.index = 70, .length = 2}, + [54] = {.index = 72, .length = 2}, + [55] = {.index = 74, .length = 3}, + [56] = {.index = 77, .length = 2}, + [57] = {.index = 79, .length = 2}, + [58] = {.index = 81, .length = 2}, + [59] = {.index = 83, .length = 3}, + [60] = {.index = 86, .length = 2}, + [61] = {.index = 88, .length = 3}, + [62] = {.index = 91, .length = 3}, + [63] = {.index = 94, .length = 2}, + [64] = {.index = 96, .length = 2}, + [65] = {.index = 98, .length = 2}, + [66] = {.index = 100, .length = 1}, + [67] = {.index = 101, .length = 2}, + [68] = {.index = 103, .length = 2}, + [69] = {.index = 105, .length = 3}, + [70] = {.index = 108, .length = 2}, + [71] = {.index = 110, .length = 1}, + [72] = {.index = 111, .length = 2}, + [73] = {.index = 113, .length = 2}, + [74] = {.index = 115, .length = 2}, + [75] = {.index = 117, .length = 2}, + [76] = {.index = 119, .length = 2}, + [77] = {.index = 121, .length = 2}, + [78] = {.index = 123, .length = 1}, + [79] = {.index = 123, .length = 1}, + [80] = {.index = 124, .length = 3}, + [82] = {.index = 127, .length = 1}, + [83] = {.index = 128, .length = 1}, + [84] = {.index = 129, .length = 2}, + [85] = {.index = 131, .length = 2}, + [88] = {.index = 133, .length = 3}, + [89] = {.index = 136, .length = 3}, + [90] = {.index = 139, .length = 3}, + [91] = {.index = 142, .length = 2}, + [92] = {.index = 144, .length = 3}, + [93] = {.index = 147, .length = 2}, + [94] = {.index = 149, .length = 3}, + [95] = {.index = 152, .length = 2}, + [96] = {.index = 12, .length = 2}, + [97] = {.index = 31, .length = 2}, + [98] = {.index = 154, .length = 2}, + [99] = {.index = 156, .length = 2}, + [100] = {.index = 158, .length = 1}, + [101] = {.index = 159, .length = 4}, + [102] = {.index = 163, .length = 4}, + [103] = {.index = 167, .length = 2}, + [104] = {.index = 169, .length = 3}, + [105] = {.index = 172, .length = 2}, + [106] = {.index = 174, .length = 2}, + [107] = {.index = 176, .length = 1}, + [108] = {.index = 177, .length = 2}, + [109] = {.index = 179, .length = 3}, + [110] = {.index = 182, .length = 3}, + [111] = {.index = 185, .length = 3}, + [112] = {.index = 188, .length = 3}, + [113] = {.index = 191, .length = 2}, + [114] = {.index = 193, .length = 3}, + [115] = {.index = 196, .length = 2}, + [116] = {.index = 198, .length = 2}, + [117] = {.index = 200, .length = 1}, + [118] = {.index = 201, .length = 2}, + [119] = {.index = 203, .length = 2}, + [120] = {.index = 205, .length = 3}, + [121] = {.index = 208, .length = 2}, + [122] = {.index = 210, .length = 3}, + [123] = {.index = 213, .length = 2}, + [124] = {.index = 215, .length = 2}, + [125] = {.index = 217, .length = 1}, + [127] = {.index = 218, .length = 1}, + [128] = {.index = 219, .length = 2}, + [129] = {.index = 221, .length = 2}, + [130] = {.index = 223, .length = 2}, + [131] = {.index = 225, .length = 1}, + [132] = {.index = 226, .length = 1}, + [133] = {.index = 227, .length = 4}, + [134] = {.index = 231, .length = 1}, + [135] = {.index = 232, .length = 2}, + [136] = {.index = 234, .length = 3}, + [137] = {.index = 237, .length = 1}, + [138] = {.index = 238, .length = 5}, + [139] = {.index = 243, .length = 2}, + [140] = {.index = 245, .length = 2}, + [141] = {.index = 247, .length = 3}, + [142] = {.index = 250, .length = 4}, + [143] = {.index = 254, .length = 3}, + [144] = {.index = 257, .length = 2}, + [145] = {.index = 259, .length = 2}, + [146] = {.index = 261, .length = 1}, + [147] = {.index = 262, .length = 3}, + [148] = {.index = 265, .length = 3}, + [149] = {.index = 268, .length = 2}, + [150] = {.index = 270, .length = 2}, + [151] = {.index = 272, .length = 3}, + [152] = {.index = 275, .length = 4}, + [153] = {.index = 279, .length = 2}, + [154] = {.index = 281, .length = 2}, + [155] = {.index = 283, .length = 2}, + [156] = {.index = 285, .length = 3}, + [157] = {.index = 288, .length = 3}, + [158] = {.index = 291, .length = 2}, + [159] = {.index = 293, .length = 2}, + [160] = {.index = 295, .length = 1}, + [161] = {.index = 296, .length = 4}, + [162] = {.index = 300, .length = 3}, + [163] = {.index = 303, .length = 4}, + [164] = {.index = 307, .length = 4}, + [165] = {.index = 311, .length = 3}, + [166] = {.index = 314, .length = 3}, + [167] = {.index = 317, .length = 4}, + [168] = {.index = 321, .length = 5}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_type, 0}, + [1] = + {field_directive, 0}, + [2] = + {field_argument, 1}, + {field_operator, 0}, + [4] = + {field_declarator, 1}, + [5] = + {field_name, 0}, + [6] = + {field_arguments, 1}, + {field_function, 0}, + [8] = + {field_body, 1}, + [9] = + {field_name, 1}, + [10] = + {field_value, 1}, + [11] = + {field_scope, 0}, + [12] = + {field_arguments, 1}, + {field_name, 0}, + [14] = + {field_type, 1}, + [15] = + {field_requirements, 1}, + [16] = + {field_constraint, 1}, + [17] = + {field_declarator, 0}, + {field_parameters, 1}, + [19] = + {field_body, 1}, + {field_declarator, 0}, + [21] = + {field_declarator, 0}, + [22] = + {field_constraint, 0}, + [23] = + {field_pattern, 0}, + [24] = + {field_argument, 0}, + {field_operator, 1}, + [26] = + {field_type, 0}, + {field_value, 1}, + [28] = + {field_body, 1}, + {field_captures, 0}, + [30] = + {field_parameters, 0}, + [31] = + {field_name, 1}, + {field_scope, 0, .inherited = true}, + [33] = + {field_path, 1}, + [34] = + {field_argument, 1}, + {field_directive, 0}, + [36] = + {field_declarator, 1}, + {field_type, 0}, + [38] = + {field_left, 1, .inherited = true}, + {field_operator, 1, .inherited = true}, + {field_right, 1, .inherited = true}, + [41] = + {field_declarator, 2}, + [42] = + {field_body, 2}, + {field_value, 1}, + [44] = + {field_type, 2}, + [45] = + {field_body, 2}, + [46] = + {field_name, 2}, + [47] = + {field_body, 2}, + {field_name, 1}, + [49] = + {field_base, 2, .inherited = true}, + {field_name, 1}, + [51] = + {field_condition, 1}, + {field_consequence, 2}, + [53] = + {field_body, 2}, + {field_condition, 1}, + [55] = + {field_label, 1}, + [56] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [59] = + {field_label, 0}, + [60] = + {field_type, 0, .inherited = true}, + [61] = + {field_parameters, 1}, + [62] = + {field_declarator, 2}, + {field_type, 1, .inherited = true}, + [64] = + {field_arguments, 2}, + {field_type, 1}, + [66] = + {field_declarator, 2}, + {field_type, 1}, + [68] = + {field_placement, 1}, + {field_type, 2}, + [70] = + {field_parameters, 1}, + {field_requirements, 2}, + [72] = + {field_declarator, 1}, + {field_type, 0, .inherited = true}, + [74] = + {field_body, 2}, + {field_declarator, 1}, + {field_type, 0, .inherited = true}, + [77] = + {field_declarator, 0}, + {field_value, 1}, + [79] = + {field_body, 2}, + {field_declarator, 0}, + [81] = + {field_left, 0}, + {field_right, 2}, + [83] = + {field_argument, 0}, + {field_field, 2}, + {field_operator, 1}, + [86] = + {field_argument, 0}, + {field_field, 2}, + [88] = + {field_body, 2}, + {field_captures, 0}, + {field_declarator, 1}, + [91] = + {field_body, 2}, + {field_captures, 0}, + {field_template_parameters, 1}, + [94] = + {field_body, 2}, + {field_declarator, 1}, + [96] = + {field_name, 1}, + {field_value, 2}, + [98] = + {field_name, 1}, + {field_parameters, 2}, + [100] = + {field_condition, 1}, + [101] = + {field_alternative, 2}, + {field_name, 1}, + [103] = + {field_declarator, 2}, + {field_type, 0}, + [105] = + {field_left, 0}, + {field_operator, 1, .inherited = true}, + {field_right, 2}, + [108] = + {field_type, 1}, + {field_value, 3}, + [110] = + {field_declarator, 3}, + [111] = + {field_arguments, 3}, + {field_type, 2}, + [113] = + {field_declarator, 3}, + {field_type, 2}, + [115] = + {field_placement, 2}, + {field_type, 3}, + [117] = + {field_name, 2}, + {field_prefix, 0}, + [119] = + {field_body, 3}, + {field_name, 2}, + [121] = + {field_base, 3, .inherited = true}, + {field_name, 2}, + [123] = + {field_base, 1}, + [124] = + {field_base, 2, .inherited = true}, + {field_body, 3}, + {field_name, 1}, + [127] = + {field_body, 3}, + [128] = + {field_name, 3}, + [129] = + {field_body, 3}, + {field_name, 1}, + [131] = + {field_condition, 2}, + {field_consequence, 3}, + [133] = + {field_arguments, 3}, + {field_declarator, 2}, + {field_type, 1}, + [136] = + {field_arguments, 3}, + {field_placement, 1}, + {field_type, 2}, + [139] = + {field_declarator, 3}, + {field_placement, 1}, + {field_type, 2}, + [142] = + {field_declarator, 0}, + {field_value, 2}, + [144] = + {field_declarator, 1}, + {field_declarator, 2, .inherited = true}, + {field_type, 0, .inherited = true}, + [147] = + {field_declarator, 0, .inherited = true}, + {field_declarator, 1, .inherited = true}, + [149] = + {field_body, 3}, + {field_declarator, 2}, + {field_type, 1, .inherited = true}, + [152] = + {field_declarator, 0}, + {field_size, 2}, + [154] = + {field_argument, 0}, + {field_index, 2}, + [156] = + {field_declarator, 0}, + {field_default_value, 2}, + [158] = + {field_size, 1}, + [159] = + {field_body, 3}, + {field_captures, 0}, + {field_declarator, 2}, + {field_template_parameters, 1}, + [163] = + {field_body, 3}, + {field_captures, 0}, + {field_constraint, 2}, + {field_template_parameters, 1}, + [167] = + {field_body, 3}, + {field_declarator, 1}, + [169] = + {field_name, 1}, + {field_parameters, 2}, + {field_value, 3}, + [172] = + {field_alternative, 3}, + {field_condition, 1}, + [174] = + {field_alternative, 3}, + {field_name, 1}, + [176] = + {field_operator, 0}, + [177] = + {field_declarator, 3}, + {field_type, 1}, + [179] = + {field_declarator, 2}, + {field_declarator, 3, .inherited = true}, + {field_type, 1}, + [182] = + {field_arguments, 4}, + {field_declarator, 3}, + {field_type, 2}, + [185] = + {field_arguments, 4}, + {field_placement, 2}, + {field_type, 3}, + [188] = + {field_declarator, 4}, + {field_placement, 2}, + {field_type, 3}, + [191] = + {field_name, 0}, + {field_value, 2}, + [193] = + {field_base, 3, .inherited = true}, + {field_body, 4}, + {field_name, 2}, + [196] = + {field_default_value, 1}, + {field_type, 0, .inherited = true}, + [198] = + {field_body, 4}, + {field_name, 2}, + [200] = + {field_body, 4}, + [201] = + {field_body, 4}, + {field_name, 3}, + [203] = + {field_body, 4}, + {field_name, 1}, + [205] = + {field_declarator, 1}, + {field_type, 0, .inherited = true}, + {field_value, 2}, + [208] = + {field_initializer, 1}, + {field_value, 2}, + [210] = + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 2}, + [213] = + {field_body, 1}, + {field_condition, 3}, + [215] = + {field_designator, 0}, + {field_value, 2}, + [217] = + {field_value, 3}, + [218] = + {field_default_type, 2}, + [219] = + {field_default_value, 2}, + {field_type, 0, .inherited = true}, + [221] = + {field_body, 2}, + {field_parameters, 1}, + [223] = + {field_name, 1}, + {field_type, 3}, + [225] = + {field_condition, 2}, + [226] = + {field_length, 1}, + [227] = + {field_arguments, 4}, + {field_declarator, 3}, + {field_placement, 1}, + {field_type, 2}, + [231] = + {field_declarator, 4}, + [232] = + {field_declarator, 0}, + {field_size, 3}, + [234] = + {field_alternative, 4}, + {field_condition, 0}, + {field_consequence, 2}, + [237] = + {field_size, 2}, + [238] = + {field_body, 4}, + {field_captures, 0}, + {field_constraint, 2}, + {field_declarator, 3}, + {field_template_parameters, 1}, + [243] = + {field_declarator, 1}, + {field_default_value, 3}, + [245] = + {field_alternative, 4}, + {field_condition, 1}, + [247] = + {field_declarator, 3}, + {field_declarator, 4, .inherited = true}, + {field_type, 2}, + [250] = + {field_arguments, 5}, + {field_declarator, 4}, + {field_placement, 2}, + {field_type, 3}, + [254] = + {field_declarator, 1}, + {field_default_value, 2}, + {field_type, 0, .inherited = true}, + [257] = + {field_body, 5}, + {field_name, 2}, + [259] = + {field_body, 5}, + {field_name, 3}, + [261] = + {field_body, 5}, + [262] = + {field_declarator, 1}, + {field_type, 0, .inherited = true}, + {field_value, 3}, + [265] = + {field_alternative, 5}, + {field_condition, 2}, + {field_consequence, 3}, + [268] = + {field_body, 5}, + {field_initializer, 2}, + [270] = + {field_default_type, 3}, + {field_name, 1}, + [272] = + {field_declarator, 1}, + {field_default_value, 3}, + {field_type, 0, .inherited = true}, + [275] = + {field_declarator, 1}, + {field_declarator, 2, .inherited = true}, + {field_default_value, 3}, + {field_type, 0, .inherited = true}, + [279] = + {field_body, 6}, + {field_name, 3}, + [281] = + {field_body, 6}, + {field_update, 4}, + [283] = + {field_body, 6}, + {field_condition, 3}, + [285] = + {field_body, 6}, + {field_initializer, 2}, + {field_update, 4}, + [288] = + {field_body, 6}, + {field_condition, 3}, + {field_initializer, 2}, + [291] = + {field_body, 6}, + {field_initializer, 2}, + [293] = + {field_condition, 2}, + {field_message, 4}, + [295] = + {field_delimiter, 1}, + [296] = + {field_declarator, 1}, + {field_declarator, 2, .inherited = true}, + {field_default_value, 4}, + {field_type, 0, .inherited = true}, + [300] = + {field_body, 7}, + {field_condition, 3}, + {field_update, 5}, + [303] = + {field_body, 7}, + {field_condition, 3}, + {field_initializer, 2}, + {field_update, 5}, + [307] = + {field_body, 7}, + {field_declarator, 3}, + {field_right, 5}, + {field_type, 2, .inherited = true}, + [311] = + {field_body, 7}, + {field_initializer, 2}, + {field_update, 5}, + [314] = + {field_body, 7}, + {field_condition, 4}, + {field_initializer, 2}, + [317] = + {field_body, 8}, + {field_condition, 4}, + {field_initializer, 2}, + {field_update, 6}, + [321] = + {field_body, 8}, + {field_declarator, 4}, + {field_initializer, 2}, + {field_right, 6}, + {field_type, 3, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = alias_sym_type_identifier, + }, + [11] = { + [0] = alias_sym_namespace_identifier, + }, + [12] = { + [0] = alias_sym_type_identifier, + }, + [28] = { + [1] = alias_sym_type_identifier, + }, + [29] = { + [1] = alias_sym_type_identifier, + }, + [43] = { + [1] = alias_sym_statement_identifier, + }, + [45] = { + [0] = alias_sym_statement_identifier, + }, + [52] = { + [0] = alias_sym_simple_requirement, + }, + [59] = { + [2] = alias_sym_field_identifier, + }, + [78] = { + [1] = alias_sym_type_identifier, + }, + [81] = { + [0] = alias_sym_field_identifier, + }, + [86] = { + [1] = alias_sym_field_identifier, + }, + [87] = { + [1] = alias_sym_type_identifier, + }, + [96] = { + [0] = alias_sym_field_identifier, + }, + [97] = { + [1] = alias_sym_field_identifier, + }, + [126] = { + [2] = alias_sym_type_identifier, + }, + [130] = { + [1] = alias_sym_type_identifier, + }, + [150] = { + [1] = alias_sym_type_identifier, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym_expression_statement, 2, + sym_expression_statement, + alias_sym_simple_requirement, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 2, + [8] = 2, + [9] = 2, + [10] = 10, + [11] = 11, + [12] = 10, + [13] = 11, + [14] = 14, + [15] = 15, + [16] = 14, + [17] = 14, + [18] = 10, + [19] = 14, + [20] = 11, + [21] = 21, + [22] = 15, + [23] = 10, + [24] = 11, + [25] = 25, + [26] = 15, + [27] = 15, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 29, + [32] = 29, + [33] = 33, + [34] = 29, + [35] = 33, + [36] = 29, + [37] = 33, + [38] = 38, + [39] = 33, + [40] = 29, + [41] = 29, + [42] = 33, + [43] = 33, + [44] = 44, + [45] = 33, + [46] = 30, + [47] = 29, + [48] = 33, + [49] = 49, + [50] = 28, + [51] = 33, + [52] = 29, + [53] = 29, + [54] = 29, + [55] = 28, + [56] = 33, + [57] = 33, + [58] = 29, + [59] = 29, + [60] = 33, + [61] = 61, + [62] = 33, + [63] = 44, + [64] = 33, + [65] = 44, + [66] = 29, + [67] = 30, + [68] = 29, + [69] = 44, + [70] = 30, + [71] = 33, + [72] = 28, + [73] = 33, + [74] = 29, + [75] = 29, + [76] = 33, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 78, + [83] = 77, + [84] = 81, + [85] = 79, + [86] = 77, + [87] = 80, + [88] = 77, + [89] = 78, + [90] = 80, + [91] = 81, + [92] = 81, + [93] = 79, + [94] = 79, + [95] = 78, + [96] = 80, + [97] = 81, + [98] = 78, + [99] = 79, + [100] = 80, + [101] = 77, + [102] = 102, + [103] = 103, + [104] = 103, + [105] = 103, + [106] = 103, + [107] = 103, + [108] = 103, + [109] = 109, + [110] = 109, + [111] = 109, + [112] = 109, + [113] = 109, + [114] = 109, + [115] = 115, + [116] = 116, + [117] = 116, + [118] = 116, + [119] = 116, + [120] = 120, + [121] = 121, + [122] = 121, + [123] = 123, + [124] = 124, + [125] = 123, + [126] = 126, + [127] = 127, + [128] = 124, + [129] = 129, + [130] = 127, + [131] = 131, + [132] = 121, + [133] = 129, + [134] = 127, + [135] = 123, + [136] = 124, + [137] = 129, + [138] = 121, + [139] = 121, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 141, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 142, + [161] = 145, + [162] = 162, + [163] = 143, + [164] = 164, + [165] = 165, + [166] = 144, + [167] = 159, + [168] = 147, + [169] = 142, + [170] = 148, + [171] = 171, + [172] = 149, + [173] = 165, + [174] = 171, + [175] = 175, + [176] = 150, + [177] = 151, + [178] = 178, + [179] = 141, + [180] = 153, + [181] = 146, + [182] = 157, + [183] = 158, + [184] = 159, + [185] = 142, + [186] = 164, + [187] = 154, + [188] = 155, + [189] = 156, + [190] = 155, + [191] = 154, + [192] = 156, + [193] = 165, + [194] = 147, + [195] = 171, + [196] = 145, + [197] = 165, + [198] = 144, + [199] = 143, + [200] = 175, + [201] = 171, + [202] = 162, + [203] = 178, + [204] = 146, + [205] = 148, + [206] = 149, + [207] = 150, + [208] = 151, + [209] = 141, + [210] = 153, + [211] = 157, + [212] = 158, + [213] = 159, + [214] = 164, + [215] = 164, + [216] = 162, + [217] = 159, + [218] = 158, + [219] = 157, + [220] = 156, + [221] = 155, + [222] = 154, + [223] = 175, + [224] = 146, + [225] = 147, + [226] = 145, + [227] = 144, + [228] = 143, + [229] = 162, + [230] = 178, + [231] = 148, + [232] = 149, + [233] = 150, + [234] = 151, + [235] = 153, + [236] = 157, + [237] = 158, + [238] = 159, + [239] = 142, + [240] = 153, + [241] = 141, + [242] = 151, + [243] = 150, + [244] = 149, + [245] = 165, + [246] = 171, + [247] = 146, + [248] = 175, + [249] = 148, + [250] = 162, + [251] = 143, + [252] = 144, + [253] = 178, + [254] = 145, + [255] = 175, + [256] = 147, + [257] = 178, + [258] = 164, + [259] = 146, + [260] = 154, + [261] = 155, + [262] = 156, + [263] = 263, + [264] = 164, + [265] = 175, + [266] = 171, + [267] = 165, + [268] = 263, + [269] = 156, + [270] = 155, + [271] = 154, + [272] = 147, + [273] = 145, + [274] = 144, + [275] = 263, + [276] = 143, + [277] = 162, + [278] = 263, + [279] = 142, + [280] = 148, + [281] = 263, + [282] = 149, + [283] = 150, + [284] = 151, + [285] = 141, + [286] = 153, + [287] = 157, + [288] = 158, + [289] = 178, + [290] = 290, + [291] = 291, + [292] = 291, + [293] = 140, + [294] = 290, + [295] = 290, + [296] = 291, + [297] = 291, + [298] = 290, + [299] = 299, + [300] = 291, + [301] = 290, + [302] = 140, + [303] = 303, + [304] = 304, + [305] = 291, + [306] = 306, + [307] = 291, + [308] = 290, + [309] = 291, + [310] = 290, + [311] = 290, + [312] = 291, + [313] = 290, + [314] = 314, + [315] = 315, + [316] = 314, + [317] = 315, + [318] = 318, + [319] = 314, + [320] = 315, + [321] = 314, + [322] = 314, + [323] = 315, + [324] = 314, + [325] = 314, + [326] = 315, + [327] = 314, + [328] = 315, + [329] = 315, + [330] = 330, + [331] = 315, + [332] = 315, + [333] = 314, + [334] = 334, + [335] = 335, + [336] = 318, + [337] = 330, + [338] = 330, + [339] = 306, + [340] = 340, + [341] = 318, + [342] = 330, + [343] = 303, + [344] = 318, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 378, + [384] = 384, + [385] = 385, + [386] = 378, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 334, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 378, + [402] = 335, + [403] = 403, + [404] = 378, + [405] = 405, + [406] = 378, + [407] = 407, + [408] = 378, + [409] = 378, + [410] = 410, + [411] = 378, + [412] = 412, + [413] = 413, + [414] = 378, + [415] = 415, + [416] = 334, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 378, + [421] = 421, + [422] = 335, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 378, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 378, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 334, + [447] = 447, + [448] = 448, + [449] = 378, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 378, + [463] = 463, + [464] = 378, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 335, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 306, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 340, + [522] = 306, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 303, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 340, + [536] = 303, + [537] = 537, + [538] = 340, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 366, + [546] = 441, + [547] = 472, + [548] = 478, + [549] = 480, + [550] = 476, + [551] = 475, + [552] = 474, + [553] = 467, + [554] = 465, + [555] = 458, + [556] = 450, + [557] = 447, + [558] = 445, + [559] = 443, + [560] = 441, + [561] = 481, + [562] = 479, + [563] = 439, + [564] = 473, + [565] = 437, + [566] = 434, + [567] = 463, + [568] = 430, + [569] = 427, + [570] = 424, + [571] = 454, + [572] = 421, + [573] = 347, + [574] = 348, + [575] = 349, + [576] = 469, + [577] = 468, + [578] = 350, + [579] = 460, + [580] = 351, + [581] = 352, + [582] = 353, + [583] = 354, + [584] = 355, + [585] = 356, + [586] = 357, + [587] = 358, + [588] = 359, + [589] = 360, + [590] = 361, + [591] = 362, + [592] = 363, + [593] = 364, + [594] = 365, + [595] = 461, + [596] = 367, + [597] = 368, + [598] = 466, + [599] = 369, + [600] = 370, + [601] = 371, + [602] = 372, + [603] = 373, + [604] = 374, + [605] = 461, + [606] = 375, + [607] = 376, + [608] = 377, + [609] = 379, + [610] = 380, + [611] = 381, + [612] = 382, + [613] = 384, + [614] = 385, + [615] = 387, + [616] = 388, + [617] = 389, + [618] = 391, + [619] = 392, + [620] = 393, + [621] = 394, + [622] = 395, + [623] = 484, + [624] = 483, + [625] = 396, + [626] = 459, + [627] = 456, + [628] = 405, + [629] = 451, + [630] = 407, + [631] = 482, + [632] = 481, + [633] = 345, + [634] = 440, + [635] = 479, + [636] = 438, + [637] = 473, + [638] = 412, + [639] = 413, + [640] = 436, + [641] = 431, + [642] = 469, + [643] = 468, + [644] = 345, + [645] = 432, + [646] = 433, + [647] = 426, + [648] = 455, + [649] = 428, + [650] = 346, + [651] = 448, + [652] = 435, + [653] = 425, + [654] = 461, + [655] = 466, + [656] = 468, + [657] = 469, + [658] = 473, + [659] = 423, + [660] = 479, + [661] = 346, + [662] = 345, + [663] = 481, + [664] = 482, + [665] = 483, + [666] = 484, + [667] = 418, + [668] = 458, + [669] = 417, + [670] = 415, + [671] = 457, + [672] = 470, + [673] = 410, + [674] = 403, + [675] = 457, + [676] = 455, + [677] = 454, + [678] = 453, + [679] = 452, + [680] = 444, + [681] = 407, + [682] = 405, + [683] = 453, + [684] = 452, + [685] = 400, + [686] = 399, + [687] = 435, + [688] = 419, + [689] = 397, + [690] = 398, + [691] = 399, + [692] = 444, + [693] = 400, + [694] = 403, + [695] = 410, + [696] = 415, + [697] = 417, + [698] = 418, + [699] = 423, + [700] = 425, + [701] = 428, + [702] = 431, + [703] = 436, + [704] = 438, + [705] = 440, + [706] = 451, + [707] = 456, + [708] = 459, + [709] = 460, + [710] = 463, + [711] = 471, + [712] = 472, + [713] = 478, + [714] = 480, + [715] = 447, + [716] = 476, + [717] = 475, + [718] = 474, + [719] = 467, + [720] = 465, + [721] = 398, + [722] = 445, + [723] = 443, + [724] = 471, + [725] = 439, + [726] = 437, + [727] = 434, + [728] = 430, + [729] = 427, + [730] = 424, + [731] = 421, + [732] = 347, + [733] = 348, + [734] = 349, + [735] = 397, + [736] = 350, + [737] = 351, + [738] = 352, + [739] = 353, + [740] = 354, + [741] = 355, + [742] = 356, + [743] = 357, + [744] = 358, + [745] = 419, + [746] = 359, + [747] = 360, + [748] = 361, + [749] = 362, + [750] = 363, + [751] = 482, + [752] = 483, + [753] = 364, + [754] = 365, + [755] = 448, + [756] = 366, + [757] = 367, + [758] = 484, + [759] = 759, + [760] = 368, + [761] = 369, + [762] = 370, + [763] = 371, + [764] = 372, + [765] = 373, + [766] = 470, + [767] = 374, + [768] = 375, + [769] = 376, + [770] = 377, + [771] = 379, + [772] = 380, + [773] = 381, + [774] = 382, + [775] = 384, + [776] = 385, + [777] = 759, + [778] = 426, + [779] = 387, + [780] = 388, + [781] = 389, + [782] = 391, + [783] = 392, + [784] = 395, + [785] = 394, + [786] = 393, + [787] = 392, + [788] = 393, + [789] = 391, + [790] = 455, + [791] = 394, + [792] = 395, + [793] = 389, + [794] = 388, + [795] = 426, + [796] = 387, + [797] = 454, + [798] = 385, + [799] = 396, + [800] = 384, + [801] = 382, + [802] = 381, + [803] = 457, + [804] = 380, + [805] = 379, + [806] = 377, + [807] = 376, + [808] = 375, + [809] = 374, + [810] = 373, + [811] = 372, + [812] = 371, + [813] = 432, + [814] = 433, + [815] = 370, + [816] = 369, + [817] = 450, + [818] = 368, + [819] = 367, + [820] = 366, + [821] = 365, + [822] = 364, + [823] = 363, + [824] = 362, + [825] = 361, + [826] = 405, + [827] = 360, + [828] = 407, + [829] = 453, + [830] = 359, + [831] = 358, + [832] = 357, + [833] = 356, + [834] = 355, + [835] = 354, + [836] = 353, + [837] = 352, + [838] = 351, + [839] = 350, + [840] = 448, + [841] = 349, + [842] = 348, + [843] = 347, + [844] = 421, + [845] = 424, + [846] = 427, + [847] = 430, + [848] = 434, + [849] = 437, + [850] = 452, + [851] = 439, + [852] = 346, + [853] = 441, + [854] = 443, + [855] = 445, + [856] = 412, + [857] = 413, + [858] = 413, + [859] = 412, + [860] = 447, + [861] = 450, + [862] = 458, + [863] = 465, + [864] = 467, + [865] = 474, + [866] = 475, + [867] = 476, + [868] = 480, + [869] = 478, + [870] = 472, + [871] = 471, + [872] = 463, + [873] = 460, + [874] = 396, + [875] = 459, + [876] = 444, + [877] = 456, + [878] = 435, + [879] = 451, + [880] = 440, + [881] = 438, + [882] = 436, + [883] = 431, + [884] = 428, + [885] = 425, + [886] = 423, + [887] = 418, + [888] = 466, + [889] = 417, + [890] = 415, + [891] = 410, + [892] = 403, + [893] = 400, + [894] = 399, + [895] = 432, + [896] = 433, + [897] = 426, + [898] = 398, + [899] = 397, + [900] = 419, + [901] = 470, + [902] = 516, + [903] = 510, + [904] = 529, + [905] = 499, + [906] = 498, + [907] = 907, + [908] = 544, + [909] = 507, + [910] = 512, + [911] = 485, + [912] = 511, + [913] = 510, + [914] = 517, + [915] = 543, + [916] = 493, + [917] = 492, + [918] = 491, + [919] = 518, + [920] = 497, + [921] = 513, + [922] = 502, + [923] = 504, + [924] = 907, + [925] = 541, + [926] = 505, + [927] = 537, + [928] = 516, + [929] = 524, + [930] = 509, + [931] = 508, + [932] = 505, + [933] = 518, + [934] = 504, + [935] = 506, + [936] = 503, + [937] = 486, + [938] = 524, + [939] = 488, + [940] = 501, + [941] = 505, + [942] = 504, + [943] = 502, + [944] = 500, + [945] = 486, + [946] = 525, + [947] = 527, + [948] = 502, + [949] = 529, + [950] = 499, + [951] = 528, + [952] = 519, + [953] = 523, + [954] = 498, + [955] = 534, + [956] = 530, + [957] = 533, + [958] = 531, + [959] = 532, + [960] = 543, + [961] = 493, + [962] = 492, + [963] = 523, + [964] = 519, + [965] = 491, + [966] = 542, + [967] = 513, + [968] = 488, + [969] = 525, + [970] = 527, + [971] = 517, + [972] = 507, + [973] = 500, + [974] = 540, + [975] = 516, + [976] = 520, + [977] = 542, + [978] = 514, + [979] = 487, + [980] = 490, + [981] = 514, + [982] = 494, + [983] = 493, + [984] = 495, + [985] = 491, + [986] = 496, + [987] = 497, + [988] = 528, + [989] = 501, + [990] = 503, + [991] = 500, + [992] = 501, + [993] = 503, + [994] = 506, + [995] = 508, + [996] = 539, + [997] = 509, + [998] = 512, + [999] = 488, + [1000] = 544, + [1001] = 511, + [1002] = 541, + [1003] = 540, + [1004] = 512, + [1005] = 539, + [1006] = 537, + [1007] = 511, + [1008] = 530, + [1009] = 486, + [1010] = 510, + [1011] = 529, + [1012] = 506, + [1013] = 508, + [1014] = 494, + [1015] = 509, + [1016] = 531, + [1017] = 496, + [1018] = 532, + [1019] = 533, + [1020] = 495, + [1021] = 507, + [1022] = 534, + [1023] = 485, + [1024] = 517, + [1025] = 518, + [1026] = 519, + [1027] = 523, + [1028] = 525, + [1029] = 527, + [1030] = 485, + [1031] = 528, + [1032] = 530, + [1033] = 531, + [1034] = 532, + [1035] = 533, + [1036] = 520, + [1037] = 514, + [1038] = 534, + [1039] = 490, + [1040] = 487, + [1041] = 487, + [1042] = 524, + [1043] = 490, + [1044] = 494, + [1045] = 520, + [1046] = 497, + [1047] = 537, + [1048] = 539, + [1049] = 495, + [1050] = 496, + [1051] = 540, + [1052] = 541, + [1053] = 542, + [1054] = 544, + [1055] = 543, + [1056] = 513, + [1057] = 499, + [1058] = 492, + [1059] = 498, + [1060] = 121, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 1061, + [1065] = 1062, + [1066] = 1063, + [1067] = 1061, + [1068] = 1063, + [1069] = 1061, + [1070] = 1063, + [1071] = 1062, + [1072] = 1063, + [1073] = 1061, + [1074] = 1062, + [1075] = 1063, + [1076] = 1061, + [1077] = 1062, + [1078] = 1062, + [1079] = 121, + [1080] = 121, + [1081] = 121, + [1082] = 1082, + [1083] = 1082, + [1084] = 1082, + [1085] = 1082, + [1086] = 1082, + [1087] = 1082, + [1088] = 1082, + [1089] = 1089, + [1090] = 1089, + [1091] = 1089, + [1092] = 1089, + [1093] = 1089, + [1094] = 1089, + [1095] = 1089, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1098, + [1100] = 1100, + [1101] = 330, + [1102] = 318, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 340, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 303, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 306, + [1118] = 1113, + [1119] = 1109, + [1120] = 1106, + [1121] = 1110, + [1122] = 415, + [1123] = 394, + [1124] = 445, + [1125] = 447, + [1126] = 450, + [1127] = 458, + [1128] = 465, + [1129] = 473, + [1130] = 467, + [1131] = 474, + [1132] = 475, + [1133] = 481, + [1134] = 1134, + [1135] = 482, + [1136] = 476, + [1137] = 480, + [1138] = 478, + [1139] = 472, + [1140] = 435, + [1141] = 368, + [1142] = 471, + [1143] = 463, + [1144] = 460, + [1145] = 459, + [1146] = 456, + [1147] = 367, + [1148] = 371, + [1149] = 372, + [1150] = 451, + [1151] = 466, + [1152] = 373, + [1153] = 440, + [1154] = 438, + [1155] = 452, + [1156] = 374, + [1157] = 461, + [1158] = 448, + [1159] = 375, + [1160] = 376, + [1161] = 377, + [1162] = 436, + [1163] = 431, + [1164] = 428, + [1165] = 425, + [1166] = 379, + [1167] = 423, + [1168] = 418, + [1169] = 417, + [1170] = 484, + [1171] = 410, + [1172] = 380, + [1173] = 469, + [1174] = 366, + [1175] = 403, + [1176] = 381, + [1177] = 382, + [1178] = 384, + [1179] = 385, + [1180] = 400, + [1181] = 399, + [1182] = 398, + [1183] = 397, + [1184] = 419, + [1185] = 369, + [1186] = 365, + [1187] = 364, + [1188] = 387, + [1189] = 441, + [1190] = 439, + [1191] = 388, + [1192] = 389, + [1193] = 391, + [1194] = 392, + [1195] = 470, + [1196] = 393, + [1197] = 437, + [1198] = 1198, + [1199] = 1096, + [1200] = 345, + [1201] = 443, + [1202] = 395, + [1203] = 396, + [1204] = 1134, + [1205] = 1198, + [1206] = 434, + [1207] = 346, + [1208] = 363, + [1209] = 468, + [1210] = 1134, + [1211] = 362, + [1212] = 405, + [1213] = 433, + [1214] = 453, + [1215] = 430, + [1216] = 407, + [1217] = 432, + [1218] = 412, + [1219] = 413, + [1220] = 1198, + [1221] = 427, + [1222] = 1134, + [1223] = 361, + [1224] = 1198, + [1225] = 424, + [1226] = 1097, + [1227] = 457, + [1228] = 370, + [1229] = 455, + [1230] = 1198, + [1231] = 1198, + [1232] = 479, + [1233] = 1134, + [1234] = 1234, + [1235] = 1198, + [1236] = 1198, + [1237] = 1134, + [1238] = 1198, + [1239] = 483, + [1240] = 1134, + [1241] = 421, + [1242] = 347, + [1243] = 348, + [1244] = 1100, + [1245] = 349, + [1246] = 1134, + [1247] = 360, + [1248] = 359, + [1249] = 350, + [1250] = 351, + [1251] = 358, + [1252] = 454, + [1253] = 352, + [1254] = 353, + [1255] = 354, + [1256] = 444, + [1257] = 355, + [1258] = 356, + [1259] = 357, + [1260] = 1134, + [1261] = 1261, + [1262] = 1261, + [1263] = 1261, + [1264] = 1261, + [1265] = 1261, + [1266] = 1261, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1269, + [1271] = 1269, + [1272] = 1268, + [1273] = 1269, + [1274] = 1268, + [1275] = 1268, + [1276] = 1268, + [1277] = 1269, + [1278] = 1269, + [1279] = 1268, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1281, + [1284] = 1281, + [1285] = 1282, + [1286] = 1282, + [1287] = 1281, + [1288] = 1282, + [1289] = 1282, + [1290] = 1282, + [1291] = 1282, + [1292] = 1282, + [1293] = 1281, + [1294] = 1282, + [1295] = 1295, + [1296] = 1295, + [1297] = 1297, + [1298] = 1295, + [1299] = 1299, + [1300] = 1297, + [1301] = 1295, + [1302] = 1302, + [1303] = 1303, + [1304] = 1297, + [1305] = 1305, + [1306] = 1302, + [1307] = 1295, + [1308] = 1303, + [1309] = 1303, + [1310] = 1297, + [1311] = 1297, + [1312] = 1295, + [1313] = 1295, + [1314] = 1297, + [1315] = 1302, + [1316] = 1305, + [1317] = 1302, + [1318] = 1318, + [1319] = 1303, + [1320] = 1305, + [1321] = 1305, + [1322] = 1297, + [1323] = 1318, + [1324] = 1305, + [1325] = 1302, + [1326] = 1305, + [1327] = 1297, + [1328] = 1305, + [1329] = 1305, + [1330] = 1303, + [1331] = 1295, + [1332] = 1318, + [1333] = 1303, + [1334] = 1305, + [1335] = 1303, + [1336] = 1302, + [1337] = 1337, + [1338] = 1303, + [1339] = 1295, + [1340] = 1302, + [1341] = 1303, + [1342] = 1342, + [1343] = 1297, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1348, + [1350] = 1348, + [1351] = 1351, + [1352] = 1345, + [1353] = 1348, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1351, + [1360] = 1360, + [1361] = 1345, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1357, + [1368] = 1354, + [1369] = 1347, + [1370] = 1358, + [1371] = 1355, + [1372] = 1362, + [1373] = 1356, + [1374] = 1362, + [1375] = 1347, + [1376] = 1357, + [1377] = 1356, + [1378] = 1348, + [1379] = 1348, + [1380] = 1380, + [1381] = 1357, + [1382] = 1345, + [1383] = 1356, + [1384] = 1355, + [1385] = 1355, + [1386] = 1354, + [1387] = 1363, + [1388] = 1388, + [1389] = 1362, + [1390] = 1354, + [1391] = 1363, + [1392] = 1357, + [1393] = 1348, + [1394] = 1357, + [1395] = 1351, + [1396] = 1345, + [1397] = 1363, + [1398] = 1346, + [1399] = 1356, + [1400] = 1400, + [1401] = 1348, + [1402] = 1347, + [1403] = 1363, + [1404] = 1355, + [1405] = 1354, + [1406] = 1363, + [1407] = 1362, + [1408] = 1380, + [1409] = 1355, + [1410] = 1351, + [1411] = 1354, + [1412] = 1380, + [1413] = 1348, + [1414] = 1345, + [1415] = 1362, + [1416] = 1356, + [1417] = 1358, + [1418] = 1351, + [1419] = 1351, + [1420] = 1346, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1423, + [1428] = 1428, + [1429] = 1429, + [1430] = 1430, + [1431] = 1431, + [1432] = 1429, + [1433] = 1433, + [1434] = 1434, + [1435] = 1424, + [1436] = 1436, + [1437] = 1437, + [1438] = 1438, + [1439] = 1424, + [1440] = 1423, + [1441] = 1423, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1423, + [1446] = 1434, + [1447] = 1436, + [1448] = 1436, + [1449] = 1449, + [1450] = 1424, + [1451] = 1451, + [1452] = 1452, + [1453] = 1449, + [1454] = 1443, + [1455] = 1436, + [1456] = 1456, + [1457] = 1433, + [1458] = 1458, + [1459] = 1444, + [1460] = 1424, + [1461] = 1449, + [1462] = 1462, + [1463] = 1463, + [1464] = 1424, + [1465] = 1424, + [1466] = 1466, + [1467] = 1467, + [1468] = 1423, + [1469] = 1469, + [1470] = 1436, + [1471] = 1444, + [1472] = 1442, + [1473] = 1424, + [1474] = 1474, + [1475] = 1423, + [1476] = 1476, + [1477] = 1477, + [1478] = 1449, + [1479] = 1423, + [1480] = 1424, + [1481] = 1481, + [1482] = 1449, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1423, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1421, + [1496] = 1494, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1503, + [1506] = 1506, + [1507] = 1507, + [1508] = 1506, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1510, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1516, + [1530] = 1530, + [1531] = 1521, + [1532] = 1520, + [1533] = 1533, + [1534] = 1492, + [1535] = 1516, + [1536] = 1512, + [1537] = 1537, + [1538] = 1513, + [1539] = 1515, + [1540] = 1527, + [1541] = 1530, + [1542] = 1492, + [1543] = 1543, + [1544] = 1544, + [1545] = 1518, + [1546] = 1511, + [1547] = 1528, + [1548] = 1498, + [1549] = 1516, + [1550] = 1526, + [1551] = 1516, + [1552] = 1537, + [1553] = 1553, + [1554] = 1506, + [1555] = 1522, + [1556] = 1521, + [1557] = 1533, + [1558] = 1513, + [1559] = 1527, + [1560] = 1530, + [1561] = 1492, + [1562] = 1537, + [1563] = 1518, + [1564] = 1511, + [1565] = 1501, + [1566] = 1553, + [1567] = 1515, + [1568] = 1503, + [1569] = 1569, + [1570] = 1543, + [1571] = 1494, + [1572] = 1522, + [1573] = 1533, + [1574] = 1513, + [1575] = 1516, + [1576] = 1527, + [1577] = 1530, + [1578] = 1553, + [1579] = 1492, + [1580] = 1512, + [1581] = 1537, + [1582] = 1512, + [1583] = 1553, + [1584] = 1512, + [1585] = 1494, + [1586] = 1477, + [1587] = 1528, + [1588] = 1569, + [1589] = 1528, + [1590] = 1543, + [1591] = 1569, + [1592] = 1515, + [1593] = 1511, + [1594] = 1543, + [1595] = 1595, + [1596] = 1553, + [1597] = 1526, + [1598] = 1512, + [1599] = 1510, + [1600] = 1600, + [1601] = 1528, + [1602] = 1521, + [1603] = 1491, + [1604] = 1509, + [1605] = 1522, + [1606] = 1526, + [1607] = 1511, + [1608] = 1528, + [1609] = 1553, + [1610] = 1553, + [1611] = 1533, + [1612] = 1521, + [1613] = 1522, + [1614] = 1537, + [1615] = 1526, + [1616] = 1543, + [1617] = 1492, + [1618] = 1530, + [1619] = 1527, + [1620] = 1513, + [1621] = 1533, + [1622] = 1451, + [1623] = 1569, + [1624] = 1624, + [1625] = 1521, + [1626] = 1518, + [1627] = 1511, + [1628] = 1501, + [1629] = 1510, + [1630] = 1528, + [1631] = 1518, + [1632] = 1511, + [1633] = 1537, + [1634] = 1510, + [1635] = 1492, + [1636] = 1512, + [1637] = 1498, + [1638] = 1516, + [1639] = 1530, + [1640] = 1527, + [1641] = 1500, + [1642] = 1518, + [1643] = 1507, + [1644] = 1501, + [1645] = 1517, + [1646] = 1519, + [1647] = 1537, + [1648] = 1520, + [1649] = 1512, + [1650] = 1533, + [1651] = 1526, + [1652] = 1526, + [1653] = 1510, + [1654] = 1509, + [1655] = 1513, + [1656] = 1491, + [1657] = 1527, + [1658] = 1658, + [1659] = 1530, + [1660] = 1515, + [1661] = 1491, + [1662] = 1498, + [1663] = 1492, + [1664] = 1537, + [1665] = 1492, + [1666] = 1501, + [1667] = 1494, + [1668] = 1511, + [1669] = 1503, + [1670] = 1527, + [1671] = 1518, + [1672] = 1506, + [1673] = 1509, + [1674] = 1543, + [1675] = 1510, + [1676] = 1521, + [1677] = 1569, + [1678] = 1421, + [1679] = 1514, + [1680] = 1680, + [1681] = 1658, + [1682] = 1515, + [1683] = 1506, + [1684] = 1421, + [1685] = 1513, + [1686] = 1513, + [1687] = 1522, + [1688] = 1503, + [1689] = 1501, + [1690] = 1500, + [1691] = 1691, + [1692] = 1506, + [1693] = 1514, + [1694] = 1533, + [1695] = 1521, + [1696] = 1506, + [1697] = 1522, + [1698] = 1494, + [1699] = 1512, + [1700] = 1520, + [1701] = 1503, + [1702] = 1494, + [1703] = 1504, + [1704] = 1520, + [1705] = 1506, + [1706] = 1501, + [1707] = 1503, + [1708] = 1500, + [1709] = 1709, + [1710] = 1494, + [1711] = 1477, + [1712] = 1533, + [1713] = 1569, + [1714] = 1506, + [1715] = 1502, + [1716] = 1499, + [1717] = 1498, + [1718] = 1510, + [1719] = 1518, + [1720] = 1500, + [1721] = 1522, + [1722] = 1501, + [1723] = 1544, + [1724] = 1501, + [1725] = 1553, + [1726] = 1510, + [1727] = 1727, + [1728] = 1491, + [1729] = 1543, + [1730] = 1526, + [1731] = 1503, + [1732] = 1553, + [1733] = 1494, + [1734] = 1530, + [1735] = 1511, + [1736] = 1503, + [1737] = 1518, + [1738] = 1515, + [1739] = 1537, + [1740] = 1514, + [1741] = 1530, + [1742] = 1527, + [1743] = 1513, + [1744] = 1624, + [1745] = 1533, + [1746] = 1746, + [1747] = 1521, + [1748] = 1526, + [1749] = 1522, + [1750] = 1477, + [1751] = 1524, + [1752] = 1524, + [1753] = 1451, + [1754] = 1524, + [1755] = 1517, + [1756] = 1502, + [1757] = 1499, + [1758] = 1519, + [1759] = 1507, + [1760] = 1524, + [1761] = 1504, + [1762] = 1658, + [1763] = 1763, + [1764] = 1763, + [1765] = 539, + [1766] = 1766, + [1767] = 1517, + [1768] = 1507, + [1769] = 1504, + [1770] = 1519, + [1771] = 1499, + [1772] = 1658, + [1773] = 1502, + [1774] = 1774, + [1775] = 1774, + [1776] = 1774, + [1777] = 1777, + [1778] = 1774, + [1779] = 1779, + [1780] = 1780, + [1781] = 1658, + [1782] = 1782, + [1783] = 1782, + [1784] = 1507, + [1785] = 1504, + [1786] = 1502, + [1787] = 1499, + [1788] = 1517, + [1789] = 1519, + [1790] = 1782, + [1791] = 1791, + [1792] = 1777, + [1793] = 1779, + [1794] = 1477, + [1795] = 1780, + [1796] = 1658, + [1797] = 1504, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1451, + [1802] = 1517, + [1803] = 1507, + [1804] = 1477, + [1805] = 1799, + [1806] = 1806, + [1807] = 1807, + [1808] = 1519, + [1809] = 1502, + [1810] = 1499, + [1811] = 1524, + [1812] = 1502, + [1813] = 1813, + [1814] = 1658, + [1815] = 1517, + [1816] = 1519, + [1817] = 1817, + [1818] = 1777, + [1819] = 1499, + [1820] = 1780, + [1821] = 1504, + [1822] = 1524, + [1823] = 1779, + [1824] = 1507, + [1825] = 1825, + [1826] = 1451, + [1827] = 1524, + [1828] = 1524, + [1829] = 1807, + [1830] = 1798, + [1831] = 1800, + [1832] = 1779, + [1833] = 1777, + [1834] = 1780, + [1835] = 1477, + [1836] = 1806, + [1837] = 1524, + [1838] = 1524, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1825, + [1845] = 1845, + [1846] = 1817, + [1847] = 1524, + [1848] = 1848, + [1849] = 1849, + [1850] = 1850, + [1851] = 1841, + [1852] = 1852, + [1853] = 1853, + [1854] = 1807, + [1855] = 1852, + [1856] = 1524, + [1857] = 1848, + [1858] = 1843, + [1859] = 1839, + [1860] = 1860, + [1861] = 1806, + [1862] = 1862, + [1863] = 1845, + [1864] = 1864, + [1865] = 1865, + [1866] = 1850, + [1867] = 1867, + [1868] = 1798, + [1869] = 1869, + [1870] = 1870, + [1871] = 1800, + [1872] = 1849, + [1873] = 1873, + [1874] = 1840, + [1875] = 1875, + [1876] = 1842, + [1877] = 1817, + [1878] = 1878, + [1879] = 1864, + [1880] = 334, + [1881] = 1519, + [1882] = 1882, + [1883] = 1807, + [1884] = 1873, + [1885] = 1825, + [1886] = 1886, + [1887] = 1887, + [1888] = 1658, + [1889] = 1889, + [1890] = 1806, + [1891] = 1891, + [1892] = 335, + [1893] = 1499, + [1894] = 1504, + [1895] = 1502, + [1896] = 1800, + [1897] = 1517, + [1898] = 1507, + [1899] = 330, + [1900] = 1798, + [1901] = 318, + [1902] = 1902, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1825, + [1907] = 1907, + [1908] = 1908, + [1909] = 1825, + [1910] = 1875, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1852, + [1916] = 1916, + [1917] = 1817, + [1918] = 1918, + [1919] = 1869, + [1920] = 1865, + [1921] = 1921, + [1922] = 1922, + [1923] = 1882, + [1924] = 1924, + [1925] = 1925, + [1926] = 1850, + [1927] = 426, + [1928] = 1928, + [1929] = 1817, + [1930] = 1878, + [1931] = 1849, + [1932] = 1842, + [1933] = 1843, + [1934] = 1853, + [1935] = 1935, + [1936] = 1891, + [1937] = 1937, + [1938] = 1845, + [1939] = 1840, + [1940] = 1940, + [1941] = 1848, + [1942] = 1887, + [1943] = 1889, + [1944] = 1839, + [1945] = 1882, + [1946] = 1864, + [1947] = 1947, + [1948] = 1842, + [1949] = 1949, + [1950] = 318, + [1951] = 1878, + [1952] = 1952, + [1953] = 1953, + [1954] = 1889, + [1955] = 1952, + [1956] = 1882, + [1957] = 1957, + [1958] = 1845, + [1959] = 1840, + [1960] = 1952, + [1961] = 1961, + [1962] = 1952, + [1963] = 306, + [1964] = 1922, + [1965] = 1903, + [1966] = 318, + [1967] = 330, + [1968] = 1843, + [1969] = 1952, + [1970] = 334, + [1971] = 1952, + [1972] = 1887, + [1973] = 1852, + [1974] = 1848, + [1975] = 1850, + [1976] = 1839, + [1977] = 1849, + [1978] = 340, + [1979] = 1957, + [1980] = 1957, + [1981] = 335, + [1982] = 334, + [1983] = 335, + [1984] = 1957, + [1985] = 303, + [1986] = 1873, + [1987] = 1924, + [1988] = 1952, + [1989] = 330, + [1990] = 499, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 2005, + [2006] = 525, + [2007] = 1937, + [2008] = 1869, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 509, + [2018] = 508, + [2019] = 506, + [2020] = 2020, + [2021] = 503, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 501, + [2026] = 2026, + [2027] = 2027, + [2028] = 433, + [2029] = 2029, + [2030] = 432, + [2031] = 412, + [2032] = 2032, + [2033] = 540, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 1902, + [2039] = 505, + [2040] = 541, + [2041] = 1873, + [2042] = 500, + [2043] = 2043, + [2044] = 2043, + [2045] = 2043, + [2046] = 485, + [2047] = 2047, + [2048] = 413, + [2049] = 518, + [2050] = 2050, + [2051] = 2051, + [2052] = 2052, + [2053] = 426, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 497, + [2059] = 2043, + [2060] = 461, + [2061] = 2061, + [2062] = 496, + [2063] = 495, + [2064] = 466, + [2065] = 2065, + [2066] = 2066, + [2067] = 1875, + [2068] = 2068, + [2069] = 494, + [2070] = 1843, + [2071] = 2071, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 2043, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 539, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 519, + [2085] = 2085, + [2086] = 523, + [2087] = 2087, + [2088] = 527, + [2089] = 528, + [2090] = 530, + [2091] = 2091, + [2092] = 2092, + [2093] = 531, + [2094] = 514, + [2095] = 529, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 502, + [2102] = 504, + [2103] = 1864, + [2104] = 516, + [2105] = 1845, + [2106] = 1840, + [2107] = 2107, + [2108] = 1853, + [2109] = 2109, + [2110] = 2043, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 1842, + [2115] = 2115, + [2116] = 1848, + [2117] = 1849, + [2118] = 2055, + [2119] = 2055, + [2120] = 1839, + [2121] = 448, + [2122] = 1850, + [2123] = 2123, + [2124] = 2124, + [2125] = 1852, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2131, + [2132] = 426, + [2133] = 2133, + [2134] = 1865, + [2135] = 2135, + [2136] = 2055, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2143, + [2144] = 2144, + [2145] = 2055, + [2146] = 2146, + [2147] = 544, + [2148] = 2148, + [2149] = 542, + [2150] = 2150, + [2151] = 513, + [2152] = 1891, + [2153] = 2153, + [2154] = 492, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 2055, + [2161] = 396, + [2162] = 498, + [2163] = 524, + [2164] = 1477, + [2165] = 1903, + [2166] = 2055, + [2167] = 306, + [2168] = 1887, + [2169] = 1889, + [2170] = 2170, + [2171] = 306, + [2172] = 1903, + [2173] = 1853, + [2174] = 1869, + [2175] = 1524, + [2176] = 303, + [2177] = 2177, + [2178] = 2178, + [2179] = 1477, + [2180] = 2180, + [2181] = 2181, + [2182] = 1949, + [2183] = 1922, + [2184] = 1524, + [2185] = 1878, + [2186] = 1924, + [2187] = 2178, + [2188] = 2181, + [2189] = 1947, + [2190] = 340, + [2191] = 1891, + [2192] = 1875, + [2193] = 2181, + [2194] = 2181, + [2195] = 1953, + [2196] = 2196, + [2197] = 1961, + [2198] = 1865, + [2199] = 2199, + [2200] = 303, + [2201] = 2201, + [2202] = 2202, + [2203] = 2203, + [2204] = 340, + [2205] = 2133, + [2206] = 2076, + [2207] = 2129, + [2208] = 2056, + [2209] = 2057, + [2210] = 542, + [2211] = 2211, + [2212] = 2061, + [2213] = 513, + [2214] = 2083, + [2215] = 2158, + [2216] = 2065, + [2217] = 2077, + [2218] = 2066, + [2219] = 492, + [2220] = 2087, + [2221] = 2096, + [2222] = 2107, + [2223] = 2128, + [2224] = 2140, + [2225] = 2141, + [2226] = 2156, + [2227] = 2227, + [2228] = 2157, + [2229] = 2229, + [2230] = 2037, + [2231] = 448, + [2232] = 2100, + [2233] = 2068, + [2234] = 2111, + [2235] = 541, + [2236] = 2112, + [2237] = 2113, + [2238] = 2115, + [2239] = 2143, + [2240] = 2047, + [2241] = 2109, + [2242] = 1658, + [2243] = 2097, + [2244] = 485, + [2245] = 2099, + [2246] = 2153, + [2247] = 2138, + [2248] = 2229, + [2249] = 527, + [2250] = 2098, + [2251] = 1994, + [2252] = 2126, + [2253] = 2229, + [2254] = 1878, + [2255] = 529, + [2256] = 485, + [2257] = 2257, + [2258] = 495, + [2259] = 496, + [2260] = 2123, + [2261] = 544, + [2262] = 2130, + [2263] = 518, + [2264] = 514, + [2265] = 2010, + [2266] = 2011, + [2267] = 519, + [2268] = 523, + [2269] = 525, + [2270] = 396, + [2271] = 531, + [2272] = 1992, + [2273] = 2082, + [2274] = 1477, + [2275] = 498, + [2276] = 2131, + [2277] = 2081, + [2278] = 509, + [2279] = 2076, + [2280] = 499, + [2281] = 2054, + [2282] = 2074, + [2283] = 528, + [2284] = 1524, + [2285] = 2073, + [2286] = 1477, + [2287] = 525, + [2288] = 527, + [2289] = 2135, + [2290] = 528, + [2291] = 432, + [2292] = 2137, + [2293] = 2177, + [2294] = 508, + [2295] = 1993, + [2296] = 1995, + [2297] = 530, + [2298] = 531, + [2299] = 1997, + [2300] = 1996, + [2301] = 2001, + [2302] = 502, + [2303] = 2052, + [2304] = 2139, + [2305] = 506, + [2306] = 2142, + [2307] = 1889, + [2308] = 413, + [2309] = 412, + [2310] = 2124, + [2311] = 1887, + [2312] = 2129, + [2313] = 2127, + [2314] = 2126, + [2315] = 2315, + [2316] = 2051, + [2317] = 2150, + [2318] = 2005, + [2319] = 1817, + [2320] = 2050, + [2321] = 433, + [2322] = 2072, + [2323] = 504, + [2324] = 540, + [2325] = 505, + [2326] = 2155, + [2327] = 448, + [2328] = 2071, + [2329] = 2013, + [2330] = 2012, + [2331] = 2009, + [2332] = 2146, + [2333] = 523, + [2334] = 529, + [2335] = 524, + [2336] = 2148, + [2337] = 1519, + [2338] = 1517, + [2339] = 1507, + [2340] = 1924, + [2341] = 1825, + [2342] = 516, + [2343] = 1882, + [2344] = 503, + [2345] = 501, + [2346] = 2085, + [2347] = 1991, + [2348] = 500, + [2349] = 497, + [2350] = 1902, + [2351] = 496, + [2352] = 461, + [2353] = 495, + [2354] = 530, + [2355] = 2355, + [2356] = 466, + [2357] = 539, + [2358] = 2358, + [2359] = 2036, + [2360] = 1998, + [2361] = 2361, + [2362] = 396, + [2363] = 2229, + [2364] = 509, + [2365] = 519, + [2366] = 494, + [2367] = 1999, + [2368] = 2229, + [2369] = 2000, + [2370] = 508, + [2371] = 2079, + [2372] = 2372, + [2373] = 2229, + [2374] = 2374, + [2375] = 506, + [2376] = 466, + [2377] = 461, + [2378] = 503, + [2379] = 2178, + [2380] = 2000, + [2381] = 1999, + [2382] = 1998, + [2383] = 433, + [2384] = 501, + [2385] = 541, + [2386] = 2078, + [2387] = 1922, + [2388] = 2091, + [2389] = 2083, + [2390] = 2082, + [2391] = 2081, + [2392] = 1903, + [2393] = 2074, + [2394] = 2073, + [2395] = 2072, + [2396] = 2071, + [2397] = 514, + [2398] = 2004, + [2399] = 500, + [2400] = 2003, + [2401] = 432, + [2402] = 524, + [2403] = 2024, + [2404] = 2002, + [2405] = 497, + [2406] = 2014, + [2407] = 412, + [2408] = 1937, + [2409] = 505, + [2410] = 504, + [2411] = 2015, + [2412] = 2178, + [2413] = 2413, + [2414] = 2035, + [2415] = 2144, + [2416] = 2026, + [2417] = 1504, + [2418] = 1502, + [2419] = 1499, + [2420] = 502, + [2421] = 499, + [2422] = 1891, + [2423] = 413, + [2424] = 2085, + [2425] = 2016, + [2426] = 498, + [2427] = 518, + [2428] = 2020, + [2429] = 2315, + [2430] = 2034, + [2431] = 2001, + [2432] = 492, + [2433] = 2022, + [2434] = 544, + [2435] = 1996, + [2436] = 513, + [2437] = 2036, + [2438] = 2035, + [2439] = 2034, + [2440] = 2032, + [2441] = 2029, + [2442] = 2027, + [2443] = 2026, + [2444] = 2024, + [2445] = 2023, + [2446] = 539, + [2447] = 540, + [2448] = 2092, + [2449] = 2159, + [2450] = 2032, + [2451] = 1995, + [2452] = 2023, + [2453] = 2085, + [2454] = 516, + [2455] = 542, + [2456] = 2091, + [2457] = 494, + [2458] = 1993, + [2459] = 2029, + [2460] = 2027, + [2461] = 1992, + [2462] = 2127, + [2463] = 2011, + [2464] = 2464, + [2465] = 2010, + [2466] = 2466, + [2467] = 1947, + [2468] = 2257, + [2469] = 2469, + [2470] = 2470, + [2471] = 1907, + [2472] = 1902, + [2473] = 2473, + [2474] = 2474, + [2475] = 1839, + [2476] = 2476, + [2477] = 2477, + [2478] = 2478, + [2479] = 2479, + [2480] = 1953, + [2481] = 1842, + [2482] = 2482, + [2483] = 2483, + [2484] = 2484, + [2485] = 1949, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 2469, + [2492] = 1524, + [2493] = 2493, + [2494] = 1908, + [2495] = 1913, + [2496] = 2496, + [2497] = 303, + [2498] = 1935, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2372, + [2504] = 2180, + [2505] = 1840, + [2506] = 1845, + [2507] = 1843, + [2508] = 2469, + [2509] = 1916, + [2510] = 2510, + [2511] = 1928, + [2512] = 1918, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 1777, + [2520] = 1848, + [2521] = 2521, + [2522] = 2469, + [2523] = 2469, + [2524] = 2524, + [2525] = 1852, + [2526] = 2526, + [2527] = 2527, + [2528] = 1850, + [2529] = 1849, + [2530] = 1912, + [2531] = 2170, + [2532] = 1905, + [2533] = 1904, + [2534] = 2203, + [2535] = 2202, + [2536] = 2536, + [2537] = 1922, + [2538] = 2538, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2469, + [2550] = 2201, + [2551] = 1940, + [2552] = 2199, + [2553] = 1925, + [2554] = 2554, + [2555] = 2555, + [2556] = 2227, + [2557] = 2557, + [2558] = 2315, + [2559] = 2559, + [2560] = 2361, + [2561] = 1779, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 1937, + [2568] = 1780, + [2569] = 2569, + [2570] = 306, + [2571] = 1921, + [2572] = 1914, + [2573] = 1911, + [2574] = 2574, + [2575] = 1961, + [2576] = 1924, + [2577] = 2577, + [2578] = 2196, + [2579] = 2478, + [2580] = 2555, + [2581] = 2557, + [2582] = 2085, + [2583] = 2358, + [2584] = 2361, + [2585] = 1477, + [2586] = 2586, + [2587] = 2587, + [2588] = 2092, + [2589] = 2085, + [2590] = 1864, + [2591] = 2009, + [2592] = 2479, + [2593] = 2012, + [2594] = 2013, + [2595] = 2050, + [2596] = 2051, + [2597] = 2052, + [2598] = 2054, + [2599] = 2056, + [2600] = 2057, + [2601] = 2061, + [2602] = 2065, + [2603] = 2066, + [2604] = 2068, + [2605] = 2123, + [2606] = 2130, + [2607] = 2131, + [2608] = 2133, + [2609] = 2135, + [2610] = 2137, + [2611] = 2139, + [2612] = 2142, + [2613] = 2143, + [2614] = 2144, + [2615] = 2482, + [2616] = 2483, + [2617] = 2146, + [2618] = 2148, + [2619] = 1991, + [2620] = 2155, + [2621] = 2098, + [2622] = 2077, + [2623] = 2087, + [2624] = 2490, + [2625] = 2096, + [2626] = 2107, + [2627] = 2128, + [2628] = 2493, + [2629] = 2100, + [2630] = 2141, + [2631] = 2156, + [2632] = 2157, + [2633] = 2037, + [2634] = 2047, + [2635] = 2109, + [2636] = 2097, + [2637] = 2099, + [2638] = 2022, + [2639] = 2020, + [2640] = 2016, + [2641] = 2015, + [2642] = 2014, + [2643] = 1961, + [2644] = 2002, + [2645] = 2003, + [2646] = 2004, + [2647] = 2078, + [2648] = 2079, + [2649] = 1873, + [2650] = 2005, + [2651] = 2150, + [2652] = 2153, + [2653] = 2115, + [2654] = 2113, + [2655] = 2112, + [2656] = 2111, + [2657] = 1997, + [2658] = 2140, + [2659] = 2124, + [2660] = 2138, + [2661] = 1994, + [2662] = 1947, + [2663] = 2464, + [2664] = 2159, + [2665] = 2158, + [2666] = 2473, + [2667] = 2355, + [2668] = 2587, + [2669] = 2543, + [2670] = 1949, + [2671] = 1953, + [2672] = 2566, + [2673] = 2203, + [2674] = 2202, + [2675] = 2489, + [2676] = 2361, + [2677] = 2201, + [2678] = 2199, + [2679] = 1953, + [2680] = 2196, + [2681] = 2565, + [2682] = 2516, + [2683] = 2500, + [2684] = 2501, + [2685] = 1961, + [2686] = 1949, + [2687] = 2085, + [2688] = 2170, + [2689] = 2527, + [2690] = 2536, + [2691] = 1947, + [2692] = 2538, + [2693] = 2539, + [2694] = 2540, + [2695] = 2541, + [2696] = 2542, + [2697] = 2544, + [2698] = 2545, + [2699] = 2546, + [2700] = 2547, + [2701] = 2548, + [2702] = 2559, + [2703] = 2078, + [2704] = 2066, + [2705] = 2068, + [2706] = 2496, + [2707] = 2555, + [2708] = 2123, + [2709] = 2502, + [2710] = 2564, + [2711] = 2131, + [2712] = 2133, + [2713] = 2135, + [2714] = 2137, + [2715] = 2113, + [2716] = 2139, + [2717] = 2142, + [2718] = 2143, + [2719] = 2196, + [2720] = 2144, + [2721] = 2146, + [2722] = 2148, + [2723] = 1991, + [2724] = 2155, + [2725] = 2124, + [2726] = 2199, + [2727] = 2211, + [2728] = 2554, + [2729] = 2574, + [2730] = 2201, + [2731] = 1925, + [2732] = 2202, + [2733] = 2138, + [2734] = 1940, + [2735] = 2203, + [2736] = 2098, + [2737] = 2100, + [2738] = 2077, + [2739] = 2087, + [2740] = 2096, + [2741] = 2061, + [2742] = 2057, + [2743] = 2056, + [2744] = 2054, + [2745] = 2052, + [2746] = 2051, + [2747] = 2050, + [2748] = 2130, + [2749] = 2013, + [2750] = 2012, + [2751] = 2009, + [2752] = 2107, + [2753] = 2128, + [2754] = 1904, + [2755] = 2140, + [2756] = 1905, + [2757] = 2141, + [2758] = 2156, + [2759] = 2157, + [2760] = 2037, + [2761] = 2047, + [2762] = 2109, + [2763] = 2097, + [2764] = 2099, + [2765] = 2158, + [2766] = 2496, + [2767] = 1994, + [2768] = 2526, + [2769] = 2587, + [2770] = 2770, + [2771] = 2476, + [2772] = 2085, + [2773] = 2773, + [2774] = 2586, + [2775] = 2413, + [2776] = 1891, + [2777] = 2587, + [2778] = 2500, + [2779] = 2092, + [2780] = 2517, + [2781] = 2773, + [2782] = 2773, + [2783] = 2773, + [2784] = 2773, + [2785] = 2773, + [2786] = 2773, + [2787] = 2773, + [2788] = 2770, + [2789] = 2770, + [2790] = 2773, + [2791] = 2566, + [2792] = 2009, + [2793] = 2012, + [2794] = 1499, + [2795] = 2159, + [2796] = 1502, + [2797] = 1504, + [2798] = 2111, + [2799] = 2065, + [2800] = 2077, + [2801] = 2518, + [2802] = 2022, + [2803] = 2020, + [2804] = 2016, + [2805] = 1507, + [2806] = 2015, + [2807] = 2014, + [2808] = 1517, + [2809] = 2002, + [2810] = 2003, + [2811] = 2112, + [2812] = 2004, + [2813] = 1912, + [2814] = 2514, + [2815] = 2513, + [2816] = 2079, + [2817] = 1918, + [2818] = 1928, + [2819] = 2510, + [2820] = 1916, + [2821] = 1519, + [2822] = 1658, + [2823] = 2486, + [2824] = 1882, + [2825] = 1878, + [2826] = 1889, + [2827] = 1887, + [2828] = 1524, + [2829] = 303, + [2830] = 2050, + [2831] = 306, + [2832] = 2170, + [2833] = 1913, + [2834] = 1908, + [2835] = 2051, + [2836] = 2005, + [2837] = 2150, + [2838] = 2052, + [2839] = 1935, + [2840] = 2115, + [2841] = 2500, + [2842] = 2054, + [2843] = 2488, + [2844] = 2487, + [2845] = 2153, + [2846] = 2056, + [2847] = 1921, + [2848] = 2057, + [2849] = 2562, + [2850] = 1914, + [2851] = 2061, + [2852] = 2153, + [2853] = 2065, + [2854] = 2066, + [2855] = 2068, + [2856] = 2123, + [2857] = 2130, + [2858] = 2131, + [2859] = 1911, + [2860] = 2133, + [2861] = 2135, + [2862] = 2115, + [2863] = 2113, + [2864] = 2112, + [2865] = 2111, + [2866] = 2577, + [2867] = 2477, + [2868] = 2524, + [2869] = 2092, + [2870] = 2137, + [2871] = 2150, + [2872] = 2139, + [2873] = 2005, + [2874] = 2142, + [2875] = 2143, + [2876] = 2496, + [2877] = 1997, + [2878] = 2144, + [2879] = 2474, + [2880] = 1994, + [2881] = 2555, + [2882] = 1907, + [2883] = 2146, + [2884] = 2148, + [2885] = 1997, + [2886] = 2470, + [2887] = 1991, + [2888] = 2079, + [2889] = 2484, + [2890] = 2155, + [2891] = 2257, + [2892] = 2098, + [2893] = 2100, + [2894] = 2227, + [2895] = 2087, + [2896] = 2013, + [2897] = 2499, + [2898] = 2096, + [2899] = 2107, + [2900] = 2128, + [2901] = 2180, + [2902] = 2140, + [2903] = 2372, + [2904] = 2466, + [2905] = 2563, + [2906] = 2078, + [2907] = 2099, + [2908] = 2521, + [2909] = 2097, + [2910] = 2109, + [2911] = 2004, + [2912] = 2014, + [2913] = 2015, + [2914] = 2047, + [2915] = 2037, + [2916] = 2003, + [2917] = 2016, + [2918] = 2020, + [2919] = 2022, + [2920] = 2157, + [2921] = 2566, + [2922] = 2156, + [2923] = 2141, + [2924] = 2002, + [2925] = 2515, + [2926] = 2490, + [2927] = 2557, + [2928] = 2536, + [2929] = 2180, + [2930] = 1882, + [2931] = 2358, + [2932] = 2527, + [2933] = 1800, + [2934] = 2479, + [2935] = 2543, + [2936] = 2516, + [2937] = 2937, + [2938] = 1807, + [2939] = 1499, + [2940] = 2510, + [2941] = 1502, + [2942] = 1504, + [2943] = 2489, + [2944] = 1507, + [2945] = 1517, + [2946] = 1519, + [2947] = 1658, + [2948] = 2482, + [2949] = 2473, + [2950] = 303, + [2951] = 306, + [2952] = 2483, + [2953] = 2464, + [2954] = 1798, + [2955] = 2955, + [2956] = 1891, + [2957] = 1903, + [2958] = 1903, + [2959] = 2501, + [2960] = 2493, + [2961] = 2499, + [2962] = 2542, + [2963] = 2539, + [2964] = 2540, + [2965] = 2541, + [2966] = 1889, + [2967] = 2544, + [2968] = 2545, + [2969] = 2546, + [2970] = 2547, + [2971] = 2361, + [2972] = 1887, + [2973] = 2973, + [2974] = 1878, + [2975] = 2565, + [2976] = 2548, + [2977] = 1806, + [2978] = 2538, + [2979] = 2355, + [2980] = 1524, + [2981] = 1916, + [2982] = 1908, + [2983] = 2564, + [2984] = 2211, + [2985] = 1940, + [2986] = 1925, + [2987] = 2554, + [2988] = 2358, + [2989] = 2486, + [2990] = 2559, + [2991] = 2586, + [2992] = 2479, + [2993] = 2562, + [2994] = 2482, + [2995] = 2483, + [2996] = 2490, + [2997] = 2493, + [2998] = 2227, + [2999] = 1921, + [3000] = 1914, + [3001] = 1911, + [3002] = 2196, + [3003] = 1777, + [3004] = 2555, + [3005] = 2473, + [3006] = 2201, + [3007] = 2499, + [3008] = 2574, + [3009] = 2202, + [3010] = 2203, + [3011] = 1904, + [3012] = 1912, + [3013] = 2466, + [3014] = 2521, + [3015] = 2515, + [3016] = 2496, + [3017] = 1780, + [3018] = 2565, + [3019] = 1918, + [3020] = 2510, + [3021] = 1935, + [3022] = 2257, + [3023] = 2557, + [3024] = 2484, + [3025] = 2517, + [3026] = 2355, + [3027] = 306, + [3028] = 303, + [3029] = 2563, + [3030] = 2470, + [3031] = 1907, + [3032] = 2474, + [3033] = 2524, + [3034] = 2199, + [3035] = 2477, + [3036] = 2487, + [3037] = 2488, + [3038] = 2500, + [3039] = 1913, + [3040] = 2547, + [3041] = 2546, + [3042] = 1928, + [3043] = 2545, + [3044] = 2544, + [3045] = 2542, + [3046] = 2513, + [3047] = 2541, + [3048] = 2540, + [3049] = 2539, + [3050] = 2538, + [3051] = 2536, + [3052] = 2577, + [3053] = 2514, + [3054] = 2518, + [3055] = 2501, + [3056] = 2476, + [3057] = 2543, + [3058] = 2496, + [3059] = 2464, + [3060] = 2479, + [3061] = 2496, + [3062] = 2482, + [3063] = 2483, + [3064] = 2490, + [3065] = 2493, + [3066] = 2565, + [3067] = 2557, + [3068] = 2502, + [3069] = 2548, + [3070] = 2547, + [3071] = 2546, + [3072] = 2545, + [3073] = 2544, + [3074] = 1779, + [3075] = 2542, + [3076] = 2541, + [3077] = 2526, + [3078] = 2527, + [3079] = 2516, + [3080] = 2372, + [3081] = 2540, + [3082] = 2548, + [3083] = 2489, + [3084] = 2539, + [3085] = 2538, + [3086] = 2536, + [3087] = 2527, + [3088] = 2516, + [3089] = 2489, + [3090] = 2473, + [3091] = 2566, + [3092] = 2170, + [3093] = 1905, + [3094] = 1928, + [3095] = 2372, + [3096] = 1949, + [3097] = 2496, + [3098] = 2502, + [3099] = 2484, + [3100] = 2499, + [3101] = 2515, + [3102] = 2521, + [3103] = 2466, + [3104] = 1912, + [3105] = 1911, + [3106] = 1914, + [3107] = 1921, + [3108] = 2559, + [3109] = 303, + [3110] = 1935, + [3111] = 2554, + [3112] = 1925, + [3113] = 1940, + [3114] = 1953, + [3115] = 1904, + [3116] = 1905, + [3117] = 1873, + [3118] = 2526, + [3119] = 2476, + [3120] = 2518, + [3121] = 2514, + [3122] = 1918, + [3123] = 2510, + [3124] = 1916, + [3125] = 1913, + [3126] = 1908, + [3127] = 2488, + [3128] = 2487, + [3129] = 2477, + [3130] = 2524, + [3131] = 2474, + [3132] = 1907, + [3133] = 2470, + [3134] = 2513, + [3135] = 2563, + [3136] = 1864, + [3137] = 1658, + [3138] = 1519, + [3139] = 1517, + [3140] = 1507, + [3141] = 1504, + [3142] = 1502, + [3143] = 1499, + [3144] = 306, + [3145] = 2227, + [3146] = 2257, + [3147] = 2135, + [3148] = 2157, + [3149] = 2100, + [3150] = 3150, + [3151] = 3150, + [3152] = 1994, + [3153] = 1997, + [3154] = 1524, + [3155] = 3150, + [3156] = 2009, + [3157] = 2012, + [3158] = 2013, + [3159] = 2050, + [3160] = 2051, + [3161] = 2052, + [3162] = 2054, + [3163] = 2056, + [3164] = 2057, + [3165] = 2061, + [3166] = 2065, + [3167] = 2092, + [3168] = 2111, + [3169] = 2066, + [3170] = 2112, + [3171] = 2113, + [3172] = 2115, + [3173] = 2153, + [3174] = 2068, + [3175] = 2150, + [3176] = 2005, + [3177] = 2123, + [3178] = 2079, + [3179] = 2078, + [3180] = 2004, + [3181] = 2003, + [3182] = 2002, + [3183] = 2014, + [3184] = 2015, + [3185] = 2016, + [3186] = 2020, + [3187] = 2022, + [3188] = 2130, + [3189] = 2099, + [3190] = 2097, + [3191] = 2109, + [3192] = 2047, + [3193] = 2037, + [3194] = 3150, + [3195] = 2156, + [3196] = 2141, + [3197] = 2140, + [3198] = 2128, + [3199] = 2107, + [3200] = 2096, + [3201] = 2087, + [3202] = 2077, + [3203] = 2131, + [3204] = 2098, + [3205] = 2155, + [3206] = 1991, + [3207] = 2148, + [3208] = 2146, + [3209] = 2144, + [3210] = 2143, + [3211] = 2142, + [3212] = 2139, + [3213] = 2137, + [3214] = 2133, + [3215] = 1889, + [3216] = 3216, + [3217] = 3217, + [3218] = 1903, + [3219] = 457, + [3220] = 1891, + [3221] = 1806, + [3222] = 1873, + [3223] = 3223, + [3224] = 1882, + [3225] = 1807, + [3226] = 1864, + [3227] = 3227, + [3228] = 1878, + [3229] = 1887, + [3230] = 3230, + [3231] = 1800, + [3232] = 3217, + [3233] = 1798, + [3234] = 3234, + [3235] = 1499, + [3236] = 1502, + [3237] = 1504, + [3238] = 1507, + [3239] = 1517, + [3240] = 435, + [3241] = 1519, + [3242] = 1658, + [3243] = 1864, + [3244] = 3244, + [3245] = 3245, + [3246] = 3245, + [3247] = 1873, + [3248] = 3248, + [3249] = 3248, + [3250] = 3248, + [3251] = 3251, + [3252] = 3244, + [3253] = 3244, + [3254] = 3245, + [3255] = 3244, + [3256] = 3251, + [3257] = 3248, + [3258] = 3251, + [3259] = 3244, + [3260] = 3248, + [3261] = 1817, + [3262] = 3217, + [3263] = 3244, + [3264] = 3251, + [3265] = 3245, + [3266] = 3251, + [3267] = 3245, + [3268] = 3248, + [3269] = 3245, + [3270] = 3251, + [3271] = 1869, + [3272] = 1937, + [3273] = 1902, + [3274] = 3274, + [3275] = 1865, + [3276] = 1924, + [3277] = 1875, + [3278] = 1853, + [3279] = 3279, + [3280] = 1922, + [3281] = 1873, + [3282] = 1889, + [3283] = 1504, + [3284] = 1878, + [3285] = 1845, + [3286] = 1839, + [3287] = 1502, + [3288] = 1843, + [3289] = 1825, + [3290] = 1864, + [3291] = 1849, + [3292] = 1842, + [3293] = 1873, + [3294] = 1840, + [3295] = 1853, + [3296] = 1864, + [3297] = 1903, + [3298] = 1875, + [3299] = 1882, + [3300] = 1852, + [3301] = 1887, + [3302] = 1850, + [3303] = 1869, + [3304] = 1658, + [3305] = 1848, + [3306] = 1499, + [3307] = 1519, + [3308] = 1517, + [3309] = 1507, + [3310] = 1865, + [3311] = 1891, + [3312] = 1937, + [3313] = 3313, + [3314] = 1869, + [3315] = 3315, + [3316] = 1865, + [3317] = 1853, + [3318] = 1875, + [3319] = 1902, + [3320] = 3313, + [3321] = 1912, + [3322] = 3322, + [3323] = 1524, + [3324] = 3324, + [3325] = 1904, + [3326] = 1940, + [3327] = 3327, + [3328] = 3324, + [3329] = 1918, + [3330] = 3327, + [3331] = 306, + [3332] = 3332, + [3333] = 1928, + [3334] = 3334, + [3335] = 3327, + [3336] = 1905, + [3337] = 3337, + [3338] = 3327, + [3339] = 3324, + [3340] = 3324, + [3341] = 3341, + [3342] = 3327, + [3343] = 1925, + [3344] = 1916, + [3345] = 3324, + [3346] = 1914, + [3347] = 3327, + [3348] = 3324, + [3349] = 303, + [3350] = 1922, + [3351] = 3327, + [3352] = 1911, + [3353] = 1908, + [3354] = 1935, + [3355] = 1096, + [3356] = 3324, + [3357] = 1913, + [3358] = 3327, + [3359] = 3327, + [3360] = 3360, + [3361] = 3361, + [3362] = 1924, + [3363] = 2180, + [3364] = 3364, + [3365] = 1097, + [3366] = 1921, + [3367] = 1907, + [3368] = 3324, + [3369] = 3324, + [3370] = 3324, + [3371] = 3324, + [3372] = 2358, + [3373] = 2158, + [3374] = 3374, + [3375] = 3375, + [3376] = 1953, + [3377] = 3374, + [3378] = 3374, + [3379] = 3375, + [3380] = 3375, + [3381] = 2124, + [3382] = 2159, + [3383] = 3374, + [3384] = 2138, + [3385] = 3385, + [3386] = 3385, + [3387] = 1817, + [3388] = 3385, + [3389] = 1937, + [3390] = 3385, + [3391] = 3374, + [3392] = 3392, + [3393] = 3375, + [3394] = 3375, + [3395] = 3374, + [3396] = 3375, + [3397] = 3392, + [3398] = 3398, + [3399] = 3398, + [3400] = 3385, + [3401] = 2563, + [3402] = 3392, + [3403] = 3392, + [3404] = 3385, + [3405] = 3385, + [3406] = 3374, + [3407] = 2477, + [3408] = 3408, + [3409] = 3375, + [3410] = 2518, + [3411] = 3322, + [3412] = 3392, + [3413] = 3392, + [3414] = 3375, + [3415] = 3375, + [3416] = 3374, + [3417] = 3392, + [3418] = 1949, + [3419] = 3385, + [3420] = 3385, + [3421] = 3374, + [3422] = 2559, + [3423] = 2355, + [3424] = 2464, + [3425] = 1902, + [3426] = 3385, + [3427] = 1947, + [3428] = 2096, + [3429] = 2513, + [3430] = 2014, + [3431] = 2015, + [3432] = 1903, + [3433] = 2016, + [3434] = 2138, + [3435] = 1961, + [3436] = 2061, + [3437] = 2057, + [3438] = 2020, + [3439] = 2022, + [3440] = 2056, + [3441] = 2526, + [3442] = 2527, + [3443] = 1922, + [3444] = 2479, + [3445] = 2054, + [3446] = 2052, + [3447] = 2051, + [3448] = 1924, + [3449] = 2493, + [3450] = 2050, + [3451] = 1842, + [3452] = 2066, + [3453] = 1848, + [3454] = 1839, + [3455] = 2153, + [3456] = 2499, + [3457] = 2068, + [3458] = 2476, + [3459] = 2047, + [3460] = 2470, + [3461] = 1840, + [3462] = 1922, + [3463] = 2514, + [3464] = 2158, + [3465] = 2115, + [3466] = 2150, + [3467] = 2510, + [3468] = 2037, + [3469] = 2488, + [3470] = 2487, + [3471] = 1924, + [3472] = 2157, + [3473] = 2155, + [3474] = 1800, + [3475] = 1991, + [3476] = 2156, + [3477] = 2141, + [3478] = 2003, + [3479] = 2092, + [3480] = 1947, + [3481] = 1845, + [3482] = 2140, + [3483] = 1807, + [3484] = 2004, + [3485] = 2078, + [3486] = 1843, + [3487] = 1852, + [3488] = 2484, + [3489] = 2148, + [3490] = 1850, + [3491] = 2159, + [3492] = 2079, + [3493] = 2065, + [3494] = 2146, + [3495] = 2144, + [3496] = 2547, + [3497] = 2143, + [3498] = 1849, + [3499] = 2142, + [3500] = 2482, + [3501] = 2139, + [3502] = 2137, + [3503] = 2128, + [3504] = 1997, + [3505] = 1825, + [3506] = 2135, + [3507] = 2133, + [3508] = 2515, + [3509] = 2107, + [3510] = 3510, + [3511] = 2131, + [3512] = 2130, + [3513] = 2123, + [3514] = 2474, + [3515] = 2099, + [3516] = 2111, + [3517] = 2002, + [3518] = 3274, + [3519] = 2554, + [3520] = 2097, + [3521] = 2502, + [3522] = 1994, + [3523] = 1961, + [3524] = 2087, + [3525] = 2124, + [3526] = 2521, + [3527] = 2466, + [3528] = 3279, + [3529] = 2098, + [3530] = 2524, + [3531] = 2100, + [3532] = 2113, + [3533] = 2112, + [3534] = 2013, + [3535] = 2109, + [3536] = 2005, + [3537] = 2077, + [3538] = 2012, + [3539] = 2009, + [3540] = 2159, + [3541] = 3541, + [3542] = 3541, + [3543] = 1843, + [3544] = 3544, + [3545] = 1852, + [3546] = 2138, + [3547] = 1845, + [3548] = 1850, + [3549] = 2565, + [3550] = 1849, + [3551] = 1840, + [3552] = 2516, + [3553] = 2541, + [3554] = 2538, + [3555] = 2483, + [3556] = 2548, + [3557] = 2546, + [3558] = 2545, + [3559] = 2544, + [3560] = 2473, + [3561] = 3561, + [3562] = 3562, + [3563] = 1902, + [3564] = 2490, + [3565] = 2542, + [3566] = 2124, + [3567] = 2489, + [3568] = 2540, + [3569] = 3561, + [3570] = 1839, + [3571] = 3544, + [3572] = 2539, + [3573] = 1096, + [3574] = 3562, + [3575] = 3541, + [3576] = 1848, + [3577] = 1842, + [3578] = 2557, + [3579] = 3561, + [3580] = 3562, + [3581] = 3581, + [3582] = 2158, + [3583] = 1097, + [3584] = 3334, + [3585] = 2536, + [3586] = 3586, + [3587] = 3586, + [3588] = 2374, + [3589] = 3586, + [3590] = 3586, + [3591] = 3591, + [3592] = 3586, + [3593] = 1524, + [3594] = 3586, + [3595] = 3595, + [3596] = 3586, + [3597] = 3597, + [3598] = 3586, + [3599] = 3599, + [3600] = 3600, + [3601] = 3586, + [3602] = 3602, + [3603] = 3602, + [3604] = 2413, + [3605] = 3586, + [3606] = 3586, + [3607] = 3597, + [3608] = 3595, + [3609] = 3609, + [3610] = 3595, + [3611] = 3600, + [3612] = 3586, + [3613] = 3597, + [3614] = 3609, + [3615] = 3615, + [3616] = 3597, + [3617] = 3609, + [3618] = 3600, + [3619] = 3602, + [3620] = 3586, + [3621] = 3586, + [3622] = 3602, + [3623] = 3595, + [3624] = 3609, + [3625] = 3609, + [3626] = 3600, + [3627] = 3627, + [3628] = 2180, + [3629] = 3595, + [3630] = 3600, + [3631] = 3597, + [3632] = 3586, + [3633] = 3600, + [3634] = 3634, + [3635] = 3602, + [3636] = 3636, + [3637] = 2586, + [3638] = 3609, + [3639] = 3602, + [3640] = 3600, + [3641] = 3586, + [3642] = 3597, + [3643] = 3643, + [3644] = 3595, + [3645] = 2557, + [3646] = 3646, + [3647] = 2372, + [3648] = 2565, + [3649] = 3649, + [3650] = 1921, + [3651] = 2483, + [3652] = 3652, + [3653] = 3653, + [3654] = 1908, + [3655] = 3655, + [3656] = 3656, + [3657] = 3657, + [3658] = 2490, + [3659] = 3659, + [3660] = 3660, + [3661] = 2565, + [3662] = 3649, + [3663] = 3663, + [3664] = 3664, + [3665] = 3665, + [3666] = 1914, + [3667] = 3667, + [3668] = 3652, + [3669] = 3649, + [3670] = 1907, + [3671] = 2548, + [3672] = 2546, + [3673] = 2545, + [3674] = 3667, + [3675] = 2544, + [3676] = 2542, + [3677] = 2541, + [3678] = 2483, + [3679] = 3679, + [3680] = 2540, + [3681] = 2539, + [3682] = 3682, + [3683] = 306, + [3684] = 2473, + [3685] = 1924, + [3686] = 3686, + [3687] = 3665, + [3688] = 3660, + [3689] = 3655, + [3690] = 3653, + [3691] = 2538, + [3692] = 3657, + [3693] = 3649, + [3694] = 3694, + [3695] = 2536, + [3696] = 3653, + [3697] = 3686, + [3698] = 1925, + [3699] = 3699, + [3700] = 3655, + [3701] = 2516, + [3702] = 3702, + [3703] = 3703, + [3704] = 1911, + [3705] = 3652, + [3706] = 3322, + [3707] = 1477, + [3708] = 3708, + [3709] = 2489, + [3710] = 3667, + [3711] = 2527, + [3712] = 3712, + [3713] = 3713, + [3714] = 3679, + [3715] = 3665, + [3716] = 3665, + [3717] = 3679, + [3718] = 3667, + [3719] = 3657, + [3720] = 3720, + [3721] = 2473, + [3722] = 3659, + [3723] = 1922, + [3724] = 3660, + [3725] = 3664, + [3726] = 3679, + [3727] = 3655, + [3728] = 3653, + [3729] = 3665, + [3730] = 2464, + [3731] = 3667, + [3732] = 3712, + [3733] = 3664, + [3734] = 3649, + [3735] = 2257, + [3736] = 3686, + [3737] = 2355, + [3738] = 3332, + [3739] = 1905, + [3740] = 3712, + [3741] = 3712, + [3742] = 1913, + [3743] = 303, + [3744] = 3744, + [3745] = 3660, + [3746] = 3659, + [3747] = 3657, + [3748] = 3652, + [3749] = 1904, + [3750] = 2227, + [3751] = 3751, + [3752] = 3703, + [3753] = 2516, + [3754] = 3754, + [3755] = 1918, + [3756] = 3659, + [3757] = 3652, + [3758] = 1928, + [3759] = 3653, + [3760] = 3682, + [3761] = 2536, + [3762] = 2538, + [3763] = 3686, + [3764] = 2539, + [3765] = 1935, + [3766] = 3649, + [3767] = 3712, + [3768] = 2540, + [3769] = 3655, + [3770] = 2493, + [3771] = 2541, + [3772] = 2542, + [3773] = 1916, + [3774] = 2544, + [3775] = 3652, + [3776] = 2545, + [3777] = 2546, + [3778] = 3679, + [3779] = 2490, + [3780] = 2547, + [3781] = 2548, + [3782] = 2489, + [3783] = 2358, + [3784] = 3657, + [3785] = 3785, + [3786] = 3659, + [3787] = 3655, + [3788] = 3653, + [3789] = 3660, + [3790] = 3664, + [3791] = 3791, + [3792] = 1825, + [3793] = 1940, + [3794] = 3794, + [3795] = 3686, + [3796] = 3744, + [3797] = 2557, + [3798] = 3712, + [3799] = 3664, + [3800] = 3665, + [3801] = 3667, + [3802] = 1912, + [3803] = 3679, + [3804] = 3804, + [3805] = 2482, + [3806] = 2479, + [3807] = 3657, + [3808] = 3360, + [3809] = 3664, + [3810] = 3660, + [3811] = 3659, + [3812] = 3812, + [3813] = 3649, + [3814] = 3814, + [3815] = 3814, + [3816] = 2548, + [3817] = 2257, + [3818] = 3818, + [3819] = 3819, + [3820] = 2514, + [3821] = 3821, + [3822] = 2557, + [3823] = 3823, + [3824] = 2565, + [3825] = 3804, + [3826] = 3826, + [3827] = 3827, + [3828] = 3812, + [3829] = 3829, + [3830] = 2488, + [3831] = 3831, + [3832] = 3818, + [3833] = 2487, + [3834] = 3751, + [3835] = 3835, + [3836] = 3836, + [3837] = 3837, + [3838] = 3838, + [3839] = 3839, + [3840] = 3840, + [3841] = 2510, + [3842] = 3836, + [3843] = 2527, + [3844] = 3836, + [3845] = 3845, + [3846] = 3814, + [3847] = 3847, + [3848] = 3827, + [3849] = 3849, + [3850] = 2477, + [3851] = 2524, + [3852] = 2513, + [3853] = 3826, + [3854] = 3854, + [3855] = 3831, + [3856] = 3854, + [3857] = 3857, + [3858] = 3847, + [3859] = 3836, + [3860] = 3826, + [3861] = 2554, + [3862] = 2545, + [3863] = 3863, + [3864] = 3814, + [3865] = 2547, + [3866] = 3866, + [3867] = 3821, + [3868] = 3868, + [3869] = 2544, + [3870] = 3870, + [3871] = 2474, + [3872] = 3839, + [3873] = 3873, + [3874] = 3874, + [3875] = 2542, + [3876] = 3876, + [3877] = 3877, + [3878] = 2541, + [3879] = 3826, + [3880] = 3819, + [3881] = 2484, + [3882] = 2540, + [3883] = 2470, + [3884] = 3847, + [3885] = 3814, + [3886] = 2539, + [3887] = 3839, + [3888] = 3857, + [3889] = 3845, + [3890] = 2538, + [3891] = 2536, + [3892] = 3821, + [3893] = 2559, + [3894] = 3854, + [3895] = 3838, + [3896] = 2516, + [3897] = 3873, + [3898] = 3847, + [3899] = 3814, + [3900] = 3836, + [3901] = 2502, + [3902] = 1524, + [3903] = 1961, + [3904] = 3829, + [3905] = 2489, + [3906] = 2546, + [3907] = 3907, + [3908] = 2521, + [3909] = 3909, + [3910] = 2518, + [3911] = 1922, + [3912] = 3873, + [3913] = 3849, + [3914] = 1953, + [3915] = 3836, + [3916] = 3845, + [3917] = 3821, + [3918] = 2466, + [3919] = 3826, + [3920] = 2473, + [3921] = 3921, + [3922] = 3857, + [3923] = 3854, + [3924] = 3924, + [3925] = 3814, + [3926] = 1924, + [3927] = 3863, + [3928] = 3928, + [3929] = 3847, + [3930] = 3863, + [3931] = 3928, + [3932] = 3838, + [3933] = 3933, + [3934] = 3921, + [3935] = 3909, + [3936] = 3857, + [3937] = 3814, + [3938] = 3819, + [3939] = 3831, + [3940] = 3818, + [3941] = 3854, + [3942] = 3909, + [3943] = 3847, + [3944] = 3836, + [3945] = 2372, + [3946] = 3744, + [3947] = 3947, + [3948] = 3873, + [3949] = 3823, + [3950] = 3818, + [3951] = 3831, + [3952] = 3873, + [3953] = 3836, + [3954] = 3854, + [3955] = 2479, + [3956] = 3956, + [3957] = 3837, + [3958] = 3836, + [3959] = 3814, + [3960] = 2499, + [3961] = 3821, + [3962] = 3857, + [3963] = 3847, + [3964] = 2482, + [3965] = 2493, + [3966] = 1947, + [3967] = 3854, + [3968] = 3857, + [3969] = 2490, + [3970] = 3826, + [3971] = 2483, + [3972] = 3909, + [3973] = 3876, + [3974] = 3821, + [3975] = 2227, + [3976] = 2563, + [3977] = 3873, + [3978] = 3835, + [3979] = 3979, + [3980] = 3826, + [3981] = 2526, + [3982] = 3982, + [3983] = 2476, + [3984] = 3909, + [3985] = 3818, + [3986] = 3831, + [3987] = 2515, + [3988] = 3819, + [3989] = 3819, + [3990] = 2056, + [3991] = 2157, + [3992] = 2012, + [3993] = 2013, + [3994] = 2115, + [3995] = 2113, + [3996] = 2112, + [3997] = 2155, + [3998] = 1991, + [3999] = 2153, + [4000] = 2148, + [4001] = 2146, + [4002] = 3337, + [4003] = 3341, + [4004] = 2413, + [4005] = 2144, + [4006] = 3694, + [4007] = 2143, + [4008] = 1477, + [4009] = 2020, + [4010] = 2142, + [4011] = 2139, + [4012] = 2137, + [4013] = 2135, + [4014] = 2111, + [4015] = 2133, + [4016] = 2131, + [4017] = 2130, + [4018] = 2123, + [4019] = 1997, + [4020] = 2016, + [4021] = 2015, + [4022] = 3812, + [4023] = 2098, + [4024] = 2068, + [4025] = 2100, + [4026] = 1994, + [4027] = 2066, + [4028] = 2065, + [4029] = 2061, + [4030] = 3804, + [4031] = 2057, + [4032] = 2009, + [4033] = 2014, + [4034] = 2077, + [4035] = 2099, + [4036] = 2097, + [4037] = 2150, + [4038] = 2128, + [4039] = 2052, + [4040] = 2022, + [4041] = 2092, + [4042] = 2107, + [4043] = 2005, + [4044] = 2050, + [4045] = 2156, + [4046] = 2079, + [4047] = 4047, + [4048] = 2002, + [4049] = 2078, + [4050] = 2141, + [4051] = 2109, + [4052] = 2054, + [4053] = 2087, + [4054] = 2374, + [4055] = 2051, + [4056] = 2003, + [4057] = 2004, + [4058] = 2096, + [4059] = 2140, + [4060] = 2047, + [4061] = 2037, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4065, + [4066] = 3274, + [4067] = 4067, + [4068] = 4068, + [4069] = 1477, + [4070] = 1477, + [4071] = 4071, + [4072] = 3694, + [4073] = 4073, + [4074] = 3279, + [4075] = 3694, + [4076] = 4076, + [4077] = 412, + [4078] = 4076, + [4079] = 4073, + [4080] = 4080, + [4081] = 4068, + [4082] = 4062, + [4083] = 4080, + [4084] = 4076, + [4085] = 4076, + [4086] = 4086, + [4087] = 4080, + [4088] = 4088, + [4089] = 539, + [4090] = 4076, + [4091] = 3804, + [4092] = 3804, + [4093] = 4080, + [4094] = 1524, + [4095] = 3812, + [4096] = 4080, + [4097] = 4076, + [4098] = 413, + [4099] = 4076, + [4100] = 396, + [4101] = 4080, + [4102] = 4080, + [4103] = 4076, + [4104] = 4080, + [4105] = 448, + [4106] = 4065, + [4107] = 4080, + [4108] = 3812, + [4109] = 4076, + [4110] = 1766, + [4111] = 4086, + [4112] = 4062, + [4113] = 3804, + [4114] = 3656, + [4115] = 1922, + [4116] = 4068, + [4117] = 1924, + [4118] = 4073, + [4119] = 1096, + [4120] = 1097, + [4121] = 4065, + [4122] = 3812, + [4123] = 2413, + [4124] = 1524, + [4125] = 3663, + [4126] = 4126, + [4127] = 4127, + [4128] = 4127, + [4129] = 4129, + [4130] = 4127, + [4131] = 4131, + [4132] = 4127, + [4133] = 4131, + [4134] = 4127, + [4135] = 4131, + [4136] = 3360, + [4137] = 4127, + [4138] = 3322, + [4139] = 4073, + [4140] = 4127, + [4141] = 4141, + [4142] = 4127, + [4143] = 4127, + [4144] = 4127, + [4145] = 4131, + [4146] = 4129, + [4147] = 4127, + [4148] = 4129, + [4149] = 4149, + [4150] = 4131, + [4151] = 4127, + [4152] = 4129, + [4153] = 4131, + [4154] = 4127, + [4155] = 4155, + [4156] = 4127, + [4157] = 4127, + [4158] = 4127, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 4131, + [4163] = 4127, + [4164] = 4127, + [4165] = 4165, + [4166] = 4129, + [4167] = 4127, + [4168] = 4127, + [4169] = 4169, + [4170] = 4129, + [4171] = 4171, + [4172] = 4172, + [4173] = 4129, + [4174] = 4131, + [4175] = 1825, + [4176] = 4129, + [4177] = 3332, + [4178] = 4127, + [4179] = 4065, + [4180] = 4131, + [4181] = 4129, + [4182] = 4127, + [4183] = 4159, + [4184] = 4184, + [4185] = 4141, + [4186] = 4065, + [4187] = 4172, + [4188] = 4188, + [4189] = 4189, + [4190] = 4190, + [4191] = 4073, + [4192] = 4192, + [4193] = 4149, + [4194] = 4188, + [4195] = 4195, + [4196] = 4065, + [4197] = 4068, + [4198] = 4073, + [4199] = 4171, + [4200] = 4062, + [4201] = 4068, + [4202] = 4062, + [4203] = 4065, + [4204] = 4204, + [4205] = 4073, + [4206] = 4161, + [4207] = 4165, + [4208] = 4155, + [4209] = 4065, + [4210] = 4210, + [4211] = 4073, + [4212] = 4212, + [4213] = 4149, + [4214] = 4214, + [4215] = 4215, + [4216] = 4165, + [4217] = 4155, + [4218] = 4159, + [4219] = 4141, + [4220] = 4172, + [4221] = 3334, + [4222] = 4073, + [4223] = 4223, + [4224] = 4188, + [4225] = 4071, + [4226] = 4065, + [4227] = 4223, + [4228] = 4228, + [4229] = 4067, + [4230] = 3337, + [4231] = 4231, + [4232] = 4231, + [4233] = 4231, + [4234] = 4195, + [4235] = 4223, + [4236] = 4223, + [4237] = 4212, + [4238] = 4231, + [4239] = 4231, + [4240] = 4068, + [4241] = 3341, + [4242] = 4242, + [4243] = 4161, + [4244] = 4062, + [4245] = 4231, + [4246] = 4223, + [4247] = 4212, + [4248] = 4212, + [4249] = 4212, + [4250] = 4250, + [4251] = 4171, + [4252] = 4212, + [4253] = 4212, + [4254] = 4172, + [4255] = 4255, + [4256] = 4255, + [4257] = 4171, + [4258] = 4258, + [4259] = 4259, + [4260] = 1864, + [4261] = 1873, + [4262] = 4262, + [4263] = 4155, + [4264] = 1817, + [4265] = 4149, + [4266] = 4065, + [4267] = 4267, + [4268] = 4268, + [4269] = 4269, + [4270] = 4268, + [4271] = 4267, + [4272] = 4272, + [4273] = 4141, + [4274] = 4274, + [4275] = 4268, + [4276] = 4073, + [4277] = 4255, + [4278] = 4159, + [4279] = 1825, + [4280] = 4165, + [4281] = 1937, + [4282] = 4282, + [4283] = 1864, + [4284] = 4259, + [4285] = 4255, + [4286] = 1873, + [4287] = 4267, + [4288] = 4255, + [4289] = 4289, + [4290] = 4290, + [4291] = 4291, + [4292] = 4292, + [4293] = 4258, + [4294] = 4294, + [4295] = 4295, + [4296] = 4259, + [4297] = 4268, + [4298] = 4262, + [4299] = 4268, + [4300] = 4300, + [4301] = 4259, + [4302] = 4259, + [4303] = 4267, + [4304] = 4161, + [4305] = 4289, + [4306] = 4268, + [4307] = 4255, + [4308] = 4268, + [4309] = 4309, + [4310] = 4259, + [4311] = 4171, + [4312] = 1845, + [4313] = 4313, + [4314] = 4172, + [4315] = 4159, + [4316] = 1873, + [4317] = 4141, + [4318] = 4149, + [4319] = 4141, + [4320] = 4172, + [4321] = 1842, + [4322] = 4159, + [4323] = 4141, + [4324] = 4141, + [4325] = 1848, + [4326] = 1849, + [4327] = 4159, + [4328] = 4155, + [4329] = 1839, + [4330] = 4159, + [4331] = 4161, + [4332] = 4161, + [4333] = 4171, + [4334] = 4149, + [4335] = 4161, + [4336] = 1850, + [4337] = 4165, + [4338] = 1852, + [4339] = 4155, + [4340] = 1864, + [4341] = 4172, + [4342] = 4165, + [4343] = 1840, + [4344] = 4171, + [4345] = 4155, + [4346] = 4161, + [4347] = 4172, + [4348] = 4149, + [4349] = 1843, + [4350] = 4155, + [4351] = 4165, + [4352] = 4171, + [4353] = 4149, + [4354] = 4165, + [4355] = 1882, + [4356] = 1517, + [4357] = 4161, + [4358] = 2569, + [4359] = 1924, + [4360] = 4149, + [4361] = 1924, + [4362] = 1922, + [4363] = 1504, + [4364] = 1889, + [4365] = 1499, + [4366] = 1922, + [4367] = 4171, + [4368] = 1878, + [4369] = 1502, + [4370] = 1887, + [4371] = 1891, + [4372] = 1507, + [4373] = 4155, + [4374] = 4159, + [4375] = 4141, + [4376] = 4165, + [4377] = 1519, + [4378] = 1658, + [4379] = 4172, + [4380] = 4292, + [4381] = 4171, + [4382] = 4141, + [4383] = 4172, + [4384] = 4274, + [4385] = 4159, + [4386] = 2569, + [4387] = 4269, + [4388] = 1903, + [4389] = 4215, + [4390] = 4390, + [4391] = 4214, + [4392] = 4165, + [4393] = 2569, + [4394] = 4161, + [4395] = 4155, + [4396] = 2569, + [4397] = 4309, + [4398] = 4282, + [4399] = 4149, + [4400] = 4250, + [4401] = 4401, + [4402] = 4294, + [4403] = 4295, + [4404] = 4404, + [4405] = 1922, + [4406] = 1924, + [4407] = 4404, + [4408] = 4408, + [4409] = 1902, + [4410] = 1924, + [4411] = 1902, + [4412] = 1924, + [4413] = 4413, + [4414] = 4404, + [4415] = 4408, + [4416] = 1961, + [4417] = 1947, + [4418] = 1922, + [4419] = 4404, + [4420] = 1922, + [4421] = 4404, + [4422] = 4408, + [4423] = 4404, + [4424] = 2569, + [4425] = 1902, + [4426] = 1924, + [4427] = 4427, + [4428] = 1922, + [4429] = 1953, + [4430] = 1961, + [4431] = 1947, + [4432] = 4432, + [4433] = 1947, + [4434] = 4434, + [4435] = 4435, + [4436] = 1949, + [4437] = 1947, + [4438] = 4427, + [4439] = 1961, + [4440] = 4434, + [4441] = 4441, + [4442] = 4442, + [4443] = 1924, + [4444] = 3663, + [4445] = 4435, + [4446] = 1961, + [4447] = 1922, + [4448] = 2148, + [4449] = 4449, + [4450] = 4450, + [4451] = 4450, + [4452] = 4449, + [4453] = 4453, + [4454] = 4454, + [4455] = 4455, + [4456] = 4450, + [4457] = 4449, + [4458] = 4458, + [4459] = 4459, + [4460] = 4450, + [4461] = 4461, + [4462] = 4462, + [4463] = 4449, + [4464] = 4464, + [4465] = 4465, + [4466] = 4466, + [4467] = 4450, + [4468] = 4468, + [4469] = 4469, + [4470] = 4449, + [4471] = 4471, + [4472] = 4449, + [4473] = 4473, + [4474] = 4450, + [4475] = 4471, + [4476] = 4471, + [4477] = 4449, + [4478] = 4450, + [4479] = 4479, + [4480] = 4471, + [4481] = 4481, + [4482] = 2015, + [4483] = 4471, + [4484] = 4484, + [4485] = 3656, + [4486] = 1994, + [4487] = 4450, + [4488] = 1997, + [4489] = 2092, + [4490] = 2111, + [4491] = 2112, + [4492] = 4449, + [4493] = 4450, + [4494] = 4471, + [4495] = 4473, + [4496] = 2113, + [4497] = 2115, + [4498] = 2153, + [4499] = 2150, + [4500] = 2005, + [4501] = 2079, + [4502] = 2004, + [4503] = 2003, + [4504] = 2002, + [4505] = 2014, + [4506] = 4506, + [4507] = 2016, + [4508] = 2020, + [4509] = 4509, + [4510] = 4510, + [4511] = 4506, + [4512] = 4512, + [4513] = 4513, + [4514] = 2022, + [4515] = 4515, + [4516] = 2355, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, + [4522] = 4522, + [4523] = 4523, + [4524] = 4524, + [4525] = 4525, + [4526] = 4450, + [4527] = 4449, + [4528] = 2099, + [4529] = 4529, + [4530] = 2097, + [4531] = 2109, + [4532] = 2047, + [4533] = 2037, + [4534] = 2157, + [4535] = 2156, + [4536] = 2141, + [4537] = 2140, + [4538] = 4449, + [4539] = 4450, + [4540] = 2128, + [4541] = 4541, + [4542] = 2107, + [4543] = 2096, + [4544] = 2087, + [4545] = 2077, + [4546] = 2100, + [4547] = 2098, + [4548] = 2155, + [4549] = 1991, + [4550] = 2146, + [4551] = 2144, + [4552] = 2143, + [4553] = 2142, + [4554] = 2139, + [4555] = 2137, + [4556] = 2135, + [4557] = 4450, + [4558] = 2133, + [4559] = 1922, + [4560] = 1924, + [4561] = 4473, + [4562] = 2131, + [4563] = 2130, + [4564] = 2123, + [4565] = 2068, + [4566] = 2066, + [4567] = 2065, + [4568] = 2061, + [4569] = 2057, + [4570] = 2056, + [4571] = 4471, + [4572] = 2054, + [4573] = 2052, + [4574] = 4541, + [4575] = 2051, + [4576] = 2050, + [4577] = 2013, + [4578] = 4473, + [4579] = 2012, + [4580] = 2009, + [4581] = 2078, + [4582] = 4582, + [4583] = 4450, + [4584] = 4471, + [4585] = 4449, + [4586] = 1947, + [4587] = 4450, + [4588] = 4588, + [4589] = 4449, + [4590] = 1961, + [4591] = 4521, + [4592] = 4449, + [4593] = 4520, + [4594] = 4594, + [4595] = 4519, + [4596] = 4582, + [4597] = 4541, + [4598] = 4449, + [4599] = 4518, + [4600] = 4471, + [4601] = 4450, + [4602] = 4449, + [4603] = 4517, + [4604] = 4594, + [4605] = 4515, + [4606] = 4513, + [4607] = 4512, + [4608] = 4608, + [4609] = 4510, + [4610] = 4610, + [4611] = 4611, + [4612] = 4612, + [4613] = 4610, + [4614] = 4614, + [4615] = 4615, + [4616] = 4453, + [4617] = 4611, + [4618] = 4611, + [4619] = 4454, + [4620] = 4481, + [4621] = 4455, + [4622] = 4622, + [4623] = 4623, + [4624] = 4458, + [4625] = 4484, + [4626] = 4626, + [4627] = 4627, + [4628] = 4628, + [4629] = 4629, + [4630] = 4610, + [4631] = 4459, + [4632] = 4461, + [4633] = 4629, + [4634] = 4462, + [4635] = 4464, + [4636] = 4626, + [4637] = 4622, + [4638] = 4465, + [4639] = 4611, + [4640] = 4466, + [4641] = 4479, + [4642] = 4614, + [4643] = 4623, + [4644] = 4623, + [4645] = 4610, + [4646] = 4611, + [4647] = 4610, + [4648] = 4623, + [4649] = 4468, + [4650] = 4614, + [4651] = 4651, + [4652] = 4611, + [4653] = 4629, + [4654] = 4611, + [4655] = 4623, + [4656] = 4469, + [4657] = 4626, + [4658] = 3751, + [4659] = 4610, + [4660] = 4651, + [4661] = 4610, + [4662] = 4623, + [4663] = 4622, + [4664] = 4610, + [4665] = 4610, + [4666] = 4623, + [4667] = 4623, + [4668] = 4611, + [4669] = 4611, + [4670] = 4611, + [4671] = 4610, + [4672] = 4522, + [4673] = 4623, + [4674] = 4523, + [4675] = 4628, + [4676] = 4623, + [4677] = 4611, + [4678] = 4610, + [4679] = 4628, + [4680] = 4611, + [4681] = 4623, + [4682] = 4627, + [4683] = 4525, + [4684] = 4610, + [4685] = 4610, + [4686] = 4623, + [4687] = 4611, + [4688] = 4651, + [4689] = 4611, + [4690] = 4623, + [4691] = 4611, + [4692] = 4610, + [4693] = 4651, + [4694] = 4610, + [4695] = 4623, + [4696] = 4529, + [4697] = 4610, + [4698] = 4623, + [4699] = 4611, + [4700] = 4623, + [4701] = 2355, + [4702] = 4529, + [4703] = 4703, + [4704] = 4704, + [4705] = 4705, + [4706] = 4705, + [4707] = 4704, + [4708] = 4703, + [4709] = 4703, + [4710] = 4705, + [4711] = 4703, + [4712] = 4705, + [4713] = 4703, + [4714] = 4704, + [4715] = 4705, + [4716] = 4704, + [4717] = 4705, + [4718] = 4705, + [4719] = 4703, + [4720] = 4720, + [4721] = 4704, + [4722] = 4703, + [4723] = 4703, + [4724] = 4703, + [4725] = 4703, + [4726] = 4529, + [4727] = 4705, + [4728] = 4705, + [4729] = 4729, + [4730] = 4704, + [4731] = 4729, + [4732] = 4704, + [4733] = 4704, + [4734] = 4704, + [4735] = 4703, + [4736] = 4705, + [4737] = 4703, + [4738] = 4704, + [4739] = 4705, + [4740] = 4703, + [4741] = 4704, + [4742] = 4703, + [4743] = 4704, + [4744] = 4705, + [4745] = 4704, + [4746] = 4704, + [4747] = 4705, + [4748] = 4705, + [4749] = 4704, + [4750] = 4705, + [4751] = 4704, + [4752] = 3751, + [4753] = 4703, + [4754] = 4703, + [4755] = 4755, + [4756] = 4705, + [4757] = 4529, + [4758] = 4758, + [4759] = 4759, + [4760] = 4758, + [4761] = 4758, + [4762] = 4762, + [4763] = 4759, + [4764] = 4759, + [4765] = 4759, + [4766] = 4762, + [4767] = 4762, + [4768] = 4529, + [4769] = 4759, + [4770] = 4758, + [4771] = 4529, + [4772] = 4762, + [4773] = 4759, + [4774] = 4774, + [4775] = 4759, + [4776] = 4762, + [4777] = 4759, + [4778] = 4774, + [4779] = 4762, + [4780] = 4529, + [4781] = 4774, + [4782] = 4759, + [4783] = 4762, + [4784] = 4758, + [4785] = 4759, + [4786] = 4762, + [4787] = 4762, + [4788] = 4758, + [4789] = 4758, + [4790] = 4762, + [4791] = 4791, + [4792] = 4792, + [4793] = 4792, + [4794] = 4794, + [4795] = 4794, + [4796] = 4796, + [4797] = 4794, + [4798] = 4796, + [4799] = 4799, + [4800] = 4792, + [4801] = 4792, + [4802] = 4794, + [4803] = 4796, + [4804] = 4792, + [4805] = 4792, + [4806] = 4792, + [4807] = 4796, + [4808] = 4799, + [4809] = 4796, + [4810] = 4794, + [4811] = 4794, + [4812] = 4529, + [4813] = 4813, + [4814] = 4791, + [4815] = 4799, + [4816] = 4813, + [4817] = 4791, + [4818] = 4799, + [4819] = 4792, + [4820] = 4796, + [4821] = 4796, + [4822] = 4822, + [4823] = 4813, + [4824] = 4792, + [4825] = 4794, + [4826] = 4813, + [4827] = 4796, + [4828] = 4791, + [4829] = 4791, + [4830] = 4799, + [4831] = 4813, + [4832] = 4799, + [4833] = 4799, + [4834] = 4794, + [4835] = 4799, + [4836] = 4791, + [4837] = 4813, + [4838] = 4792, + [4839] = 4799, + [4840] = 4796, + [4841] = 4791, + [4842] = 4794, + [4843] = 4791, + [4844] = 4813, + [4845] = 4796, + [4846] = 4799, + [4847] = 4791, + [4848] = 4813, + [4849] = 4794, + [4850] = 4796, + [4851] = 4799, + [4852] = 4796, + [4853] = 4794, + [4854] = 4791, + [4855] = 4799, + [4856] = 4792, + [4857] = 4792, + [4858] = 4799, + [4859] = 4796, + [4860] = 4813, + [4861] = 4792, + [4862] = 4792, + [4863] = 4794, + [4864] = 4791, + [4865] = 4796, + [4866] = 4813, + [4867] = 4796, + [4868] = 4792, + [4869] = 4813, + [4870] = 4791, + [4871] = 4794, + [4872] = 4792, + [4873] = 4791, + [4874] = 4799, + [4875] = 4799, + [4876] = 4813, + [4877] = 4794, + [4878] = 4791, + [4879] = 4794, + [4880] = 4813, + [4881] = 4794, + [4882] = 4813, + [4883] = 4791, + [4884] = 4799, + [4885] = 4813, + [4886] = 4813, + [4887] = 4796, + [4888] = 4791, + [4889] = 4889, + [4890] = 4890, + [4891] = 4891, + [4892] = 4892, + [4893] = 4893, + [4894] = 4891, + [4895] = 4893, + [4896] = 4892, + [4897] = 4889, + [4898] = 4898, + [4899] = 4892, + [4900] = 4898, + [4901] = 4890, + [4902] = 4890, + [4903] = 4889, + [4904] = 4891, + [4905] = 4890, + [4906] = 4891, + [4907] = 4893, + [4908] = 4892, + [4909] = 4893, + [4910] = 4892, + [4911] = 4891, + [4912] = 4890, + [4913] = 4891, + [4914] = 4893, + [4915] = 4890, + [4916] = 4893, + [4917] = 4898, + [4918] = 4892, + [4919] = 4892, + [4920] = 4890, + [4921] = 4921, + [4922] = 4891, + [4923] = 4891, + [4924] = 4891, + [4925] = 4889, + [4926] = 4893, + [4927] = 4891, + [4928] = 4892, + [4929] = 4893, + [4930] = 4891, + [4931] = 4529, + [4932] = 4890, + [4933] = 4891, + [4934] = 4898, + [4935] = 4892, + [4936] = 4889, + [4937] = 4889, + [4938] = 4892, + [4939] = 4891, + [4940] = 4889, + [4941] = 4941, + [4942] = 4893, + [4943] = 4898, + [4944] = 4898, + [4945] = 4890, + [4946] = 4946, + [4947] = 1840, + [4948] = 4946, + [4949] = 4949, + [4950] = 1839, + [4951] = 1848, + [4952] = 1842, + [4953] = 4953, + [4954] = 4954, + [4955] = 1845, + [4956] = 1843, + [4957] = 4953, + [4958] = 4946, + [4959] = 4946, + [4960] = 4960, + [4961] = 4953, + [4962] = 4962, + [4963] = 4954, + [4964] = 1852, + [4965] = 4946, + [4966] = 1850, + [4967] = 4949, + [4968] = 1849, + [4969] = 4946, + [4970] = 4949, + [4971] = 4971, + [4972] = 4953, + [4973] = 4962, + [4974] = 4960, + [4975] = 4960, + [4976] = 2510, + [4977] = 2499, + [4978] = 4946, + [4979] = 4960, + [4980] = 4953, + [4981] = 4949, + [4982] = 4949, + [4983] = 4954, + [4984] = 4962, + [4985] = 4954, + [4986] = 4960, + [4987] = 4953, + [4988] = 4946, + [4989] = 4949, + [4990] = 4946, + [4991] = 4954, + [4992] = 4962, + [4993] = 4954, + [4994] = 4949, + [4995] = 4946, + [4996] = 4946, + [4997] = 4954, + [4998] = 4946, + [4999] = 4946, + [5000] = 4953, + [5001] = 5001, + [5002] = 2510, + [5003] = 1921, + [5004] = 1914, + [5005] = 5005, + [5006] = 5005, + [5007] = 5007, + [5008] = 5008, + [5009] = 1913, + [5010] = 1912, + [5011] = 1904, + [5012] = 1940, + [5013] = 5013, + [5014] = 5014, + [5015] = 1925, + [5016] = 5016, + [5017] = 5017, + [5018] = 5001, + [5019] = 1928, + [5020] = 1908, + [5021] = 5021, + [5022] = 2499, + [5023] = 5023, + [5024] = 5005, + [5025] = 5005, + [5026] = 1935, + [5027] = 5027, + [5028] = 5014, + [5029] = 5029, + [5030] = 5030, + [5031] = 5005, + [5032] = 1907, + [5033] = 1524, + [5034] = 5005, + [5035] = 2361, + [5036] = 1911, + [5037] = 5037, + [5038] = 5038, + [5039] = 5039, + [5040] = 5040, + [5041] = 5005, + [5042] = 5042, + [5043] = 5043, + [5044] = 5005, + [5045] = 1918, + [5046] = 5001, + [5047] = 5047, + [5048] = 5005, + [5049] = 306, + [5050] = 5050, + [5051] = 5005, + [5052] = 5052, + [5053] = 5014, + [5054] = 5005, + [5055] = 1864, + [5056] = 5005, + [5057] = 5057, + [5058] = 1873, + [5059] = 5059, + [5060] = 5060, + [5061] = 5005, + [5062] = 5062, + [5063] = 5005, + [5064] = 5005, + [5065] = 5005, + [5066] = 303, + [5067] = 5067, + [5068] = 5068, + [5069] = 5005, + [5070] = 5005, + [5071] = 5071, + [5072] = 1905, + [5073] = 5005, + [5074] = 5074, + [5075] = 5075, + [5076] = 5005, + [5077] = 5005, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 5001, + [5082] = 5082, + [5083] = 5014, + [5084] = 1916, + [5085] = 5085, + [5086] = 5068, + [5087] = 2555, + [5088] = 5088, + [5089] = 2196, + [5090] = 2199, + [5091] = 2201, + [5092] = 5040, + [5093] = 2202, + [5094] = 5094, + [5095] = 5095, + [5096] = 2203, + [5097] = 5038, + [5098] = 1864, + [5099] = 5099, + [5100] = 5100, + [5101] = 5101, + [5102] = 5102, + [5103] = 5103, + [5104] = 1873, + [5105] = 5105, + [5106] = 5030, + [5107] = 5050, + [5108] = 5088, + [5109] = 5109, + [5110] = 5060, + [5111] = 5111, + [5112] = 5112, + [5113] = 5113, + [5114] = 5114, + [5115] = 5112, + [5116] = 5116, + [5117] = 5117, + [5118] = 5109, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, + [5122] = 5085, + [5123] = 5039, + [5124] = 5023, + [5125] = 5059, + [5126] = 5126, + [5127] = 5127, + [5128] = 5013, + [5129] = 5043, + [5130] = 5075, + [5131] = 5131, + [5132] = 2500, + [5133] = 5080, + [5134] = 5134, + [5135] = 5135, + [5136] = 2566, + [5137] = 5047, + [5138] = 5042, + [5139] = 2170, + [5140] = 5095, + [5141] = 5141, + [5142] = 5142, + [5143] = 5052, + [5144] = 5144, + [5145] = 5057, + [5146] = 5071, + [5147] = 5017, + [5148] = 5021, + [5149] = 5149, + [5150] = 5150, + [5151] = 5037, + [5152] = 5152, + [5153] = 5153, + [5154] = 5067, + [5155] = 5062, + [5156] = 5074, + [5157] = 5102, + [5158] = 5158, + [5159] = 5159, + [5160] = 5160, + [5161] = 5095, + [5162] = 5088, + [5163] = 5160, + [5164] = 5160, + [5165] = 5160, + [5166] = 5160, + [5167] = 5112, + [5168] = 5109, + [5169] = 5160, + [5170] = 5170, + [5171] = 5127, + [5172] = 5172, + [5173] = 5173, + [5174] = 5174, + [5175] = 2574, + [5176] = 5176, + [5177] = 1922, + [5178] = 5178, + [5179] = 5160, + [5180] = 5102, + [5181] = 5160, + [5182] = 5160, + [5183] = 5160, + [5184] = 5160, + [5185] = 5160, + [5186] = 2499, + [5187] = 5134, + [5188] = 5176, + [5189] = 5160, + [5190] = 5190, + [5191] = 5078, + [5192] = 5176, + [5193] = 5160, + [5194] = 5126, + [5195] = 1924, + [5196] = 5160, + [5197] = 5160, + [5198] = 5117, + [5199] = 5176, + [5200] = 5160, + [5201] = 5176, + [5202] = 5142, + [5203] = 5176, + [5204] = 5204, + [5205] = 5099, + [5206] = 5206, + [5207] = 5150, + [5208] = 5160, + [5209] = 5176, + [5210] = 2510, + [5211] = 5211, + [5212] = 5160, + [5213] = 5160, + [5214] = 5160, + [5215] = 1504, + [5216] = 5216, + [5217] = 5040, + [5218] = 5218, + [5219] = 1914, + [5220] = 5134, + [5221] = 5127, + [5222] = 5222, + [5223] = 5223, + [5224] = 5224, + [5225] = 1911, + [5226] = 1912, + [5227] = 2499, + [5228] = 5126, + [5229] = 1921, + [5230] = 5218, + [5231] = 5150, + [5232] = 5232, + [5233] = 5233, + [5234] = 5068, + [5235] = 5216, + [5236] = 5099, + [5237] = 5142, + [5238] = 5238, + [5239] = 5117, + [5240] = 5240, + [5241] = 5222, + [5242] = 5216, + [5243] = 5037, + [5244] = 5062, + [5245] = 5085, + [5246] = 5216, + [5247] = 5039, + [5248] = 1925, + [5249] = 5216, + [5250] = 1940, + [5251] = 1904, + [5252] = 5222, + [5253] = 2510, + [5254] = 5254, + [5255] = 1905, + [5256] = 1918, + [5257] = 1928, + [5258] = 5224, + [5259] = 1913, + [5260] = 5222, + [5261] = 1908, + [5262] = 5254, + [5263] = 5030, + [5264] = 1907, + [5265] = 5222, + [5266] = 5218, + [5267] = 1916, + [5268] = 5218, + [5269] = 5216, + [5270] = 4941, + [5271] = 5271, + [5272] = 5218, + [5273] = 1935, + [5274] = 5222, + [5275] = 5222, + [5276] = 5224, + [5277] = 5277, + [5278] = 5222, + [5279] = 5216, + [5280] = 5218, + [5281] = 5216, + [5282] = 5216, + [5283] = 5224, + [5284] = 1517, + [5285] = 5222, + [5286] = 4921, + [5287] = 1502, + [5288] = 306, + [5289] = 1507, + [5290] = 2510, + [5291] = 1499, + [5292] = 2499, + [5293] = 5293, + [5294] = 303, + [5295] = 1658, + [5296] = 5218, + [5297] = 5297, + [5298] = 1519, + [5299] = 5299, + [5300] = 5300, + [5301] = 5109, + [5302] = 5112, + [5303] = 5088, + [5304] = 5109, + [5305] = 5095, + [5306] = 5102, + [5307] = 5307, + [5308] = 5308, + [5309] = 2499, + [5310] = 5037, + [5311] = 5311, + [5312] = 4941, + [5313] = 5112, + [5314] = 5150, + [5315] = 5085, + [5316] = 2510, + [5317] = 5317, + [5318] = 5062, + [5319] = 5095, + [5320] = 5039, + [5321] = 5102, + [5322] = 5117, + [5323] = 4921, + [5324] = 5088, + [5325] = 5037, + [5326] = 5308, + [5327] = 5062, + [5328] = 5039, + [5329] = 5126, + [5330] = 5127, + [5331] = 5085, + [5332] = 5142, + [5333] = 5308, + [5334] = 5099, + [5335] = 5134, + [5336] = 5336, + [5337] = 5150, + [5338] = 2510, + [5339] = 5117, + [5340] = 5142, + [5341] = 5341, + [5342] = 5342, + [5343] = 5099, + [5344] = 5344, + [5345] = 5336, + [5346] = 5099, + [5347] = 5150, + [5348] = 5150, + [5349] = 5336, + [5350] = 5126, + [5351] = 5126, + [5352] = 5336, + [5353] = 5353, + [5354] = 5336, + [5355] = 2499, + [5356] = 5356, + [5357] = 5102, + [5358] = 5127, + [5359] = 5095, + [5360] = 5088, + [5361] = 5361, + [5362] = 5336, + [5363] = 5112, + [5364] = 5341, + [5365] = 5341, + [5366] = 5109, + [5367] = 5367, + [5368] = 5341, + [5369] = 5353, + [5370] = 5370, + [5371] = 5336, + [5372] = 5356, + [5373] = 5341, + [5374] = 5142, + [5375] = 5134, + [5376] = 5342, + [5377] = 5377, + [5378] = 5342, + [5379] = 5342, + [5380] = 5370, + [5381] = 5336, + [5382] = 2937, + [5383] = 5336, + [5384] = 2973, + [5385] = 5336, + [5386] = 5353, + [5387] = 5367, + [5388] = 5099, + [5389] = 5336, + [5390] = 5336, + [5391] = 5391, + [5392] = 5392, + [5393] = 5342, + [5394] = 2499, + [5395] = 5356, + [5396] = 5336, + [5397] = 5134, + [5398] = 5356, + [5399] = 2955, + [5400] = 2510, + [5401] = 5336, + [5402] = 5117, + [5403] = 5403, + [5404] = 5341, + [5405] = 5142, + [5406] = 5341, + [5407] = 5370, + [5408] = 5341, + [5409] = 5126, + [5410] = 5410, + [5411] = 5079, + [5412] = 5356, + [5413] = 5413, + [5414] = 5336, + [5415] = 5356, + [5416] = 5082, + [5417] = 5356, + [5418] = 5127, + [5419] = 5419, + [5420] = 5336, + [5421] = 5342, + [5422] = 5370, + [5423] = 5039, + [5424] = 5353, + [5425] = 5126, + [5426] = 5150, + [5427] = 5099, + [5428] = 5142, + [5429] = 5085, + [5430] = 5367, + [5431] = 5117, + [5432] = 5134, + [5433] = 5433, + [5434] = 5062, + [5435] = 5336, + [5436] = 5037, + [5437] = 5341, + [5438] = 5127, + [5439] = 5127, + [5440] = 5134, + [5441] = 5008, + [5442] = 5117, + [5443] = 5029, + [5444] = 5007, + [5445] = 5336, + [5446] = 5367, + [5447] = 5447, + [5448] = 5448, + [5449] = 5449, + [5450] = 5450, + [5451] = 5451, + [5452] = 5448, + [5453] = 5030, + [5454] = 5454, + [5455] = 5040, + [5456] = 5454, + [5457] = 5448, + [5458] = 5068, + [5459] = 5448, + [5460] = 5127, + [5461] = 5134, + [5462] = 5454, + [5463] = 5117, + [5464] = 5142, + [5465] = 5465, + [5466] = 5099, + [5467] = 5150, + [5468] = 5126, + [5469] = 5469, + [5470] = 5120, + [5471] = 5471, + [5472] = 5448, + [5473] = 5473, + [5474] = 5474, + [5475] = 5475, + [5476] = 5159, + [5477] = 5450, + [5478] = 5141, + [5479] = 5094, + [5480] = 5454, + [5481] = 5037, + [5482] = 5062, + [5483] = 5454, + [5484] = 5085, + [5485] = 5039, + [5486] = 5448, + [5487] = 5448, + [5488] = 5454, + [5489] = 5489, + [5490] = 5450, + [5491] = 5491, + [5492] = 5450, + [5493] = 5493, + [5494] = 5454, + [5495] = 5495, + [5496] = 5495, + [5497] = 5142, + [5498] = 5498, + [5499] = 5099, + [5500] = 5495, + [5501] = 5150, + [5502] = 5126, + [5503] = 5117, + [5504] = 5495, + [5505] = 5505, + [5506] = 5506, + [5507] = 5495, + [5508] = 5134, + [5509] = 5127, + [5510] = 5510, + [5511] = 5511, + [5512] = 5512, + [5513] = 5513, + [5514] = 5514, + [5515] = 5495, + [5516] = 5495, + [5517] = 5513, + [5518] = 5518, + [5519] = 5519, + [5520] = 5520, + [5521] = 5521, + [5522] = 5522, + [5523] = 5523, + [5524] = 5519, + [5525] = 5525, + [5526] = 5520, + [5527] = 5527, + [5528] = 5521, + [5529] = 5529, + [5530] = 5530, + [5531] = 5531, + [5532] = 5532, + [5533] = 5533, + [5534] = 5534, + [5535] = 5535, + [5536] = 5536, + [5537] = 5527, + [5538] = 5538, + [5539] = 5539, + [5540] = 5519, + [5541] = 5541, + [5542] = 5542, + [5543] = 5543, + [5544] = 5544, + [5545] = 5520, + [5546] = 5546, + [5547] = 5543, + [5548] = 5548, + [5549] = 5521, + [5550] = 5538, + [5551] = 5541, + [5552] = 5552, + [5553] = 5553, + [5554] = 5538, + [5555] = 5552, + [5556] = 5536, + [5557] = 5527, + [5558] = 5533, + [5559] = 5541, + [5560] = 5533, + [5561] = 5527, + [5562] = 5538, + [5563] = 5541, + [5564] = 5522, + [5565] = 5542, + [5566] = 5525, + [5567] = 4941, + [5568] = 5539, + [5569] = 5535, + [5570] = 5531, + [5571] = 5571, + [5572] = 5536, + [5573] = 5573, + [5574] = 5552, + [5575] = 5575, + [5576] = 5522, + [5577] = 5546, + [5578] = 5553, + [5579] = 5544, + [5580] = 5580, + [5581] = 5581, + [5582] = 5582, + [5583] = 5539, + [5584] = 5543, + [5585] = 5520, + [5586] = 5582, + [5587] = 5546, + [5588] = 5525, + [5589] = 5534, + [5590] = 5548, + [5591] = 5530, + [5592] = 5571, + [5593] = 5531, + [5594] = 5552, + [5595] = 5575, + [5596] = 5582, + [5597] = 5580, + [5598] = 5523, + [5599] = 5535, + [5600] = 5575, + [5601] = 5541, + [5602] = 5581, + [5603] = 5603, + [5604] = 5538, + [5605] = 5605, + [5606] = 5527, + [5607] = 5536, + [5608] = 5533, + [5609] = 5548, + [5610] = 5610, + [5611] = 5605, + [5612] = 5553, + [5613] = 5522, + [5614] = 5525, + [5615] = 5531, + [5616] = 5520, + [5617] = 5571, + [5618] = 5535, + [5619] = 5521, + [5620] = 5543, + [5621] = 5539, + [5622] = 5519, + [5623] = 5536, + [5624] = 5533, + [5625] = 5625, + [5626] = 5575, + [5627] = 5580, + [5628] = 5552, + [5629] = 5603, + [5630] = 5581, + [5631] = 5542, + [5632] = 5571, + [5633] = 5605, + [5634] = 5582, + [5635] = 5525, + [5636] = 5605, + [5637] = 5525, + [5638] = 5546, + [5639] = 5625, + [5640] = 5640, + [5641] = 5641, + [5642] = 5573, + [5643] = 5525, + [5644] = 5543, + [5645] = 5525, + [5646] = 5534, + [5647] = 5520, + [5648] = 5530, + [5649] = 5519, + [5650] = 5529, + [5651] = 5521, + [5652] = 5521, + [5653] = 5573, + [5654] = 5581, + [5655] = 5548, + [5656] = 5531, + [5657] = 5535, + [5658] = 5529, + [5659] = 5525, + [5660] = 5530, + [5661] = 5525, + [5662] = 5539, + [5663] = 5525, + [5664] = 5534, + [5665] = 5625, + [5666] = 5666, + [5667] = 5544, + [5668] = 5543, + [5669] = 5519, + [5670] = 5553, + [5671] = 5552, + [5672] = 5536, + [5673] = 5522, + [5674] = 5522, + [5675] = 5625, + [5676] = 5536, + [5677] = 5521, + [5678] = 5533, + [5679] = 5529, + [5680] = 5625, + [5681] = 5530, + [5682] = 5534, + [5683] = 5552, + [5684] = 5527, + [5685] = 5625, + [5686] = 5523, + [5687] = 5538, + [5688] = 5541, + [5689] = 5539, + [5690] = 5543, + [5691] = 5605, + [5692] = 5605, + [5693] = 5527, + [5694] = 5582, + [5695] = 5525, + [5696] = 5581, + [5697] = 5582, + [5698] = 5553, + [5699] = 5580, + [5700] = 5534, + [5701] = 5575, + [5702] = 5702, + [5703] = 5581, + [5704] = 5571, + [5705] = 5530, + [5706] = 5548, + [5707] = 5546, + [5708] = 5708, + [5709] = 5580, + [5710] = 5575, + [5711] = 5571, + [5712] = 5580, + [5713] = 5544, + [5714] = 5553, + [5715] = 5539, + [5716] = 5533, + [5717] = 5530, + [5718] = 5573, + [5719] = 5520, + [5720] = 5535, + [5721] = 5721, + [5722] = 5531, + [5723] = 5525, + [5724] = 5531, + [5725] = 5531, + [5726] = 5552, + [5727] = 5552, + [5728] = 5535, + [5729] = 5538, + [5730] = 5573, + [5731] = 5529, + [5732] = 5539, + [5733] = 5733, + [5734] = 5534, + [5735] = 5521, + [5736] = 5625, + [5737] = 5605, + [5738] = 5520, + [5739] = 5542, + [5740] = 5603, + [5741] = 5520, + [5742] = 5522, + [5743] = 5625, + [5744] = 5571, + [5745] = 5519, + [5746] = 5523, + [5747] = 5533, + [5748] = 5748, + [5749] = 5527, + [5750] = 5571, + [5751] = 5571, + [5752] = 5538, + [5753] = 5548, + [5754] = 5541, + [5755] = 5529, + [5756] = 5553, + [5757] = 5541, + [5758] = 5519, + [5759] = 5575, + [5760] = 5546, + [5761] = 5548, + [5762] = 5580, + [5763] = 5763, + [5764] = 5525, + [5765] = 5575, + [5766] = 5523, + [5767] = 5525, + [5768] = 5581, + [5769] = 5605, + [5770] = 5541, + [5771] = 5546, + [5772] = 5582, + [5773] = 5538, + [5774] = 5582, + [5775] = 5527, + [5776] = 5521, + [5777] = 5533, + [5778] = 5625, + [5779] = 5582, + [5780] = 5522, + [5781] = 5605, + [5782] = 5529, + [5783] = 5529, + [5784] = 5575, + [5785] = 5603, + [5786] = 5531, + [5787] = 5536, + [5788] = 5535, + [5789] = 5581, + [5790] = 5536, + [5791] = 5553, + [5792] = 5552, + [5793] = 5573, + [5794] = 5625, + [5795] = 5523, + [5796] = 5580, + [5797] = 5539, + [5798] = 5523, + [5799] = 5581, + [5800] = 5573, + [5801] = 5519, + [5802] = 5530, + [5803] = 5580, + [5804] = 5525, + [5805] = 5534, + [5806] = 5543, + [5807] = 5543, + [5808] = 5534, + [5809] = 5666, + [5810] = 5530, + [5811] = 5535, + [5812] = 5529, + [5813] = 5520, + [5814] = 5814, + [5815] = 5815, + [5816] = 5816, + [5817] = 5817, + [5818] = 5818, + [5819] = 5817, + [5820] = 5820, + [5821] = 5821, + [5822] = 5822, + [5823] = 5823, + [5824] = 5824, + [5825] = 5820, + [5826] = 5826, + [5827] = 5827, + [5828] = 5828, + [5829] = 5821, + [5830] = 5817, + [5831] = 5820, + [5832] = 5832, + [5833] = 5815, + [5834] = 5824, + [5835] = 5835, + [5836] = 5836, + [5837] = 5837, + [5838] = 5815, + [5839] = 5839, + [5840] = 5815, + [5841] = 5841, + [5842] = 5842, + [5843] = 5843, + [5844] = 5814, + [5845] = 5845, + [5846] = 5846, + [5847] = 5847, + [5848] = 5848, + [5849] = 5849, + [5850] = 5850, + [5851] = 5851, + [5852] = 5852, + [5853] = 5815, + [5854] = 5826, + [5855] = 5855, + [5856] = 5856, + [5857] = 5857, + [5858] = 5858, + [5859] = 5859, + [5860] = 5860, + [5861] = 5848, + [5862] = 5816, + [5863] = 5863, + [5864] = 5864, + [5865] = 5865, + [5866] = 5866, + [5867] = 5815, + [5868] = 5868, + [5869] = 5869, + [5870] = 5870, + [5871] = 5847, + [5872] = 5872, + [5873] = 5866, + [5874] = 5860, + [5875] = 5835, + [5876] = 5839, + [5877] = 5870, + [5878] = 5815, + [5879] = 5860, + [5880] = 5866, + [5881] = 5881, + [5882] = 5870, + [5883] = 5883, + [5884] = 5856, + [5885] = 5851, + [5886] = 5865, + [5887] = 5864, + [5888] = 5863, + [5889] = 5865, + [5890] = 5864, + [5891] = 5891, + [5892] = 5856, + [5893] = 5842, + [5894] = 5863, + [5895] = 5849, + [5896] = 5896, + [5897] = 5865, + [5898] = 5898, + [5899] = 5864, + [5900] = 5900, + [5901] = 5863, + [5902] = 5902, + [5903] = 5847, + [5904] = 5851, + [5905] = 5815, + [5906] = 5852, + [5907] = 5863, + [5908] = 5826, + [5909] = 5815, + [5910] = 5816, + [5911] = 5846, + [5912] = 5845, + [5913] = 5818, + [5914] = 5846, + [5915] = 5814, + [5916] = 5842, + [5917] = 5845, + [5918] = 5814, + [5919] = 5842, + [5920] = 5835, + [5921] = 5864, + [5922] = 5814, + [5923] = 5824, + [5924] = 5865, + [5925] = 5865, + [5926] = 5847, + [5927] = 5927, + [5928] = 5928, + [5929] = 5864, + [5930] = 5839, + [5931] = 5820, + [5932] = 5845, + [5933] = 5815, + [5934] = 5863, + [5935] = 5846, + [5936] = 5826, + [5937] = 5818, + [5938] = 5817, + [5939] = 5939, + [5940] = 5940, + [5941] = 5859, + [5942] = 5942, + [5943] = 5826, + [5944] = 5824, + [5945] = 5945, + [5946] = 5859, + [5947] = 5826, + [5948] = 5820, + [5949] = 5817, + [5950] = 5817, + [5951] = 5951, + [5952] = 5820, + [5953] = 5826, + [5954] = 5954, + [5955] = 5955, + [5956] = 5845, + [5957] = 5865, + [5958] = 5818, + [5959] = 5817, + [5960] = 5820, + [5961] = 5864, + [5962] = 5818, + [5963] = 5826, + [5964] = 5863, + [5965] = 5842, + [5966] = 5816, + [5967] = 5845, + [5968] = 5846, + [5969] = 5824, + [5970] = 5826, + [5971] = 5971, + [5972] = 5972, + [5973] = 5973, + [5974] = 5974, + [5975] = 5859, + [5976] = 5815, + [5977] = 5816, + [5978] = 5978, + [5979] = 5979, + [5980] = 5839, + [5981] = 5818, + [5982] = 5826, + [5983] = 5865, + [5984] = 5863, + [5985] = 5864, + [5986] = 5865, + [5987] = 5864, + [5988] = 5863, + [5989] = 5989, + [5990] = 5866, + [5991] = 5860, + [5992] = 5826, + [5993] = 5842, + [5994] = 5852, + [5995] = 5845, + [5996] = 5846, + [5997] = 5997, + [5998] = 5815, + [5999] = 5999, + [6000] = 6000, + [6001] = 5856, + [6002] = 5824, + [6003] = 5863, + [6004] = 5818, + [6005] = 5865, + [6006] = 5864, + [6007] = 5816, + [6008] = 5852, + [6009] = 5864, + [6010] = 5865, + [6011] = 6011, + [6012] = 5815, + [6013] = 5852, + [6014] = 6014, + [6015] = 5870, + [6016] = 6016, + [6017] = 5839, + [6018] = 5866, + [6019] = 5860, + [6020] = 5815, + [6021] = 5872, + [6022] = 5863, + [6023] = 5826, + [6024] = 6024, + [6025] = 5860, + [6026] = 5847, + [6027] = 5856, + [6028] = 6028, + [6029] = 6029, + [6030] = 5863, + [6031] = 5864, + [6032] = 5859, + [6033] = 5865, + [6034] = 5847, + [6035] = 5814, + [6036] = 5848, + [6037] = 5866, + [6038] = 5835, + [6039] = 5815, + [6040] = 6040, + [6041] = 5835, + [6042] = 6042, + [6043] = 5872, + [6044] = 5815, + [6045] = 6045, + [6046] = 5848, + [6047] = 5979, + [6048] = 5818, + [6049] = 5839, + [6050] = 5815, + [6051] = 5865, + [6052] = 5848, + [6053] = 5864, + [6054] = 6054, + [6055] = 5863, + [6056] = 6056, + [6057] = 5826, + [6058] = 5860, + [6059] = 5866, + [6060] = 5870, + [6061] = 5839, + [6062] = 5847, + [6063] = 5872, + [6064] = 5826, + [6065] = 5851, + [6066] = 5865, + [6067] = 6056, + [6068] = 5846, + [6069] = 5870, + [6070] = 5864, + [6071] = 5837, + [6072] = 5863, + [6073] = 5842, + [6074] = 5856, + [6075] = 5845, + [6076] = 5846, + [6077] = 5870, + [6078] = 5847, + [6079] = 5815, + [6080] = 5839, + [6081] = 6081, + [6082] = 5815, + [6083] = 5863, + [6084] = 5864, + [6085] = 5865, + [6086] = 5846, + [6087] = 5866, + [6088] = 5860, + [6089] = 5845, + [6090] = 5814, + [6091] = 6091, + [6092] = 5835, + [6093] = 5842, + [6094] = 6045, + [6095] = 5866, + [6096] = 5860, + [6097] = 5824, + [6098] = 5820, + [6099] = 5817, + [6100] = 5842, + [6101] = 5826, + [6102] = 5859, + [6103] = 5815, + [6104] = 5826, + [6105] = 6105, + [6106] = 6106, + [6107] = 5863, + [6108] = 5864, + [6109] = 5865, + [6110] = 5818, + [6111] = 5816, + [6112] = 6112, + [6113] = 5902, + [6114] = 6114, + [6115] = 6115, + [6116] = 6116, + [6117] = 6117, + [6118] = 6118, + [6119] = 6119, + [6120] = 6120, + [6121] = 6121, + [6122] = 6122, + [6123] = 6123, + [6124] = 6124, + [6125] = 6125, + [6126] = 6126, + [6127] = 6127, + [6128] = 6128, + [6129] = 6118, + [6130] = 6130, + [6131] = 6131, + [6132] = 6132, + [6133] = 6133, + [6134] = 6134, + [6135] = 6135, + [6136] = 6136, + [6137] = 6137, + [6138] = 6138, + [6139] = 6139, + [6140] = 6125, + [6141] = 6139, + [6142] = 6142, + [6143] = 6142, + [6144] = 6120, + [6145] = 6134, + [6146] = 6146, + [6147] = 6146, + [6148] = 6148, + [6149] = 6128, + [6150] = 6146, + [6151] = 6151, + [6152] = 6152, + [6153] = 6134, + [6154] = 6154, + [6155] = 6155, + [6156] = 6156, + [6157] = 6157, + [6158] = 6158, + [6159] = 6134, + [6160] = 6128, + [6161] = 6161, + [6162] = 6162, + [6163] = 6114, + [6164] = 6135, + [6165] = 6165, + [6166] = 6138, + [6167] = 6128, + [6168] = 6137, + [6169] = 6146, + [6170] = 6170, + [6171] = 6134, + [6172] = 6133, + [6173] = 6117, + [6174] = 6142, + [6175] = 6132, + [6176] = 6139, + [6177] = 6125, + [6178] = 6138, + [6179] = 6137, + [6180] = 6135, + [6181] = 6133, + [6182] = 6130, + [6183] = 6132, + [6184] = 6127, + [6185] = 6128, + [6186] = 6130, + [6187] = 6127, + [6188] = 6126, + [6189] = 6134, + [6190] = 6123, + [6191] = 6126, + [6192] = 6115, + [6193] = 6123, + [6194] = 6136, + [6195] = 6124, + [6196] = 6122, + [6197] = 6119, + [6198] = 6116, + [6199] = 6199, + [6200] = 6200, + [6201] = 6118, + [6202] = 6202, + [6203] = 6121, + [6204] = 6131, + [6205] = 6134, + [6206] = 6120, + [6207] = 6134, + [6208] = 6146, + [6209] = 6202, + [6210] = 6210, + [6211] = 6120, + [6212] = 6151, + [6213] = 6152, + [6214] = 6154, + [6215] = 6155, + [6216] = 6156, + [6217] = 6158, + [6218] = 6134, + [6219] = 6219, + [6220] = 6128, + [6221] = 6161, + [6222] = 6222, + [6223] = 6115, + [6224] = 6162, + [6225] = 6225, + [6226] = 6202, + [6227] = 6128, + [6228] = 6165, + [6229] = 6165, + [6230] = 6114, + [6231] = 6134, + [6232] = 6162, + [6233] = 6233, + [6234] = 6234, + [6235] = 6136, + [6236] = 6142, + [6237] = 6139, + [6238] = 6125, + [6239] = 6138, + [6240] = 6134, + [6241] = 6137, + [6242] = 6135, + [6243] = 6134, + [6244] = 6133, + [6245] = 6132, + [6246] = 6134, + [6247] = 6134, + [6248] = 6130, + [6249] = 6124, + [6250] = 6161, + [6251] = 6122, + [6252] = 6252, + [6253] = 6127, + [6254] = 6170, + [6255] = 6126, + [6256] = 6225, + [6257] = 6123, + [6258] = 6202, + [6259] = 6259, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 6119, + [6264] = 6115, + [6265] = 6136, + [6266] = 6136, + [6267] = 6128, + [6268] = 6124, + [6269] = 6122, + [6270] = 6119, + [6271] = 6120, + [6272] = 6116, + [6273] = 6200, + [6274] = 6117, + [6275] = 6131, + [6276] = 6121, + [6277] = 6131, + [6278] = 6117, + [6279] = 6116, + [6280] = 6280, + [6281] = 6121, + [6282] = 6157, + [6283] = 6200, + [6284] = 6134, + [6285] = 6200, + [6286] = 6121, + [6287] = 6287, + [6288] = 6288, + [6289] = 6156, + [6290] = 6260, + [6291] = 6155, + [6292] = 6233, + [6293] = 6154, + [6294] = 6210, + [6295] = 6151, + [6296] = 6152, + [6297] = 6154, + [6298] = 6155, + [6299] = 6156, + [6300] = 6158, + [6301] = 6301, + [6302] = 6142, + [6303] = 6152, + [6304] = 6128, + [6305] = 6259, + [6306] = 6151, + [6307] = 6131, + [6308] = 6252, + [6309] = 6259, + [6310] = 6262, + [6311] = 6161, + [6312] = 6117, + [6313] = 6313, + [6314] = 6314, + [6315] = 6315, + [6316] = 6146, + [6317] = 6162, + [6318] = 6119, + [6319] = 6114, + [6320] = 6165, + [6321] = 6321, + [6322] = 6219, + [6323] = 6122, + [6324] = 6134, + [6325] = 6157, + [6326] = 6124, + [6327] = 6158, + [6328] = 6117, + [6329] = 6120, + [6330] = 6131, + [6331] = 6118, + [6332] = 6121, + [6333] = 6200, + [6334] = 484, + [6335] = 6335, + [6336] = 6116, + [6337] = 6142, + [6338] = 6119, + [6339] = 6122, + [6340] = 6340, + [6341] = 6139, + [6342] = 6125, + [6343] = 6124, + [6344] = 6344, + [6345] = 6138, + [6346] = 6136, + [6347] = 6200, + [6348] = 6137, + [6349] = 6120, + [6350] = 6135, + [6351] = 6222, + [6352] = 6139, + [6353] = 6287, + [6354] = 6133, + [6355] = 6132, + [6356] = 6130, + [6357] = 6127, + [6358] = 6126, + [6359] = 6123, + [6360] = 6360, + [6361] = 6288, + [6362] = 6125, + [6363] = 6363, + [6364] = 6157, + [6365] = 6134, + [6366] = 6115, + [6367] = 6210, + [6368] = 6123, + [6369] = 6136, + [6370] = 6124, + [6371] = 6122, + [6372] = 6119, + [6373] = 6116, + [6374] = 6126, + [6375] = 6127, + [6376] = 346, + [6377] = 6200, + [6378] = 6121, + [6379] = 6130, + [6380] = 6131, + [6381] = 6116, + [6382] = 6133, + [6383] = 6117, + [6384] = 6135, + [6385] = 6157, + [6386] = 6134, + [6387] = 6344, + [6388] = 6137, + [6389] = 6138, + [6390] = 6222, + [6391] = 6219, + [6392] = 6392, + [6393] = 6219, + [6394] = 6394, + [6395] = 6395, + [6396] = 6125, + [6397] = 6139, + [6398] = 6120, + [6399] = 6142, + [6400] = 6400, + [6401] = 6401, + [6402] = 6402, + [6403] = 6403, + [6404] = 6151, + [6405] = 6158, + [6406] = 6152, + [6407] = 6154, + [6408] = 6155, + [6409] = 6156, + [6410] = 6158, + [6411] = 6118, + [6412] = 6412, + [6413] = 6413, + [6414] = 6414, + [6415] = 6132, + [6416] = 6202, + [6417] = 6340, + [6418] = 6118, + [6419] = 6128, + [6420] = 6259, + [6421] = 6262, + [6422] = 6260, + [6423] = 6115, + [6424] = 6287, + [6425] = 6210, + [6426] = 6426, + [6427] = 6252, + [6428] = 6161, + [6429] = 6429, + [6430] = 6340, + [6431] = 6120, + [6432] = 6432, + [6433] = 6301, + [6434] = 6262, + [6435] = 6260, + [6436] = 6436, + [6437] = 6287, + [6438] = 6438, + [6439] = 6340, + [6440] = 6162, + [6441] = 6151, + [6442] = 6165, + [6443] = 6114, + [6444] = 6165, + [6445] = 6114, + [6446] = 6288, + [6447] = 6233, + [6448] = 6234, + [6449] = 6301, + [6450] = 6450, + [6451] = 6451, + [6452] = 6262, + [6453] = 6260, + [6454] = 6120, + [6455] = 6455, + [6456] = 6456, + [6457] = 6210, + [6458] = 6340, + [6459] = 6120, + [6460] = 6152, + [6461] = 6461, + [6462] = 6154, + [6463] = 6161, + [6464] = 6155, + [6465] = 6287, + [6466] = 6165, + [6467] = 6252, + [6468] = 6468, + [6469] = 6469, + [6470] = 6340, + [6471] = 6142, + [6472] = 6139, + [6473] = 6125, + [6474] = 6165, + [6475] = 6158, + [6476] = 6259, + [6477] = 6477, + [6478] = 6478, + [6479] = 6138, + [6480] = 6137, + [6481] = 6135, + [6482] = 6133, + [6483] = 6132, + [6484] = 6130, + [6485] = 6127, + [6486] = 6126, + [6487] = 6123, + [6488] = 6114, + [6489] = 6114, + [6490] = 6335, + [6491] = 6128, + [6492] = 6115, + [6493] = 6156, + [6494] = 6156, + [6495] = 6158, + [6496] = 6136, + [6497] = 6124, + [6498] = 6122, + [6499] = 6119, + [6500] = 6116, + [6501] = 6200, + [6502] = 6121, + [6503] = 6131, + [6504] = 6117, + [6505] = 6114, + [6506] = 6157, + [6507] = 6134, + [6508] = 6162, + [6509] = 6233, + [6510] = 6156, + [6511] = 6301, + [6512] = 6512, + [6513] = 6234, + [6514] = 6155, + [6515] = 6154, + [6516] = 6152, + [6517] = 6120, + [6518] = 6151, + [6519] = 6519, + [6520] = 6262, + [6521] = 6260, + [6522] = 6151, + [6523] = 6152, + [6524] = 6170, + [6525] = 6225, + [6526] = 6252, + [6527] = 6280, + [6528] = 6260, + [6529] = 6154, + [6530] = 6262, + [6531] = 6155, + [6532] = 6156, + [6533] = 6158, + [6534] = 6225, + [6535] = 6170, + [6536] = 6301, + [6537] = 6162, + [6538] = 6128, + [6539] = 6259, + [6540] = 6134, + [6541] = 6252, + [6542] = 6161, + [6543] = 6280, + [6544] = 6154, + [6545] = 6545, + [6546] = 6157, + [6547] = 6547, + [6548] = 6548, + [6549] = 6138, + [6550] = 6137, + [6551] = 6222, + [6552] = 6162, + [6553] = 6233, + [6554] = 6301, + [6555] = 6152, + [6556] = 6135, + [6557] = 6234, + [6558] = 6287, + [6559] = 6133, + [6560] = 6161, + [6561] = 6234, + [6562] = 6233, + [6563] = 6162, + [6564] = 6132, + [6565] = 6165, + [6566] = 6151, + [6567] = 6117, + [6568] = 6131, + [6569] = 6340, + [6570] = 6161, + [6571] = 6130, + [6572] = 6335, + [6573] = 6121, + [6574] = 6200, + [6575] = 6116, + [6576] = 6127, + [6577] = 6120, + [6578] = 6119, + [6579] = 6301, + [6580] = 6126, + [6581] = 6335, + [6582] = 6210, + [6583] = 6122, + [6584] = 6124, + [6585] = 6252, + [6586] = 6340, + [6587] = 6123, + [6588] = 6588, + [6589] = 6115, + [6590] = 6590, + [6591] = 6136, + [6592] = 6262, + [6593] = 6155, + [6594] = 6335, + [6595] = 6287, + [6596] = 6260, + [6597] = 6225, + [6598] = 6170, + [6599] = 6202, + [6600] = 6123, + [6601] = 6126, + [6602] = 6118, + [6603] = 6603, + [6604] = 6127, + [6605] = 6130, + [6606] = 6132, + [6607] = 6133, + [6608] = 6135, + [6609] = 6259, + [6610] = 6137, + [6611] = 6138, + [6612] = 6125, + [6613] = 6613, + [6614] = 6139, + [6615] = 6142, + [6616] = 6128, + [6617] = 6617, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 6621, + [6622] = 6622, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6626, + [6627] = 6627, + [6628] = 6628, + [6629] = 6629, + [6630] = 6630, + [6631] = 6631, + [6632] = 6632, + [6633] = 6633, + [6634] = 6634, + [6635] = 6635, + [6636] = 6636, + [6637] = 6637, + [6638] = 6638, + [6639] = 6639, + [6640] = 6640, + [6641] = 6641, + [6642] = 6642, + [6643] = 6643, + [6644] = 6644, + [6645] = 6645, + [6646] = 6646, + [6647] = 6647, + [6648] = 6648, + [6649] = 6649, + [6650] = 6650, + [6651] = 6651, + [6652] = 6652, + [6653] = 6653, + [6654] = 6654, + [6655] = 6655, + [6656] = 6656, + [6657] = 6657, + [6658] = 6658, + [6659] = 6652, + [6660] = 6660, + [6661] = 6661, + [6662] = 6662, + [6663] = 6663, + [6664] = 6664, + [6665] = 6665, + [6666] = 6627, + [6667] = 6667, + [6668] = 6668, + [6669] = 6669, + [6670] = 6670, + [6671] = 6671, + [6672] = 6634, + [6673] = 6673, + [6674] = 6674, + [6675] = 6675, + [6676] = 6676, + [6677] = 6677, + [6678] = 6678, + [6679] = 6679, + [6680] = 6680, + [6681] = 6681, + [6682] = 6682, + [6683] = 6640, + [6684] = 6684, + [6685] = 6685, + [6686] = 6686, + [6687] = 6634, + [6688] = 6688, + [6689] = 6689, + [6690] = 6690, + [6691] = 6691, + [6692] = 6692, + [6693] = 6661, + [6694] = 6674, + [6695] = 6685, + [6696] = 6640, + [6697] = 6677, + [6698] = 6631, + [6699] = 6699, + [6700] = 6626, + [6701] = 6663, + [6702] = 6623, + [6703] = 6703, + [6704] = 6674, + [6705] = 6627, + [6706] = 6628, + [6707] = 6707, + [6708] = 6630, + [6709] = 6623, + [6710] = 6710, + [6711] = 6643, + [6712] = 6712, + [6713] = 6638, + [6714] = 6636, + [6715] = 6715, + [6716] = 6716, + [6717] = 6663, + [6718] = 6718, + [6719] = 6719, + [6720] = 6720, + [6721] = 6721, + [6722] = 6718, + [6723] = 6650, + [6724] = 6724, + [6725] = 6665, + [6726] = 6712, + [6727] = 6658, + [6728] = 6658, + [6729] = 6645, + [6730] = 6651, + [6731] = 6635, + [6732] = 6732, + [6733] = 6645, + [6734] = 6665, + [6735] = 6650, + [6736] = 6685, + [6737] = 6635, + [6738] = 6718, + [6739] = 6720, + [6740] = 6670, + [6741] = 6716, + [6742] = 6715, + [6743] = 6677, + [6744] = 6707, + [6745] = 6669, + [6746] = 6712, + [6747] = 6667, + [6748] = 6662, + [6749] = 6621, + [6750] = 6660, + [6751] = 6638, + [6752] = 6636, + [6753] = 6634, + [6754] = 6625, + [6755] = 6643, + [6756] = 6622, + [6757] = 6620, + [6758] = 6661, + [6759] = 6618, + [6760] = 6629, + [6761] = 6633, + [6762] = 6641, + [6763] = 6631, + [6764] = 6642, + [6765] = 6626, + [6766] = 6657, + [6767] = 6674, + [6768] = 6686, + [6769] = 6623, + [6770] = 6627, + [6771] = 6628, + [6772] = 6673, + [6773] = 6630, + [6774] = 6675, + [6775] = 6650, + [6776] = 6679, + [6777] = 6680, + [6778] = 6663, + [6779] = 6682, + [6780] = 6640, + [6781] = 6685, + [6782] = 6720, + [6783] = 6783, + [6784] = 6684, + [6785] = 6686, + [6786] = 6677, + [6787] = 6719, + [6788] = 6628, + [6789] = 6789, + [6790] = 6676, + [6791] = 6791, + [6792] = 6657, + [6793] = 6634, + [6794] = 6794, + [6795] = 6630, + [6796] = 6796, + [6797] = 6797, + [6798] = 6661, + [6799] = 6799, + [6800] = 6663, + [6801] = 6801, + [6802] = 6660, + [6803] = 6628, + [6804] = 6645, + [6805] = 6630, + [6806] = 6650, + [6807] = 6623, + [6808] = 6684, + [6809] = 6661, + [6810] = 6686, + [6811] = 6635, + [6812] = 6684, + [6813] = 6682, + [6814] = 6680, + [6815] = 6674, + [6816] = 6679, + [6817] = 6677, + [6818] = 6682, + [6819] = 6662, + [6820] = 6675, + [6821] = 6664, + [6822] = 6680, + [6823] = 6823, + [6824] = 6824, + [6825] = 6642, + [6826] = 6826, + [6827] = 6710, + [6828] = 6628, + [6829] = 6673, + [6830] = 6641, + [6831] = 6643, + [6832] = 6718, + [6833] = 6833, + [6834] = 6677, + [6835] = 6835, + [6836] = 6836, + [6837] = 6618, + [6838] = 6656, + [6839] = 6655, + [6840] = 6720, + [6841] = 6841, + [6842] = 6677, + [6843] = 6649, + [6844] = 6844, + [6845] = 6620, + [6846] = 6846, + [6847] = 6712, + [6848] = 6622, + [6849] = 6849, + [6850] = 6625, + [6851] = 6851, + [6852] = 6630, + [6853] = 6628, + [6854] = 6642, + [6855] = 6641, + [6856] = 6856, + [6857] = 6627, + [6858] = 6858, + [6859] = 6645, + [6860] = 6670, + [6861] = 6861, + [6862] = 6633, + [6863] = 6629, + [6864] = 6618, + [6865] = 6679, + [6866] = 6716, + [6867] = 6620, + [6868] = 6868, + [6869] = 6622, + [6870] = 6625, + [6871] = 6692, + [6872] = 6872, + [6873] = 6678, + [6874] = 6635, + [6875] = 6686, + [6876] = 6636, + [6877] = 6718, + [6878] = 6681, + [6879] = 6690, + [6880] = 6675, + [6881] = 6881, + [6882] = 6638, + [6883] = 6883, + [6884] = 6884, + [6885] = 6885, + [6886] = 6712, + [6887] = 6887, + [6888] = 6688, + [6889] = 6889, + [6890] = 6890, + [6891] = 6720, + [6892] = 6648, + [6893] = 6635, + [6894] = 6894, + [6895] = 6889, + [6896] = 6636, + [6897] = 6670, + [6898] = 6887, + [6899] = 6899, + [6900] = 6638, + [6901] = 6716, + [6902] = 6715, + [6903] = 6707, + [6904] = 6626, + [6905] = 6905, + [6906] = 6885, + [6907] = 6631, + [6908] = 6908, + [6909] = 6626, + [6910] = 6631, + [6911] = 6905, + [6912] = 6912, + [6913] = 6796, + [6914] = 6673, + [6915] = 6883, + [6916] = 6647, + [6917] = 6881, + [6918] = 6639, + [6919] = 6667, + [6920] = 6637, + [6921] = 6627, + [6922] = 6662, + [6923] = 6660, + [6924] = 6707, + [6925] = 6925, + [6926] = 6667, + [6927] = 6657, + [6928] = 6823, + [6929] = 6626, + [6930] = 6703, + [6931] = 6632, + [6932] = 6932, + [6933] = 6652, + [6934] = 6934, + [6935] = 6625, + [6936] = 6936, + [6937] = 6631, + [6938] = 6699, + [6939] = 6657, + [6940] = 6622, + [6941] = 6660, + [6942] = 6662, + [6943] = 6684, + [6944] = 6682, + [6945] = 6620, + [6946] = 6680, + [6947] = 6679, + [6948] = 6841, + [6949] = 6618, + [6950] = 6664, + [6951] = 6932, + [6952] = 6669, + [6953] = 6675, + [6954] = 6667, + [6955] = 6669, + [6956] = 6661, + [6957] = 6957, + [6958] = 6629, + [6959] = 6633, + [6960] = 6960, + [6961] = 6905, + [6962] = 6962, + [6963] = 6634, + [6964] = 6677, + [6965] = 6679, + [6966] = 6823, + [6967] = 6967, + [6968] = 6633, + [6969] = 6675, + [6970] = 6970, + [6971] = 6676, + [6972] = 6972, + [6973] = 6680, + [6974] = 6974, + [6975] = 6715, + [6976] = 6673, + [6977] = 6699, + [6978] = 6670, + [6979] = 6861, + [6980] = 6703, + [6981] = 6707, + [6982] = 6682, + [6983] = 6629, + [6984] = 6984, + [6985] = 6665, + [6986] = 6986, + [6987] = 6872, + [6988] = 6974, + [6989] = 6715, + [6990] = 6856, + [6991] = 6716, + [6992] = 6670, + [6993] = 6716, + [6994] = 6908, + [6995] = 6720, + [6996] = 6996, + [6997] = 6972, + [6998] = 6668, + [6999] = 6641, + [7000] = 6679, + [7001] = 6663, + [7002] = 7002, + [7003] = 7003, + [7004] = 6635, + [7005] = 6642, + [7006] = 6718, + [7007] = 7007, + [7008] = 6635, + [7009] = 6674, + [7010] = 6849, + [7011] = 7011, + [7012] = 6851, + [7013] = 6643, + [7014] = 6645, + [7015] = 6858, + [7016] = 7016, + [7017] = 6984, + [7018] = 6858, + [7019] = 6643, + [7020] = 6679, + [7021] = 6677, + [7022] = 6712, + [7023] = 7023, + [7024] = 6692, + [7025] = 6718, + [7026] = 6678, + [7027] = 6656, + [7028] = 6720, + [7029] = 6653, + [7030] = 6670, + [7031] = 6681, + [7032] = 6690, + [7033] = 6658, + [7034] = 6716, + [7035] = 6719, + [7036] = 6648, + [7037] = 6635, + [7038] = 6712, + [7039] = 6905, + [7040] = 6715, + [7041] = 6668, + [7042] = 6796, + [7043] = 6715, + [7044] = 6653, + [7045] = 6710, + [7046] = 1800, + [7047] = 6707, + [7048] = 6665, + [7049] = 6662, + [7050] = 6621, + [7051] = 6660, + [7052] = 6658, + [7053] = 6643, + [7054] = 6972, + [7055] = 1807, + [7056] = 6908, + [7057] = 6651, + [7058] = 6858, + [7059] = 6656, + [7060] = 6650, + [7061] = 6692, + [7062] = 6655, + [7063] = 6678, + [7064] = 7064, + [7065] = 6681, + [7066] = 6690, + [7067] = 6621, + [7068] = 6648, + [7069] = 6905, + [7070] = 7070, + [7071] = 6669, + [7072] = 6796, + [7073] = 6674, + [7074] = 7074, + [7075] = 7075, + [7076] = 7076, + [7077] = 6623, + [7078] = 6667, + [7079] = 6663, + [7080] = 6640, + [7081] = 6685, + [7082] = 6629, + [7083] = 6684, + [7084] = 6680, + [7085] = 6682, + [7086] = 6684, + [7087] = 6858, + [7088] = 6638, + [7089] = 6872, + [7090] = 6692, + [7091] = 6649, + [7092] = 6678, + [7093] = 6912, + [7094] = 6681, + [7095] = 6690, + [7096] = 7096, + [7097] = 6648, + [7098] = 6905, + [7099] = 6663, + [7100] = 6686, + [7101] = 6796, + [7102] = 7102, + [7103] = 6712, + [7104] = 6858, + [7105] = 6664, + [7106] = 6684, + [7107] = 6678, + [7108] = 6682, + [7109] = 6681, + [7110] = 6690, + [7111] = 6905, + [7112] = 6680, + [7113] = 6796, + [7114] = 6679, + [7115] = 6858, + [7116] = 6841, + [7117] = 6662, + [7118] = 6660, + [7119] = 6681, + [7120] = 6905, + [7121] = 6718, + [7122] = 6675, + [7123] = 6858, + [7124] = 6823, + [7125] = 6905, + [7126] = 6655, + [7127] = 6858, + [7128] = 6673, + [7129] = 6657, + [7130] = 7064, + [7131] = 7003, + [7132] = 7002, + [7133] = 6715, + [7134] = 7134, + [7135] = 6636, + [7136] = 6656, + [7137] = 6655, + [7138] = 7138, + [7139] = 6974, + [7140] = 6649, + [7141] = 7141, + [7142] = 7142, + [7143] = 7143, + [7144] = 6652, + [7145] = 7145, + [7146] = 6632, + [7147] = 7147, + [7148] = 6688, + [7149] = 6637, + [7150] = 6639, + [7151] = 6648, + [7152] = 6801, + [7153] = 6647, + [7154] = 7154, + [7155] = 6662, + [7156] = 7156, + [7157] = 7157, + [7158] = 7158, + [7159] = 6680, + [7160] = 6851, + [7161] = 6682, + [7162] = 7064, + [7163] = 7003, + [7164] = 7002, + [7165] = 6684, + [7166] = 7166, + [7167] = 6649, + [7168] = 7168, + [7169] = 6849, + [7170] = 7170, + [7171] = 6688, + [7172] = 7172, + [7173] = 6801, + [7174] = 7174, + [7175] = 6712, + [7176] = 7176, + [7177] = 6642, + [7178] = 7064, + [7179] = 7003, + [7180] = 7002, + [7181] = 6718, + [7182] = 6641, + [7183] = 7183, + [7184] = 6707, + [7185] = 6688, + [7186] = 6925, + [7187] = 6801, + [7188] = 6703, + [7189] = 6856, + [7190] = 6861, + [7191] = 6633, + [7192] = 7064, + [7193] = 7003, + [7194] = 7002, + [7195] = 6715, + [7196] = 6688, + [7197] = 6629, + [7198] = 6801, + [7199] = 6618, + [7200] = 7003, + [7201] = 7002, + [7202] = 7202, + [7203] = 6688, + [7204] = 6801, + [7205] = 7003, + [7206] = 7002, + [7207] = 6688, + [7208] = 6688, + [7209] = 7064, + [7210] = 6689, + [7211] = 6620, + [7212] = 6622, + [7213] = 6625, + [7214] = 7214, + [7215] = 7215, + [7216] = 7216, + [7217] = 6881, + [7218] = 6883, + [7219] = 6665, + [7220] = 6885, + [7221] = 6887, + [7222] = 6889, + [7223] = 6689, + [7224] = 6662, + [7225] = 6689, + [7226] = 6651, + [7227] = 6689, + [7228] = 6699, + [7229] = 6689, + [7230] = 6650, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(262); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(267); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(321); + if (lookahead == '.') ADVANCE(402); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(257) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(260) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(138) + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(138) + if (lookahead == '\r') SKIP(1) + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(140) + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(140) + if (lookahead == '\r') SKIP(3) + END_STATE(); + case 5: + if (lookahead == '\n') SKIP(139) + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(139) + if (lookahead == '\r') SKIP(5) + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(141) + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(141) + if (lookahead == '\r') SKIP(7) + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(132) + END_STATE(); + case 10: + if (lookahead == '\n') SKIP(132) + if (lookahead == '\r') SKIP(9) + END_STATE(); + case 11: + if (lookahead == '\n') SKIP(131) + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(131) + if (lookahead == '\r') SKIP(11) + END_STATE(); + case 13: + if (lookahead == '\n') SKIP(195) + END_STATE(); + case 14: + if (lookahead == '\n') SKIP(195) + if (lookahead == '\r') SKIP(13) + END_STATE(); + case 15: + if (lookahead == '\n') SKIP(133) + END_STATE(); + case 16: + if (lookahead == '\n') SKIP(133) + if (lookahead == '\r') SKIP(15) + END_STATE(); + case 17: + if (lookahead == '\n') SKIP(154) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(154) + if (lookahead == '\r') SKIP(17) + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(196) + END_STATE(); + case 20: + if (lookahead == '\n') SKIP(196) + if (lookahead == '\r') SKIP(19) + END_STATE(); + case 21: + if (lookahead == '\n') SKIP(142) + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(142) + if (lookahead == '\r') SKIP(21) + END_STATE(); + case 23: + if (lookahead == '\n') SKIP(136) + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(136) + if (lookahead == '\r') SKIP(23) + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(163) + END_STATE(); + case 26: + if (lookahead == '\n') SKIP(163) + if (lookahead == '\r') SKIP(25) + END_STATE(); + case 27: + if (lookahead == '\n') SKIP(156) + END_STATE(); + case 28: + if (lookahead == '\n') SKIP(156) + if (lookahead == '\r') SKIP(27) + END_STATE(); + case 29: + if (lookahead == '\n') SKIP(155) + END_STATE(); + case 30: + if (lookahead == '\n') SKIP(155) + if (lookahead == '\r') SKIP(29) + END_STATE(); + case 31: + if (lookahead == '\n') SKIP(165) + END_STATE(); + case 32: + if (lookahead == '\n') SKIP(165) + if (lookahead == '\r') SKIP(31) + END_STATE(); + case 33: + if (lookahead == '\n') SKIP(167) + END_STATE(); + case 34: + if (lookahead == '\n') SKIP(167) + if (lookahead == '\r') SKIP(33) + END_STATE(); + case 35: + if (lookahead == '\n') SKIP(168) + END_STATE(); + case 36: + if (lookahead == '\n') SKIP(168) + if (lookahead == '\r') SKIP(35) + END_STATE(); + case 37: + if (lookahead == '\n') SKIP(159) + END_STATE(); + case 38: + if (lookahead == '\n') SKIP(159) + if (lookahead == '\r') SKIP(37) + END_STATE(); + case 39: + if (lookahead == '\n') SKIP(174) + END_STATE(); + case 40: + if (lookahead == '\n') SKIP(174) + if (lookahead == '\r') SKIP(39) + END_STATE(); + case 41: + if (lookahead == '\n') SKIP(172) + END_STATE(); + case 42: + if (lookahead == '\n') SKIP(172) + if (lookahead == '\r') SKIP(41) + END_STATE(); + case 43: + if (lookahead == '\n') SKIP(166) + END_STATE(); + case 44: + if (lookahead == '\n') SKIP(166) + if (lookahead == '\r') SKIP(43) + END_STATE(); + case 45: + if (lookahead == '\n') SKIP(137) + END_STATE(); + case 46: + if (lookahead == '\n') SKIP(137) + if (lookahead == '\r') SKIP(45) + END_STATE(); + case 47: + if (lookahead == '\n') SKIP(180) + END_STATE(); + case 48: + if (lookahead == '\n') SKIP(180) + if (lookahead == '\r') SKIP(47) + END_STATE(); + case 49: + if (lookahead == '\n') SKIP(181) + END_STATE(); + case 50: + if (lookahead == '\n') SKIP(181) + if (lookahead == '\r') SKIP(49) + END_STATE(); + case 51: + if (lookahead == '\n') SKIP(158) + END_STATE(); + case 52: + if (lookahead == '\n') SKIP(158) + if (lookahead == '\r') SKIP(51) + END_STATE(); + case 53: + if (lookahead == '\n') SKIP(173) + END_STATE(); + case 54: + if (lookahead == '\n') SKIP(173) + if (lookahead == '\r') SKIP(53) + END_STATE(); + case 55: + if (lookahead == '\n') SKIP(191) + END_STATE(); + case 56: + if (lookahead == '\n') SKIP(191) + if (lookahead == '\r') SKIP(55) + END_STATE(); + case 57: + if (lookahead == '\n') SKIP(197) + END_STATE(); + case 58: + if (lookahead == '\n') SKIP(197) + if (lookahead == '\r') SKIP(57) + END_STATE(); + case 59: + if (lookahead == '\n') SKIP(200) + END_STATE(); + case 60: + if (lookahead == '\n') SKIP(200) + if (lookahead == '\r') SKIP(59) + END_STATE(); + case 61: + if (lookahead == '\n') SKIP(199) + END_STATE(); + case 62: + if (lookahead == '\n') SKIP(199) + if (lookahead == '\r') SKIP(61) + END_STATE(); + case 63: + if (lookahead == '\n') SKIP(178) + END_STATE(); + case 64: + if (lookahead == '\n') SKIP(178) + if (lookahead == '\r') SKIP(63) + END_STATE(); + case 65: + if (lookahead == '\n') SKIP(202) + END_STATE(); + case 66: + if (lookahead == '\n') SKIP(202) + if (lookahead == '\r') SKIP(65) + END_STATE(); + case 67: + if (lookahead == '\n') SKIP(201) + END_STATE(); + case 68: + if (lookahead == '\n') SKIP(201) + if (lookahead == '\r') SKIP(67) + END_STATE(); + case 69: + if (lookahead == '\n') SKIP(143) + END_STATE(); + case 70: + if (lookahead == '\n') SKIP(143) + if (lookahead == '\r') SKIP(69) + END_STATE(); + case 71: + if (lookahead == '\n') SKIP(73) + END_STATE(); + case 72: + if (lookahead == '\n') SKIP(73) + if (lookahead == '\r') SKIP(71) + END_STATE(); + case 73: + if (lookahead == '\n') ADVANCE(264); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(330); + if (lookahead == '-') ADVANCE(320); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(365); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '\\') SKIP(72) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(73) + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(203) + END_STATE(); + case 75: + if (lookahead == '\n') SKIP(203) + if (lookahead == '\r') SKIP(74) + END_STATE(); + case 76: + if (lookahead == '\n') SKIP(192) + END_STATE(); + case 77: + if (lookahead == '\n') SKIP(192) + if (lookahead == '\r') SKIP(76) + END_STATE(); + case 78: + if (lookahead == '\n') SKIP(193) + if (lookahead == '"') ADVANCE(436); + if (lookahead == '/') ADVANCE(437); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(440); + if (lookahead != 0) ADVANCE(441); + END_STATE(); + case 79: + if (lookahead == '\n') ADVANCE(443); + if (lookahead == '\r') ADVANCE(442); + if (lookahead == 'U') ADVANCE(254); + if (lookahead == 'u') ADVANCE(250); + if (lookahead == 'x') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); + if (lookahead != 0) ADVANCE(442); + END_STATE(); + case 80: + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '(') ADVANCE(267); + if (lookahead == '/') ADVANCE(309); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(310); + END_STATE(); + case 81: + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '/') ADVANCE(309); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(310); + END_STATE(); + case 82: + if (lookahead == '\n') SKIP(215) + if (lookahead == '/') ADVANCE(430); + if (lookahead == '\\') ADVANCE(429); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(431); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(428); + END_STATE(); + case 83: + if (lookahead == '\n') SKIP(134) + END_STATE(); + case 84: + if (lookahead == '\n') SKIP(134) + if (lookahead == '\r') SKIP(83) + END_STATE(); + case 85: + if (lookahead == '\n') SKIP(135) + END_STATE(); + case 86: + if (lookahead == '\n') SKIP(135) + if (lookahead == '\r') SKIP(85) + END_STATE(); + case 87: + if (lookahead == '\n') SKIP(179) + END_STATE(); + case 88: + if (lookahead == '\n') SKIP(179) + if (lookahead == '\r') SKIP(87) + END_STATE(); + case 89: + if (lookahead == '\n') SKIP(147) + END_STATE(); + case 90: + if (lookahead == '\n') SKIP(147) + if (lookahead == '\r') SKIP(89) + END_STATE(); + case 91: + if (lookahead == '\n') SKIP(145) + END_STATE(); + case 92: + if (lookahead == '\n') SKIP(145) + if (lookahead == '\r') SKIP(91) + END_STATE(); + case 93: + if (lookahead == '\n') SKIP(157) + END_STATE(); + case 94: + if (lookahead == '\n') SKIP(157) + if (lookahead == '\r') SKIP(93) + END_STATE(); + case 95: + if (lookahead == '\n') SKIP(183) + END_STATE(); + case 96: + if (lookahead == '\n') SKIP(183) + if (lookahead == '\r') SKIP(95) + END_STATE(); + case 97: + if (lookahead == '\n') SKIP(149) + END_STATE(); + case 98: + if (lookahead == '\n') SKIP(149) + if (lookahead == '\r') SKIP(97) + END_STATE(); + case 99: + if (lookahead == '\n') SKIP(164) + END_STATE(); + case 100: + if (lookahead == '\n') SKIP(164) + if (lookahead == '\r') SKIP(99) + END_STATE(); + case 101: + if (lookahead == '\n') SKIP(188) + END_STATE(); + case 102: + if (lookahead == '\n') SKIP(188) + if (lookahead == '\r') SKIP(101) + END_STATE(); + case 103: + if (lookahead == '\n') SKIP(187) + END_STATE(); + case 104: + if (lookahead == '\n') SKIP(187) + if (lookahead == '\r') SKIP(103) + END_STATE(); + case 105: + if (lookahead == '\n') SKIP(169) + END_STATE(); + case 106: + if (lookahead == '\n') SKIP(169) + if (lookahead == '\r') SKIP(105) + END_STATE(); + case 107: + if (lookahead == '\n') SKIP(151) + END_STATE(); + case 108: + if (lookahead == '\n') SKIP(151) + if (lookahead == '\r') SKIP(107) + END_STATE(); + case 109: + if (lookahead == '\n') SKIP(175) + END_STATE(); + case 110: + if (lookahead == '\n') SKIP(175) + if (lookahead == '\r') SKIP(109) + END_STATE(); + case 111: + if (lookahead == '\n') SKIP(198) + END_STATE(); + case 112: + if (lookahead == '\n') SKIP(198) + if (lookahead == '\r') SKIP(111) + END_STATE(); + case 113: + if (lookahead == '\n') SKIP(182) + END_STATE(); + case 114: + if (lookahead == '\n') SKIP(182) + if (lookahead == '\r') SKIP(113) + END_STATE(); + case 115: + if (lookahead == '\n') SKIP(184) + END_STATE(); + case 116: + if (lookahead == '\n') SKIP(184) + if (lookahead == '\r') SKIP(115) + END_STATE(); + case 117: + if (lookahead == '\n') SKIP(171) + END_STATE(); + case 118: + if (lookahead == '\n') SKIP(171) + if (lookahead == '\r') SKIP(117) + END_STATE(); + case 119: + if (lookahead == '\n') SKIP(160) + END_STATE(); + case 120: + if (lookahead == '\n') SKIP(160) + if (lookahead == '\r') SKIP(119) + END_STATE(); + case 121: + if (lookahead == '\n') SKIP(177) + END_STATE(); + case 122: + if (lookahead == '\n') SKIP(177) + if (lookahead == '\r') SKIP(121) + END_STATE(); + case 123: + if (lookahead == '\n') SKIP(153) + END_STATE(); + case 124: + if (lookahead == '\n') SKIP(153) + if (lookahead == '\r') SKIP(123) + END_STATE(); + case 125: + if (lookahead == '\n') SKIP(162) + END_STATE(); + case 126: + if (lookahead == '\n') SKIP(162) + if (lookahead == '\r') SKIP(125) + END_STATE(); + case 127: + if (lookahead == '\n') SKIP(185) + END_STATE(); + case 128: + if (lookahead == '\n') SKIP(185) + if (lookahead == '\r') SKIP(127) + END_STATE(); + case 129: + if (lookahead == '\n') SKIP(189) + END_STATE(); + case 130: + if (lookahead == '\n') SKIP(189) + if (lookahead == '\r') SKIP(129) + END_STATE(); + case 131: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(321); + if (lookahead == '.') ADVANCE(402); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(12) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(131) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 132: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(322); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(10) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(132) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 133: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(322); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(16) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(133) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 134: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(323); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(84) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(134) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 135: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(323); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(86) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(135) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 136: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(204); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '[') ADVANCE(226); + if (lookahead == '\\') SKIP(24) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(136) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 137: + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(204); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '[') ADVANCE(227); + if (lookahead == '\\') SKIP(46) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(137) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 138: + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '>') ADVANCE(220); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(2) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(345); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 139: + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(236); + if (lookahead == '&') ADVANCE(350); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(213); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '>') ADVANCE(355); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(6) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(139) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 140: + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '>') ADVANCE(222); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(4) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(140) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 141: + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(8) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 142: + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '&') ADVANCE(350); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(22) + if (lookahead == ']') ADVANCE(380); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(142) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 143: + if (lookahead == '!') ADVANCE(317); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '+') ADVANCE(335); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == 'L') ADVANCE(468); + if (lookahead == 'U') ADVANCE(469); + if (lookahead == '\\') SKIP(70) + if (lookahead == 'u') ADVANCE(470); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(143) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 144: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(539); + if (lookahead == 'R') ADVANCE(540); + if (lookahead == 'U') ADVANCE(541); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(92) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(145) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 145: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'U') ADVANCE(455); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(92) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(458); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(145) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 146: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(539); + if (lookahead == 'R') ADVANCE(540); + if (lookahead == 'U') ADVANCE(541); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(90) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(147) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 147: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'U') ADVANCE(455); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(90) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(458); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(147) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 148: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(539); + if (lookahead == 'R') ADVANCE(540); + if (lookahead == 'U') ADVANCE(541); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(98) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(149) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 149: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'U') ADVANCE(455); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(98) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(458); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(149) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 150: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(539); + if (lookahead == 'R') ADVANCE(540); + if (lookahead == 'U') ADVANCE(541); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(108) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(151) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 151: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'U') ADVANCE(455); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(108) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(458); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(151) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 152: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(539); + if (lookahead == 'R') ADVANCE(540); + if (lookahead == 'U') ADVANCE(541); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(124) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(542); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(153) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 153: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'U') ADVANCE(455); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(124) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(458); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(153) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 154: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '#') ADVANCE(234); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(330); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(320); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(365); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(18) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(154) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 155: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(30) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(155) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 156: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(28) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(156) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 157: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(94) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(157) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 158: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(52) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(158) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 159: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(38) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(159) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 160: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(120) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(160) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 161: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(120) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(160) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 162: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(379); + if (lookahead == '\\') SKIP(126) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(162) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 163: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(26) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(163) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 164: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(100) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(164) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 165: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(32) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(165) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 166: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(44) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(166) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 167: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(34) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(167) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 168: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(36) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(168) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 169: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(106) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(169) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 170: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(106) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(169) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 171: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(379); + if (lookahead == '\\') SKIP(118) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(171) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 172: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(42) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(172) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 173: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(54) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(173) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 174: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(40) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(174) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 175: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(110) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(175) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 176: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(110) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(175) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 177: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(379); + if (lookahead == '\\') SKIP(122) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(177) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 178: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(336); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(205); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(363); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(64) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'f') ADVANCE(485); + if (lookahead == 't') ADVANCE(512); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(178) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 179: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(88) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(179) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 180: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(48) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(180) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 181: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(386); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(50) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(181) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 182: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(114) + if (lookahead == ']') ADVANCE(228); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(182) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 183: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(96) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(183) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 184: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(116) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(184) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 185: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(128) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(185) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 186: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(128) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(185) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 187: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(104) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(187) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 188: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(102) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(188) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 189: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(130) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(189) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 190: + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(130) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(189) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 191: + if (lookahead == '"') ADVANCE(436); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(216); + if (lookahead == 'L') ADVANCE(452); + if (lookahead == 'U') ADVANCE(456); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(56) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(459); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(191) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 192: + if (lookahead == '"') ADVANCE(436); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '<') ADVANCE(224); + if (lookahead == 'L') ADVANCE(452); + if (lookahead == 'U') ADVANCE(456); + if (lookahead == '\\') SKIP(77) + if (lookahead == 'u') ADVANCE(460); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(192) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 193: + if (lookahead == '"') ADVANCE(436); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(193) + END_STATE(); + case 194: + if (lookahead == '"') ADVANCE(538); + END_STATE(); + case 195: + if (lookahead == '#') ADVANCE(230); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(330); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(14) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(195) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 196: + if (lookahead == '#') ADVANCE(232); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(20) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(196) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 197: + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(58) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(197) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 198: + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(112) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(198) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 199: + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(62) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(199) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 200: + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(60) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(200) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 201: + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(68) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(201) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 202: + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(66) + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(202) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 203: + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(75) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(203) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 204: + if (lookahead == ')') ADVANCE(536); + END_STATE(); + case 205: + if (lookahead == '*') ADVANCE(534); + END_STATE(); + case 206: + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(524); + END_STATE(); + case 207: + if (lookahead == '*') ADVANCE(535); + END_STATE(); + case 208: + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(522); + if (lookahead != 0) ADVANCE(209); + END_STATE(); + case 209: + if (lookahead == '*') ADVANCE(208); + if (lookahead != 0) ADVANCE(209); + END_STATE(); + case 210: + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(410); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); + END_STATE(); + case 211: + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 212: + if (lookahead == '.') ADVANCE(214); + END_STATE(); + case 213: + if (lookahead == '.') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); + END_STATE(); + case 214: + if (lookahead == '.') ADVANCE(268); + END_STATE(); + case 215: + if (lookahead == '/') ADVANCE(206); + if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(215) + END_STATE(); + case 216: + if (lookahead == ':') ADVANCE(371); + END_STATE(); + case 217: + if (lookahead == '<') ADVANCE(366); + if (lookahead == '=') ADVANCE(359); + END_STATE(); + case 218: + if (lookahead == '=') ADVANCE(354); + END_STATE(); + case 219: + if (lookahead == '=') ADVANCE(353); + END_STATE(); + case 220: + if (lookahead == '=') ADVANCE(358); + if (lookahead == '>') ADVANCE(221); + END_STATE(); + case 221: + if (lookahead == '=') ADVANCE(394); + END_STATE(); + case 222: + if (lookahead == '>') ADVANCE(368); + END_STATE(); + case 223: + if (lookahead == '>') ADVANCE(406); + END_STATE(); + case 224: + if (lookahead == '>') ADVANCE(446); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(224); + END_STATE(); + case 225: + if (lookahead == '>') ADVANCE(447); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(224); + END_STATE(); + case 226: + if (lookahead == '[') ADVANCE(372); + if (lookahead == ']') ADVANCE(537); + END_STATE(); + case 227: + if (lookahead == ']') ADVANCE(537); + END_STATE(); + case 228: + if (lookahead == ']') ADVANCE(373); + END_STATE(); + case 229: + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(229); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 230: + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(230); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 231: + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(300); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(231); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 232: + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(300); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(232); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 233: + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(233); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 234: + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(234); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 235: + if (lookahead == 'd') ADVANCE(238); + END_STATE(); + case 236: + if (lookahead == 'e') ADVANCE(239); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(236); + END_STATE(); + case 237: + if (lookahead == 'f') ADVANCE(272); + END_STATE(); + case 238: + if (lookahead == 'i') ADVANCE(237); + END_STATE(); + case 239: + if (lookahead == 'n') ADVANCE(235); + END_STATE(); + case 240: + if (lookahead == '|') ADVANCE(343); + END_STATE(); + case 241: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 242: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); + END_STATE(); + case 243: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); + END_STATE(); + case 244: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(416); + END_STATE(); + case 245: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); + END_STATE(); + case 246: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(409); + END_STATE(); + case 247: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(442); + END_STATE(); + case 248: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(247); + END_STATE(); + case 249: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 250: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(249); + END_STATE(); + case 251: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(250); + END_STATE(); + case 252: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); + END_STATE(); + case 253: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(252); + END_STATE(); + case 254: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(253); + END_STATE(); + case 255: + if (lookahead != 0 && + lookahead != '\r') ADVANCE(524); + if (lookahead == '\r') ADVANCE(526); + END_STATE(); + case 256: + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(260) + END_STATE(); + case 257: + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(260) + if (lookahead == '\r') SKIP(256) + END_STATE(); + case 258: + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(261) + END_STATE(); + case 259: + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(261) + if (lookahead == '\r') SKIP(258) + END_STATE(); + case 260: + if (eof) ADVANCE(262); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(321); + if (lookahead == '.') ADVANCE(402); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(257) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(260) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 261: + if (eof) ADVANCE(262); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(405); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(528); + if (lookahead == 'F') ADVANCE(476); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'R') ADVANCE(453); + if (lookahead == 'T') ADVANCE(480); + if (lookahead == 'U') ADVANCE(454); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(259) + if (lookahead == ']') ADVANCE(228); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(509); + if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'i') ADVANCE(503); + if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(512); + if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'v') ADVANCE(508); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(261) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 262: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 263: + ACCEPT_TOKEN(aux_sym_preproc_include_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(264); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + END_STATE(); + case 266: + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 271: + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'n') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 272: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + END_STATE(); + case 273: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 274: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 275: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 276: + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 277: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(299); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(297); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(287); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(266); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(263); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 286: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(271); + if (lookahead == 'n') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(271); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(291); + if (lookahead == 's') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 299: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 300: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 301: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 302: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(280); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 303: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 304: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(209); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '/') ADVANCE(522); + if (lookahead == '\\') ADVANCE(311); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 305: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(209); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '\\') ADVANCE(311); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 306: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '/') ADVANCE(309); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(310); + END_STATE(); + case 307: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(306); + if (lookahead == '\r') ADVANCE(308); + if (lookahead == '\\') ADVANCE(312); + if (lookahead != 0) ADVANCE(310); + END_STATE(); + case 308: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(306); + if (lookahead == '\\') ADVANCE(312); + if (lookahead != 0) ADVANCE(310); + END_STATE(); + case 309: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(305); + if (lookahead == '/') ADVANCE(525); + if (lookahead == '\\') ADVANCE(312); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(310); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(312); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(310); + END_STATE(); + case 311: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '*' && + lookahead != '\\') ADVANCE(305); + if (lookahead == '\r') ADVANCE(314); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '\\') ADVANCE(311); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(310); + if (lookahead == '\r') ADVANCE(315); + if (lookahead == '\\') ADVANCE(312); + END_STATE(); + case 313: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(525); + if (lookahead == '\r') ADVANCE(527); + if (lookahead == '\\') ADVANCE(523); + END_STATE(); + case 314: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '\\') ADVANCE(305); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '\\') ADVANCE(311); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(310); + if (lookahead == '\\') ADVANCE(312); + END_STATE(); + case 316: + ACCEPT_TOKEN(anon_sym_LPAREN2); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 318: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(354); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 321: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 322: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(406); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 323: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '>') ADVANCE(406); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 324: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 325: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(407); + END_STATE(); + case 326: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(406); + END_STATE(); + case 327: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '>') ADVANCE(406); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 329: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(207); + END_STATE(); + case 330: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 331: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(400); + END_STATE(); + case 332: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(400); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '=') ADVANCE(391); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 333: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(400); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 334: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(400); + if (lookahead == '=') ADVANCE(391); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(391); + END_STATE(); + case 337: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 338: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(388); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(524); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(524); + if (lookahead == '=') ADVANCE(389); + END_STATE(); + case 341: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 342: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(390); + END_STATE(); + case 343: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(397); + if (lookahead == '|') ADVANCE(343); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(343); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(396); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(344); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(344); + if (lookahead == '=') ADVANCE(395); + END_STATE(); + case 353: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 354: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 356: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(358); + if (lookahead == '>') ADVANCE(368); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(358); + if (lookahead == '>') ADVANCE(369); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(398); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(367); + if (lookahead == '=') ADVANCE(360); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(367); + if (lookahead == '=') ADVANCE(359); + END_STATE(); + case 364: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(366); + if (lookahead == '=') ADVANCE(360); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(366); + if (lookahead == '=') ADVANCE(359); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(393); + END_STATE(); + case 368: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 369: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(394); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(372); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(372); + if (lookahead == ']') ADVANCE(537); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(537); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(353); + END_STATE(); + case 383: + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(475); + if (lookahead == '3') ADVANCE(473); + if (lookahead == '6') ADVANCE(474); + if (lookahead == '8') ADVANCE(483); + if (lookahead == 'p') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 384: + ACCEPT_TOKEN(sym_primitive_type); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 385: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 386: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(371); + END_STATE(); + case 387: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 388: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 389: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 390: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 391: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 392: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 393: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 396: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 397: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 401: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(534); + if (lookahead == '.') ADVANCE(214); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '*') ADVANCE(534); + if (lookahead == '.') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(214); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); + END_STATE(); + case 406: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == '*') ADVANCE(535); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(242); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(246); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(409); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(409); + END_STATE(); + case 410: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(243); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(419); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'b') ADVANCE(418); + if (lookahead == 'x') ADVANCE(245); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + END_STATE(); + case 411: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(243); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(419); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + END_STATE(); + case 412: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(241); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'b') ADVANCE(211); + if (lookahead == 'x') ADVANCE(210); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 413: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(241); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'b') ADVANCE(241); + if (lookahead == 'x') ADVANCE(245); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 414: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(241); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + END_STATE(); + case 415: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(244); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(416); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == '+' || + lookahead == '-') ADVANCE(246); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(415); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(416); + END_STATE(); + case 416: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(244); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(416); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(415); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(416); + END_STATE(); + case 417: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(245); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(419); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == '+' || + lookahead == '-') ADVANCE(246); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + END_STATE(); + case 418: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(245); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(419); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + END_STATE(); + case 419: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(245); + if (lookahead == '.') ADVANCE(420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(419); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(417); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(416); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(415); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(416); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(409); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + if (lookahead == '+' || + lookahead == '-') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(409); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(422); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_L_SQUOTE); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_u_SQUOTE); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_U_SQUOTE); + END_STATE(); + case 426: + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 428: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + END_STATE(); + case 429: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\n') ADVANCE(443); + if (lookahead == '\r') ADVANCE(442); + if (lookahead == 'U') ADVANCE(254); + if (lookahead == 'u') ADVANCE(250); + if (lookahead == 'x') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); + if (lookahead != 0) ADVANCE(442); + END_STATE(); + case 430: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(524); + END_STATE(); + case 431: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(79); + END_STATE(); + case 432: + ACCEPT_TOKEN(anon_sym_L_DQUOTE); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym_u_DQUOTE); + END_STATE(); + case 434: + ACCEPT_TOKEN(anon_sym_U_DQUOTE); + END_STATE(); + case 435: + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + END_STATE(); + case 436: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 437: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(439); + if (lookahead == '/') ADVANCE(441); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(441); + END_STATE(); + case 438: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(438); + if (lookahead == '/') ADVANCE(441); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(439); + END_STATE(); + case 439: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(438); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(439); + END_STATE(); + case 440: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(437); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(440); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(441); + END_STATE(); + case 441: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(441); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(79); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(442); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(444); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_system_lib_string); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(446); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(224); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_true); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_false); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(432); + if (lookahead == '\'') ADVANCE(423); + if (lookahead == 'R') ADVANCE(461); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(432); + if (lookahead == 'R') ADVANCE(461); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(432); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(434); + if (lookahead == '\'') ADVANCE(425); + if (lookahead == 'R') ADVANCE(462); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(434); + if (lookahead == 'R') ADVANCE(462); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(434); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '\'') ADVANCE(424); + if (lookahead == '8') ADVANCE(463); + if (lookahead == 'R') ADVANCE(466); + if (lookahead == 'i') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(464); + if (lookahead == 'R') ADVANCE(466); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 459: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(465); + if (lookahead == 'i') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(465); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 461: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(530); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 463: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(435); + if (lookahead == '\'') ADVANCE(426); + if (lookahead == 'R') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 464: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(435); + if (lookahead == 'R') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(435); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(531); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(425); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(424); + if (lookahead == '8') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(426); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 472: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '1') ADVANCE(475); + if (lookahead == '3') ADVANCE(473); + if (lookahead == '6') ADVANCE(474); + if (lookahead == '8') ADVANCE(483); + if (lookahead == 'p') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 473: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '2') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 474: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '4') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 475: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '6') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A') ADVANCE(479); + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'E') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'L') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'R') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(515); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'l') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 487: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(515); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 488: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(501); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 489: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 490: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 491: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 492: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 493: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 494: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(486); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 495: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(520); + if (lookahead == 's') ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 496: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 497: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 498: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 499: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(513); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 500: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 501: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(491); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 502: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 503: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(514); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 505: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(518); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 506: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(487); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 507: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(500); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 508: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(497); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 509: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 510: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(383); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 511: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 512: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(519); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 513: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(493); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 514: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(383); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 515: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(384); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 516: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 517: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(511); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 518: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(488); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 519: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 520: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(492); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(521); + END_STATE(); + case 521: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(521); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 523: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(525); + if (lookahead == '\\') ADVANCE(313); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(525); + END_STATE(); + case 524: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(255); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(524); + END_STATE(); + case 525: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(313); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(525); + END_STATE(); + case 526: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(524); + if (lookahead == '\\') ADVANCE(255); + END_STATE(); + case 527: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(525); + if (lookahead == '\\') ADVANCE(313); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym_GT2); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym_R_DQUOTE); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_LR_DQUOTE); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym_uR_DQUOTE); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_UR_DQUOTE); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_DOT_STAR); + END_STATE(); + case 535: + ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); + END_STATE(); + case 536: + ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); + END_STATE(); + case 539: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(432); + if (lookahead == 'R') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 540: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 541: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(434); + if (lookahead == 'R') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 542: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(545); + if (lookahead == 'R') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 543: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(530); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 544: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 545: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(435); + if (lookahead == 'R') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 546: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(531); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 547: + ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '"') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + case 548: + ACCEPT_TOKEN(sym_literal_suffix); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(548); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'N') ADVANCE(1); + if (lookahead == '\\') SKIP(2) + if (lookahead == '_') ADVANCE(3); + if (lookahead == 'a') ADVANCE(4); + if (lookahead == 'b') ADVANCE(5); + if (lookahead == 'c') ADVANCE(6); + if (lookahead == 'd') ADVANCE(7); + if (lookahead == 'e') ADVANCE(8); + if (lookahead == 'f') ADVANCE(9); + if (lookahead == 'g') ADVANCE(10); + if (lookahead == 'i') ADVANCE(11); + if (lookahead == 'l') ADVANCE(12); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'o') ADVANCE(15); + if (lookahead == 'p') ADVANCE(16); + if (lookahead == 'r') ADVANCE(17); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(20); + if (lookahead == 'v') ADVANCE(21); + if (lookahead == 'w') ADVANCE(22); + if (lookahead == 'x') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'U') ADVANCE(24); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(25) + END_STATE(); + case 3: + if (lookahead == 'A') ADVANCE(26); + if (lookahead == '_') ADVANCE(27); + if (lookahead == 'u') ADVANCE(28); + END_STATE(); + case 4: + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'u') ADVANCE(30); + END_STATE(); + case 5: + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'r') ADVANCE(32); + END_STATE(); + case 6: + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'l') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); + END_STATE(); + case 7: + if (lookahead == 'e') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); + END_STATE(); + case 8: + if (lookahead == 'l') ADVANCE(38); + if (lookahead == 'n') ADVANCE(39); + if (lookahead == 'x') ADVANCE(40); + END_STATE(); + case 9: + if (lookahead == 'i') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); + if (lookahead == 'r') ADVANCE(43); + END_STATE(); + case 10: + if (lookahead == 'o') ADVANCE(44); + END_STATE(); + case 11: + if (lookahead == 'f') ADVANCE(45); + if (lookahead == 'n') ADVANCE(46); + END_STATE(); + case 12: + if (lookahead == 'o') ADVANCE(47); + END_STATE(); + case 13: + if (lookahead == 'u') ADVANCE(48); + END_STATE(); + case 14: + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); + END_STATE(); + case 15: + if (lookahead == 'p') ADVANCE(53); + if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'v') ADVANCE(55); + END_STATE(); + case 16: + if (lookahead == 'r') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); + END_STATE(); + case 17: + if (lookahead == 'e') ADVANCE(58); + END_STATE(); + case 18: + if (lookahead == 'h') ADVANCE(59); + if (lookahead == 'i') ADVANCE(60); + if (lookahead == 't') ADVANCE(61); + if (lookahead == 'w') ADVANCE(62); + END_STATE(); + case 19: + if (lookahead == 'e') ADVANCE(63); + if (lookahead == 'h') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); + END_STATE(); + case 20: + if (lookahead == 'n') ADVANCE(67); + if (lookahead == 's') ADVANCE(68); + END_STATE(); + case 21: + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'o') ADVANCE(70); + END_STATE(); + case 22: + if (lookahead == 'h') ADVANCE(71); + END_STATE(); + case 23: + if (lookahead == 'o') ADVANCE(72); + END_STATE(); + case 24: + if (lookahead == 'L') ADVANCE(73); + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(0) + END_STATE(); + case 26: + if (lookahead == 't') ADVANCE(74); + END_STATE(); + case 27: + if (lookahead == 'a') ADVANCE(75); + if (lookahead == 'b') ADVANCE(76); + if (lookahead == 'c') ADVANCE(77); + if (lookahead == 'd') ADVANCE(78); + if (lookahead == 'f') ADVANCE(79); + if (lookahead == 'r') ADVANCE(80); + if (lookahead == 's') ADVANCE(81); + if (lookahead == 't') ADVANCE(82); + if (lookahead == 'u') ADVANCE(83); + if (lookahead == 'v') ADVANCE(84); + END_STATE(); + case 28: + if (lookahead == 'n') ADVANCE(85); + END_STATE(); + case 29: + if (lookahead == 'd') ADVANCE(86); + END_STATE(); + case 30: + if (lookahead == 't') ADVANCE(87); + END_STATE(); + case 31: + if (lookahead == 't') ADVANCE(88); + END_STATE(); + case 32: + if (lookahead == 'e') ADVANCE(89); + END_STATE(); + case 33: + if (lookahead == 's') ADVANCE(90); + if (lookahead == 't') ADVANCE(91); + END_STATE(); + case 34: + if (lookahead == 'a') ADVANCE(92); + END_STATE(); + case 35: + if (lookahead == '_') ADVANCE(93); + if (lookahead == 'm') ADVANCE(94); + if (lookahead == 'n') ADVANCE(95); + END_STATE(); + case 36: + if (lookahead == 'c') ADVANCE(96); + if (lookahead == 'f') ADVANCE(97); + if (lookahead == 'l') ADVANCE(98); + END_STATE(); + case 37: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 38: + if (lookahead == 's') ADVANCE(99); + END_STATE(); + case 39: + if (lookahead == 'u') ADVANCE(100); + END_STATE(); + case 40: + if (lookahead == 'p') ADVANCE(101); + if (lookahead == 't') ADVANCE(102); + END_STATE(); + case 41: + if (lookahead == 'n') ADVANCE(103); + END_STATE(); + case 42: + if (lookahead == 'r') ADVANCE(104); + END_STATE(); + case 43: + if (lookahead == 'i') ADVANCE(105); + END_STATE(); + case 44: + if (lookahead == 't') ADVANCE(106); + END_STATE(); + case 45: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 46: + if (lookahead == 'l') ADVANCE(107); + END_STATE(); + case 47: + if (lookahead == 'n') ADVANCE(108); + END_STATE(); + case 48: + if (lookahead == 't') ADVANCE(109); + END_STATE(); + case 49: + if (lookahead == 'm') ADVANCE(110); + END_STATE(); + case 50: + if (lookahead == 'w') ADVANCE(111); + END_STATE(); + case 51: + if (lookahead == 'e') ADVANCE(112); + if (lookahead == 't') ADVANCE(113); + END_STATE(); + case 52: + if (lookahead == 'l') ADVANCE(114); + END_STATE(); + case 53: + if (lookahead == 'e') ADVANCE(115); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(116); + END_STATE(); + case 55: + if (lookahead == 'e') ADVANCE(117); + END_STATE(); + case 56: + if (lookahead == 'i') ADVANCE(118); + if (lookahead == 'o') ADVANCE(119); + END_STATE(); + case 57: + if (lookahead == 'b') ADVANCE(120); + END_STATE(); + case 58: + if (lookahead == 'g') ADVANCE(121); + if (lookahead == 'q') ADVANCE(122); + if (lookahead == 's') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); + END_STATE(); + case 59: + if (lookahead == 'o') ADVANCE(125); + END_STATE(); + case 60: + if (lookahead == 'g') ADVANCE(126); + if (lookahead == 'z') ADVANCE(127); + END_STATE(); + case 61: + if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'r') ADVANCE(129); + END_STATE(); + case 62: + if (lookahead == 'i') ADVANCE(130); + END_STATE(); + case 63: + if (lookahead == 'm') ADVANCE(131); + END_STATE(); + case 64: + if (lookahead == 'i') ADVANCE(132); + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 65: + if (lookahead == 'y') ADVANCE(134); + END_STATE(); + case 66: + if (lookahead == 'p') ADVANCE(135); + END_STATE(); + case 67: + if (lookahead == 'i') ADVANCE(136); + if (lookahead == 's') ADVANCE(137); + END_STATE(); + case 68: + if (lookahead == 'i') ADVANCE(138); + END_STATE(); + case 69: + if (lookahead == 'r') ADVANCE(139); + END_STATE(); + case 70: + if (lookahead == 'l') ADVANCE(140); + END_STATE(); + case 71: + if (lookahead == 'i') ADVANCE(141); + END_STATE(); + case 72: + if (lookahead == 'r') ADVANCE(142); + END_STATE(); + case 73: + if (lookahead == 'L') ADVANCE(143); + END_STATE(); + case 74: + if (lookahead == 'o') ADVANCE(144); + END_STATE(); + case 75: + if (lookahead == 't') ADVANCE(145); + END_STATE(); + case 76: + if (lookahead == 'a') ADVANCE(146); + END_STATE(); + case 77: + if (lookahead == 'd') ADVANCE(147); + if (lookahead == 'l') ADVANCE(148); + END_STATE(); + case 78: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 79: + if (lookahead == 'a') ADVANCE(150); + END_STATE(); + case 80: + if (lookahead == 'e') ADVANCE(151); + END_STATE(); + case 81: + if (lookahead == 'p') ADVANCE(152); + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 82: + if (lookahead == 'h') ADVANCE(154); + END_STATE(); + case 83: + if (lookahead == 'n') ADVANCE(155); + if (lookahead == 'p') ADVANCE(156); + END_STATE(); + case 84: + if (lookahead == 'e') ADVANCE(157); + END_STATE(); + case 85: + if (lookahead == 'a') ADVANCE(158); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(159); + END_STATE(); + case 87: + if (lookahead == 'o') ADVANCE(160); + END_STATE(); + case 88: + if (lookahead == 'a') ADVANCE(161); + if (lookahead == 'o') ADVANCE(162); + END_STATE(); + case 89: + if (lookahead == 'a') ADVANCE(163); + END_STATE(); + case 90: + if (lookahead == 'e') ADVANCE(164); + END_STATE(); + case 91: + if (lookahead == 'c') ADVANCE(165); + END_STATE(); + case 92: + if (lookahead == 's') ADVANCE(166); + END_STATE(); + case 93: + if (lookahead == 'a') ADVANCE(167); + if (lookahead == 'r') ADVANCE(168); + if (lookahead == 'y') ADVANCE(169); + END_STATE(); + case 94: + if (lookahead == 'p') ADVANCE(170); + END_STATE(); + case 95: + if (lookahead == 'c') ADVANCE(171); + if (lookahead == 's') ADVANCE(172); + if (lookahead == 't') ADVANCE(173); + END_STATE(); + case 96: + if (lookahead == 'l') ADVANCE(174); + END_STATE(); + case 97: + if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'i') ADVANCE(176); + END_STATE(); + case 98: + if (lookahead == 'e') ADVANCE(177); + END_STATE(); + case 99: + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 100: + if (lookahead == 'm') ADVANCE(179); + END_STATE(); + case 101: + if (lookahead == 'l') ADVANCE(180); + END_STATE(); + case 102: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 103: + if (lookahead == 'a') ADVANCE(182); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 105: + if (lookahead == 'e') ADVANCE(183); + END_STATE(); + case 106: + if (lookahead == 'o') ADVANCE(184); + END_STATE(); + case 107: + if (lookahead == 'i') ADVANCE(185); + END_STATE(); + case 108: + if (lookahead == 'g') ADVANCE(186); + END_STATE(); + case 109: + if (lookahead == 'a') ADVANCE(187); + END_STATE(); + case 110: + if (lookahead == 'e') ADVANCE(188); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_new); + END_STATE(); + case 112: + if (lookahead == 'x') ADVANCE(189); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(190); + END_STATE(); + case 114: + if (lookahead == 'l') ADVANCE(191); + END_STATE(); + case 115: + if (lookahead == 'r') ADVANCE(192); + END_STATE(); + case 116: + if (lookahead == 'e') ADVANCE(193); + END_STATE(); + case 117: + if (lookahead == 'r') ADVANCE(194); + END_STATE(); + case 118: + if (lookahead == 'v') ADVANCE(195); + END_STATE(); + case 119: + if (lookahead == 't') ADVANCE(196); + END_STATE(); + case 120: + if (lookahead == 'l') ADVANCE(197); + END_STATE(); + case 121: + if (lookahead == 'i') ADVANCE(198); + END_STATE(); + case 122: + if (lookahead == 'u') ADVANCE(199); + END_STATE(); + case 123: + if (lookahead == 't') ADVANCE(200); + END_STATE(); + case 124: + if (lookahead == 'u') ADVANCE(201); + END_STATE(); + case 125: + if (lookahead == 'r') ADVANCE(202); + END_STATE(); + case 126: + if (lookahead == 'n') ADVANCE(203); + END_STATE(); + case 127: + if (lookahead == 'e') ADVANCE(204); + END_STATE(); + case 128: + if (lookahead == 't') ADVANCE(205); + END_STATE(); + case 129: + if (lookahead == 'u') ADVANCE(206); + END_STATE(); + case 130: + if (lookahead == 't') ADVANCE(207); + END_STATE(); + case 131: + if (lookahead == 'p') ADVANCE(208); + END_STATE(); + case 132: + if (lookahead == 's') ADVANCE(209); + END_STATE(); + case 133: + if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'o') ADVANCE(211); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 135: + if (lookahead == 'e') ADVANCE(212); + END_STATE(); + case 136: + if (lookahead == 'o') ADVANCE(213); + END_STATE(); + case 137: + if (lookahead == 'i') ADVANCE(214); + END_STATE(); + case 138: + if (lookahead == 'n') ADVANCE(215); + END_STATE(); + case 139: + if (lookahead == 't') ADVANCE(216); + END_STATE(); + case 140: + if (lookahead == 'a') ADVANCE(217); + END_STATE(); + case 141: + if (lookahead == 'l') ADVANCE(218); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(219); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_null); + END_STATE(); + case 144: + if (lookahead == 'm') ADVANCE(220); + END_STATE(); + case 145: + if (lookahead == 't') ADVANCE(221); + END_STATE(); + case 146: + if (lookahead == 's') ADVANCE(222); + END_STATE(); + case 147: + if (lookahead == 'e') ADVANCE(223); + END_STATE(); + case 148: + if (lookahead == 'r') ADVANCE(224); + END_STATE(); + case 149: + if (lookahead == 'c') ADVANCE(225); + END_STATE(); + case 150: + if (lookahead == 's') ADVANCE(226); + END_STATE(); + case 151: + if (lookahead == 's') ADVANCE(227); + END_STATE(); + case 152: + if (lookahead == 't') ADVANCE(228); + END_STATE(); + case 153: + if (lookahead == 'd') ADVANCE(229); + END_STATE(); + case 154: + if (lookahead == 'i') ADVANCE(230); + END_STATE(); + case 155: + if (lookahead == 'a') ADVANCE(231); + END_STATE(); + case 156: + if (lookahead == 't') ADVANCE(232); + END_STATE(); + case 157: + if (lookahead == 'c') ADVANCE(233); + END_STATE(); + case 158: + if (lookahead == 'l') ADVANCE(234); + END_STATE(); + case 159: + if (lookahead == 'e') ADVANCE(235); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_auto); + END_STATE(); + case 161: + if (lookahead == 'n') ADVANCE(236); + END_STATE(); + case 162: + if (lookahead == 'r') ADVANCE(237); + END_STATE(); + case 163: + if (lookahead == 'k') ADVANCE(238); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 165: + if (lookahead == 'h') ADVANCE(239); + END_STATE(); + case 166: + if (lookahead == 's') ADVANCE(240); + END_STATE(); + case 167: + if (lookahead == 'w') ADVANCE(241); + END_STATE(); + case 168: + if (lookahead == 'e') ADVANCE(242); + END_STATE(); + case 169: + if (lookahead == 'i') ADVANCE(243); + END_STATE(); + case 170: + if (lookahead == 'l') ADVANCE(244); + END_STATE(); + case 171: + if (lookahead == 'e') ADVANCE(245); + END_STATE(); + case 172: + if (lookahead == 't') ADVANCE(246); + END_STATE(); + case 173: + if (lookahead == 'i') ADVANCE(247); + END_STATE(); + case 174: + if (lookahead == 't') ADVANCE(248); + END_STATE(); + case 175: + if (lookahead == 'u') ADVANCE(249); + END_STATE(); + case 176: + if (lookahead == 'n') ADVANCE(250); + END_STATE(); + case 177: + if (lookahead == 't') ADVANCE(251); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 180: + if (lookahead == 'i') ADVANCE(252); + END_STATE(); + case 181: + if (lookahead == 'r') ADVANCE(253); + END_STATE(); + case 182: + if (lookahead == 'l') ADVANCE(254); + END_STATE(); + case 183: + if (lookahead == 'n') ADVANCE(255); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_goto); + END_STATE(); + case 185: + if (lookahead == 'n') ADVANCE(256); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_long); + END_STATE(); + case 187: + if (lookahead == 'b') ADVANCE(257); + END_STATE(); + case 188: + if (lookahead == 's') ADVANCE(258); + END_STATE(); + case 189: + if (lookahead == 'c') ADVANCE(259); + END_STATE(); + case 190: + if (lookahead == 'e') ADVANCE(260); + END_STATE(); + case 191: + if (lookahead == 'p') ADVANCE(261); + END_STATE(); + case 192: + if (lookahead == 'a') ADVANCE(262); + END_STATE(); + case 193: + if (lookahead == 'q') ADVANCE(263); + END_STATE(); + case 194: + if (lookahead == 'r') ADVANCE(264); + END_STATE(); + case 195: + if (lookahead == 'a') ADVANCE(265); + END_STATE(); + case 196: + if (lookahead == 'e') ADVANCE(266); + END_STATE(); + case 197: + if (lookahead == 'i') ADVANCE(267); + END_STATE(); + case 198: + if (lookahead == 's') ADVANCE(268); + END_STATE(); + case 199: + if (lookahead == 'i') ADVANCE(269); + END_STATE(); + case 200: + if (lookahead == 'r') ADVANCE(270); + END_STATE(); + case 201: + if (lookahead == 'r') ADVANCE(271); + END_STATE(); + case 202: + if (lookahead == 't') ADVANCE(272); + END_STATE(); + case 203: + if (lookahead == 'e') ADVANCE(273); + END_STATE(); + case 204: + if (lookahead == 'o') ADVANCE(274); + END_STATE(); + case 205: + if (lookahead == 'i') ADVANCE(275); + END_STATE(); + case 206: + if (lookahead == 'c') ADVANCE(276); + END_STATE(); + case 207: + if (lookahead == 'c') ADVANCE(277); + END_STATE(); + case 208: + if (lookahead == 'l') ADVANCE(278); + END_STATE(); + case 209: + ACCEPT_TOKEN(sym_this); + END_STATE(); + case 210: + if (lookahead == 'a') ADVANCE(279); + END_STATE(); + case 211: + if (lookahead == 'w') ADVANCE(280); + END_STATE(); + case 212: + if (lookahead == 'd') ADVANCE(281); + if (lookahead == 'n') ADVANCE(282); + END_STATE(); + case 213: + if (lookahead == 'n') ADVANCE(283); + END_STATE(); + case 214: + if (lookahead == 'g') ADVANCE(284); + END_STATE(); + case 215: + if (lookahead == 'g') ADVANCE(285); + END_STATE(); + case 216: + if (lookahead == 'u') ADVANCE(286); + END_STATE(); + case 217: + if (lookahead == 't') ADVANCE(287); + END_STATE(); + case 218: + if (lookahead == 'e') ADVANCE(288); + END_STATE(); + case 219: + if (lookahead == 'e') ADVANCE(289); + END_STATE(); + case 220: + if (lookahead == 'i') ADVANCE(290); + END_STATE(); + case 221: + if (lookahead == 'r') ADVANCE(291); + END_STATE(); + case 222: + if (lookahead == 'e') ADVANCE(292); + END_STATE(); + case 223: + if (lookahead == 'c') ADVANCE(293); + END_STATE(); + case 224: + if (lookahead == 'c') ADVANCE(294); + END_STATE(); + case 225: + if (lookahead == 'l') ADVANCE(295); + END_STATE(); + case 226: + if (lookahead == 't') ADVANCE(296); + END_STATE(); + case 227: + if (lookahead == 't') ADVANCE(297); + END_STATE(); + case 228: + if (lookahead == 'r') ADVANCE(298); + END_STATE(); + case 229: + if (lookahead == 'c') ADVANCE(299); + END_STATE(); + case 230: + if (lookahead == 's') ADVANCE(300); + END_STATE(); + case 231: + if (lookahead == 'l') ADVANCE(301); + END_STATE(); + case 232: + if (lookahead == 'r') ADVANCE(302); + END_STATE(); + case 233: + if (lookahead == 't') ADVANCE(303); + END_STATE(); + case 234: + if (lookahead == 'i') ADVANCE(304); + END_STATE(); + case 235: + if (lookahead == 'q') ADVANCE(305); + END_STATE(); + case 236: + if (lookahead == 'd') ADVANCE(306); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_bitor); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 241: + if (lookahead == 'a') ADVANCE(307); + END_STATE(); + case 242: + if (lookahead == 't') ADVANCE(308); + END_STATE(); + case 243: + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_compl); + END_STATE(); + case 245: + if (lookahead == 'p') ADVANCE(310); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(311); + if (lookahead == 'i') ADVANCE(312); + END_STATE(); + case 247: + if (lookahead == 'n') ADVANCE(313); + END_STATE(); + case 248: + if (lookahead == 'y') ADVANCE(314); + END_STATE(); + case 249: + if (lookahead == 'l') ADVANCE(315); + END_STATE(); + case 250: + if (lookahead == 'e') ADVANCE(316); + END_STATE(); + case 251: + if (lookahead == 'e') ADVANCE(317); + END_STATE(); + case 252: + if (lookahead == 'c') ADVANCE(318); + END_STATE(); + case 253: + if (lookahead == 'n') ADVANCE(319); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_final); + END_STATE(); + case 255: + if (lookahead == 'd') ADVANCE(320); + END_STATE(); + case 256: + if (lookahead == 'e') ADVANCE(321); + END_STATE(); + case 257: + if (lookahead == 'l') ADVANCE(322); + END_STATE(); + case 258: + if (lookahead == 'p') ADVANCE(323); + END_STATE(); + case 259: + if (lookahead == 'e') ADVANCE(324); + END_STATE(); + case 260: + if (lookahead == 'q') ADVANCE(325); + END_STATE(); + case 261: + if (lookahead == 't') ADVANCE(326); + END_STATE(); + case 262: + if (lookahead == 't') ADVANCE(327); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_or_eq); + END_STATE(); + case 264: + if (lookahead == 'i') ADVANCE(328); + END_STATE(); + case 265: + if (lookahead == 't') ADVANCE(329); + END_STATE(); + case 266: + if (lookahead == 'c') ADVANCE(330); + END_STATE(); + case 267: + if (lookahead == 'c') ADVANCE(331); + END_STATE(); + case 268: + if (lookahead == 't') ADVANCE(332); + END_STATE(); + case 269: + if (lookahead == 'r') ADVANCE(333); + END_STATE(); + case 270: + if (lookahead == 'i') ADVANCE(334); + END_STATE(); + case 271: + if (lookahead == 'n') ADVANCE(335); + END_STATE(); + case 272: + ACCEPT_TOKEN(anon_sym_short); + END_STATE(); + case 273: + if (lookahead == 'd') ADVANCE(336); + END_STATE(); + case 274: + if (lookahead == 'f') ADVANCE(337); + END_STATE(); + case 275: + if (lookahead == 'c') ADVANCE(338); + END_STATE(); + case 276: + if (lookahead == 't') ADVANCE(339); + END_STATE(); + case 277: + if (lookahead == 'h') ADVANCE(340); + END_STATE(); + case 278: + if (lookahead == 'a') ADVANCE(341); + END_STATE(); + case 279: + if (lookahead == 'd') ADVANCE(342); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_throw); + END_STATE(); + case 281: + if (lookahead == 'e') ADVANCE(343); + END_STATE(); + case 282: + if (lookahead == 'a') ADVANCE(344); + END_STATE(); + case 283: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 284: + if (lookahead == 'n') ADVANCE(345); + END_STATE(); + case 285: + ACCEPT_TOKEN(anon_sym_using); + END_STATE(); + case 286: + if (lookahead == 'a') ADVANCE(346); + END_STATE(); + case 287: + if (lookahead == 'i') ADVANCE(347); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 289: + if (lookahead == 'q') ADVANCE(348); + END_STATE(); + case 290: + if (lookahead == 'c') ADVANCE(349); + END_STATE(); + case 291: + if (lookahead == 'i') ADVANCE(350); + END_STATE(); + case 292: + if (lookahead == 'd') ADVANCE(351); + END_STATE(); + case 293: + if (lookahead == 'l') ADVANCE(352); + END_STATE(); + case 294: + if (lookahead == 'a') ADVANCE(353); + END_STATE(); + case 295: + if (lookahead == 's') ADVANCE(354); + END_STATE(); + case 296: + if (lookahead == 'c') ADVANCE(355); + END_STATE(); + case 297: + if (lookahead == 'r') ADVANCE(356); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + END_STATE(); + case 299: + if (lookahead == 'a') ADVANCE(357); + END_STATE(); + case 300: + if (lookahead == 'c') ADVANCE(358); + END_STATE(); + case 301: + if (lookahead == 'i') ADVANCE(359); + END_STATE(); + case 302: + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + END_STATE(); + case 303: + if (lookahead == 'o') ADVANCE(360); + END_STATE(); + case 304: + if (lookahead == 'g') ADVANCE(361); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_and_eq); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_bitand); + END_STATE(); + case 307: + if (lookahead == 'i') ADVANCE(362); + END_STATE(); + case 308: + if (lookahead == 'u') ADVANCE(363); + END_STATE(); + case 309: + if (lookahead == 'l') ADVANCE(364); + END_STATE(); + case 310: + if (lookahead == 't') ADVANCE(365); + END_STATE(); + case 311: + if (lookahead == 'v') ADVANCE(366); + if (lookahead == 'x') ADVANCE(367); + END_STATE(); + case 312: + if (lookahead == 'n') ADVANCE(368); + END_STATE(); + case 313: + if (lookahead == 'u') ADVANCE(369); + END_STATE(); + case 314: + if (lookahead == 'p') ADVANCE(370); + END_STATE(); + case 315: + if (lookahead == 't') ADVANCE(371); + END_STATE(); + case 316: + if (lookahead == 'd') ADVANCE(372); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym_delete); + END_STATE(); + case 318: + if (lookahead == 'i') ADVANCE(373); + END_STATE(); + case 319: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym_friend); + END_STATE(); + case 321: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 322: + if (lookahead == 'e') ADVANCE(374); + END_STATE(); + case 323: + if (lookahead == 'a') ADVANCE(375); + END_STATE(); + case 324: + if (lookahead == 'p') ADVANCE(376); + END_STATE(); + case 325: + ACCEPT_TOKEN(anon_sym_not_eq); + END_STATE(); + case 326: + if (lookahead == 'r') ADVANCE(377); + END_STATE(); + case 327: + if (lookahead == 'o') ADVANCE(378); + END_STATE(); + case 328: + if (lookahead == 'd') ADVANCE(379); + END_STATE(); + case 329: + if (lookahead == 'e') ADVANCE(380); + END_STATE(); + case 330: + if (lookahead == 't') ADVANCE(381); + END_STATE(); + case 331: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 332: + if (lookahead == 'e') ADVANCE(382); + END_STATE(); + case 333: + if (lookahead == 'e') ADVANCE(383); + END_STATE(); + case 334: + if (lookahead == 'c') ADVANCE(384); + END_STATE(); + case 335: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_signed); + END_STATE(); + case 337: + ACCEPT_TOKEN(anon_sym_sizeof); + END_STATE(); + case 338: + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(385); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 341: + if (lookahead == 't') ADVANCE(386); + END_STATE(); + case 342: + if (lookahead == '_') ADVANCE(387); + END_STATE(); + case 343: + if (lookahead == 'f') ADVANCE(388); + END_STATE(); + case 344: + if (lookahead == 'm') ADVANCE(389); + END_STATE(); + case 345: + if (lookahead == 'e') ADVANCE(390); + END_STATE(); + case 346: + if (lookahead == 'l') ADVANCE(391); + END_STATE(); + case 347: + if (lookahead == 'l') ADVANCE(392); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym_xor_eq); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym__Atomic); + END_STATE(); + case 350: + if (lookahead == 'b') ADVANCE(393); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym___based); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym___cdecl); + END_STATE(); + case 353: + if (lookahead == 'l') ADVANCE(394); + END_STATE(); + case 354: + if (lookahead == 'p') ADVANCE(395); + END_STATE(); + case 355: + if (lookahead == 'a') ADVANCE(396); + END_STATE(); + case 356: + if (lookahead == 'i') ADVANCE(397); + END_STATE(); + case 357: + if (lookahead == 'l') ADVANCE(398); + END_STATE(); + case 358: + if (lookahead == 'a') ADVANCE(399); + END_STATE(); + case 359: + if (lookahead == 'g') ADVANCE(400); + END_STATE(); + case 360: + if (lookahead == 'r') ADVANCE(401); + END_STATE(); + case 361: + if (lookahead == 'n') ADVANCE(402); + END_STATE(); + case 362: + if (lookahead == 't') ADVANCE(403); + END_STATE(); + case 363: + if (lookahead == 'r') ADVANCE(404); + END_STATE(); + case 364: + if (lookahead == 'd') ADVANCE(405); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_concept); + END_STATE(); + case 366: + if (lookahead == 'a') ADVANCE(406); + END_STATE(); + case 367: + if (lookahead == 'p') ADVANCE(407); + END_STATE(); + case 368: + if (lookahead == 'i') ADVANCE(408); + END_STATE(); + case 369: + if (lookahead == 'e') ADVANCE(409); + END_STATE(); + case 370: + if (lookahead == 'e') ADVANCE(410); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_defined); + END_STATE(); + case 373: + if (lookahead == 't') ADVANCE(411); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_mutable); + END_STATE(); + case 375: + if (lookahead == 'c') ADVANCE(412); + END_STATE(); + case 376: + if (lookahead == 't') ADVANCE(413); + END_STATE(); + case 377: + ACCEPT_TOKEN(sym_nullptr); + END_STATE(); + case 378: + if (lookahead == 'r') ADVANCE(414); + END_STATE(); + case 379: + if (lookahead == 'e') ADVANCE(415); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 381: + if (lookahead == 'e') ADVANCE(416); + END_STATE(); + case 382: + if (lookahead == 'r') ADVANCE(417); + END_STATE(); + case 383: + if (lookahead == 's') ADVANCE(418); + END_STATE(); + case 384: + if (lookahead == 't') ADVANCE(419); + END_STATE(); + case 385: + if (lookahead == 'a') ADVANCE(420); + END_STATE(); + case 386: + if (lookahead == 'e') ADVANCE(421); + END_STATE(); + case 387: + if (lookahead == 'l') ADVANCE(422); + END_STATE(); + case 388: + ACCEPT_TOKEN(anon_sym_typedef); + END_STATE(); + case 389: + if (lookahead == 'e') ADVANCE(423); + END_STATE(); + case 390: + if (lookahead == 'd') ADVANCE(424); + END_STATE(); + case 391: + ACCEPT_TOKEN(anon_sym_virtual); + END_STATE(); + case 392: + if (lookahead == 'e') ADVANCE(425); + END_STATE(); + case 393: + if (lookahead == 'u') ADVANCE(426); + END_STATE(); + case 394: + if (lookahead == 'l') ADVANCE(427); + END_STATE(); + case 395: + if (lookahead == 'e') ADVANCE(428); + END_STATE(); + case 396: + if (lookahead == 'l') ADVANCE(429); + END_STATE(); + case 397: + if (lookahead == 'c') ADVANCE(430); + END_STATE(); + case 398: + if (lookahead == 'l') ADVANCE(431); + END_STATE(); + case 399: + if (lookahead == 'l') ADVANCE(432); + END_STATE(); + case 400: + if (lookahead == 'n') ADVANCE(433); + END_STATE(); + case 401: + if (lookahead == 'c') ADVANCE(434); + END_STATE(); + case 402: + if (lookahead == 'e') ADVANCE(435); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_co_await); + END_STATE(); + case 404: + if (lookahead == 'n') ADVANCE(436); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_co_yield); + END_STATE(); + case 406: + if (lookahead == 'l') ADVANCE(437); + END_STATE(); + case 407: + if (lookahead == 'r') ADVANCE(438); + END_STATE(); + case 408: + if (lookahead == 't') ADVANCE(439); + END_STATE(); + case 409: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 410: + ACCEPT_TOKEN(anon_sym_decltype); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_explicit); + END_STATE(); + case 412: + if (lookahead == 'e') ADVANCE(440); + END_STATE(); + case 413: + ACCEPT_TOKEN(anon_sym_noexcept); + END_STATE(); + case 414: + ACCEPT_TOKEN(anon_sym_operator); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_override); + END_STATE(); + case 416: + if (lookahead == 'd') ADVANCE(441); + END_STATE(); + case 417: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 418: + ACCEPT_TOKEN(anon_sym_requires); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 420: + if (lookahead == 's') ADVANCE(442); + END_STATE(); + case 421: + ACCEPT_TOKEN(anon_sym_template); + END_STATE(); + case 422: + if (lookahead == 'o') ADVANCE(443); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_typename); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 426: + if (lookahead == 't') ADVANCE(444); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); + case 428: + if (lookahead == 'c') ADVANCE(445); + END_STATE(); + case 429: + if (lookahead == 'l') ADVANCE(446); + END_STATE(); + case 430: + if (lookahead == 't') ADVANCE(447); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 432: + if (lookahead == 'l') ADVANCE(448); + END_STATE(); + case 433: + if (lookahead == 'e') ADVANCE(449); + END_STATE(); + case 434: + if (lookahead == 'a') ADVANCE(450); + END_STATE(); + case 435: + if (lookahead == 'd') ADVANCE(451); + END_STATE(); + case 436: + ACCEPT_TOKEN(anon_sym_co_return); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_consteval); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 439: + ACCEPT_TOKEN(anon_sym_constinit); + END_STATE(); + case 440: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 442: + if (lookahead == 's') ADVANCE(452); + END_STATE(); + case 443: + if (lookahead == 'c') ADVANCE(453); + END_STATE(); + case 444: + if (lookahead == 'e') ADVANCE(454); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 446: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + END_STATE(); + case 448: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 449: + if (lookahead == 'd') ADVANCE(455); + END_STATE(); + case 450: + if (lookahead == 'l') ADVANCE(456); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 452: + if (lookahead == 'e') ADVANCE(457); + END_STATE(); + case 453: + if (lookahead == 'a') ADVANCE(458); + END_STATE(); + case 454: + if (lookahead == '_') ADVANCE(459); + END_STATE(); + case 455: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 456: + if (lookahead == 'l') ADVANCE(460); + END_STATE(); + case 457: + if (lookahead == 'r') ADVANCE(461); + END_STATE(); + case 458: + if (lookahead == 'l') ADVANCE(462); + END_STATE(); + case 459: + if (lookahead == '_') ADVANCE(463); + END_STATE(); + case 460: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 461: + if (lookahead == 't') ADVANCE(464); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 463: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 464: + ACCEPT_TOKEN(anon_sym_static_assert); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 261}, + [2] = {.lex_state = 261}, + [3] = {.lex_state = 261}, + [4] = {.lex_state = 261}, + [5] = {.lex_state = 261}, + [6] = {.lex_state = 261}, + [7] = {.lex_state = 261}, + [8] = {.lex_state = 261}, + [9] = {.lex_state = 261}, + [10] = {.lex_state = 138}, + [11] = {.lex_state = 138}, + [12] = {.lex_state = 138}, + [13] = {.lex_state = 138}, + [14] = {.lex_state = 138}, + [15] = {.lex_state = 138}, + [16] = {.lex_state = 138}, + [17] = {.lex_state = 138}, + [18] = {.lex_state = 138}, + [19] = {.lex_state = 138}, + [20] = {.lex_state = 138}, + [21] = {.lex_state = 138}, + [22] = {.lex_state = 138}, + [23] = {.lex_state = 138}, + [24] = {.lex_state = 138}, + [25] = {.lex_state = 138}, + [26] = {.lex_state = 138}, + [27] = {.lex_state = 138}, + [28] = {.lex_state = 138}, + [29] = {.lex_state = 261}, + [30] = {.lex_state = 261}, + [31] = {.lex_state = 261}, + [32] = {.lex_state = 261}, + [33] = {.lex_state = 261}, + [34] = {.lex_state = 261}, + [35] = {.lex_state = 261}, + [36] = {.lex_state = 261}, + [37] = {.lex_state = 261}, + [38] = {.lex_state = 140}, + [39] = {.lex_state = 261}, + [40] = {.lex_state = 261}, + [41] = {.lex_state = 261}, + [42] = {.lex_state = 261}, + [43] = {.lex_state = 261}, + [44] = {.lex_state = 261}, + [45] = {.lex_state = 261}, + [46] = {.lex_state = 261}, + [47] = {.lex_state = 261}, + [48] = {.lex_state = 261}, + [49] = {.lex_state = 140}, + [50] = {.lex_state = 261}, + [51] = {.lex_state = 261}, + [52] = {.lex_state = 261}, + [53] = {.lex_state = 261}, + [54] = {.lex_state = 261}, + [55] = {.lex_state = 140}, + [56] = {.lex_state = 261}, + [57] = {.lex_state = 261}, + [58] = {.lex_state = 261}, + [59] = {.lex_state = 261}, + [60] = {.lex_state = 261}, + [61] = {.lex_state = 261}, + [62] = {.lex_state = 261}, + [63] = {.lex_state = 261}, + [64] = {.lex_state = 261}, + [65] = {.lex_state = 261}, + [66] = {.lex_state = 261}, + [67] = {.lex_state = 261}, + [68] = {.lex_state = 261}, + [69] = {.lex_state = 261}, + [70] = {.lex_state = 261}, + [71] = {.lex_state = 261}, + [72] = {.lex_state = 261}, + [73] = {.lex_state = 261}, + [74] = {.lex_state = 261}, + [75] = {.lex_state = 261}, + [76] = {.lex_state = 261}, + [77] = {.lex_state = 138}, + [78] = {.lex_state = 138}, + [79] = {.lex_state = 138}, + [80] = {.lex_state = 138}, + [81] = {.lex_state = 138}, + [82] = {.lex_state = 140}, + [83] = {.lex_state = 140}, + [84] = {.lex_state = 261}, + [85] = {.lex_state = 261}, + [86] = {.lex_state = 261}, + [87] = {.lex_state = 261}, + [88] = {.lex_state = 261}, + [89] = {.lex_state = 261}, + [90] = {.lex_state = 140}, + [91] = {.lex_state = 140}, + [92] = {.lex_state = 261}, + [93] = {.lex_state = 261}, + [94] = {.lex_state = 140}, + [95] = {.lex_state = 261}, + [96] = {.lex_state = 261}, + [97] = {.lex_state = 139}, + [98] = {.lex_state = 139}, + [99] = {.lex_state = 139}, + [100] = {.lex_state = 139}, + [101] = {.lex_state = 139}, + [102] = {.lex_state = 139}, + [103] = {.lex_state = 139}, + [104] = {.lex_state = 139}, + [105] = {.lex_state = 139}, + [106] = {.lex_state = 139}, + [107] = {.lex_state = 139}, + [108] = {.lex_state = 139}, + [109] = {.lex_state = 139}, + [110] = {.lex_state = 139}, + [111] = {.lex_state = 139}, + [112] = {.lex_state = 139}, + [113] = {.lex_state = 139}, + [114] = {.lex_state = 139}, + [115] = {.lex_state = 139}, + [116] = {.lex_state = 141}, + [117] = {.lex_state = 141}, + [118] = {.lex_state = 141}, + [119] = {.lex_state = 141}, + [120] = {.lex_state = 139}, + [121] = {.lex_state = 132}, + [122] = {.lex_state = 131}, + [123] = {.lex_state = 195}, + [124] = {.lex_state = 195}, + [125] = {.lex_state = 195}, + [126] = {.lex_state = 195}, + [127] = {.lex_state = 195}, + [128] = {.lex_state = 195}, + [129] = {.lex_state = 195}, + [130] = {.lex_state = 195}, + [131] = {.lex_state = 195}, + [132] = {.lex_state = 133}, + [133] = {.lex_state = 195}, + [134] = {.lex_state = 195}, + [135] = {.lex_state = 195}, + [136] = {.lex_state = 195}, + [137] = {.lex_state = 195}, + [138] = {.lex_state = 132}, + [139] = {.lex_state = 131}, + [140] = {.lex_state = 195}, + [141] = {.lex_state = 139}, + [142] = {.lex_state = 139}, + [143] = {.lex_state = 139}, + [144] = {.lex_state = 139}, + [145] = {.lex_state = 139}, + [146] = {.lex_state = 139}, + [147] = {.lex_state = 139}, + [148] = {.lex_state = 139}, + [149] = {.lex_state = 139}, + [150] = {.lex_state = 139}, + [151] = {.lex_state = 139}, + [152] = {.lex_state = 139}, + [153] = {.lex_state = 139}, + [154] = {.lex_state = 139}, + [155] = {.lex_state = 139}, + [156] = {.lex_state = 139}, + [157] = {.lex_state = 139}, + [158] = {.lex_state = 139}, + [159] = {.lex_state = 139}, + [160] = {.lex_state = 139}, + [161] = {.lex_state = 139}, + [162] = {.lex_state = 139}, + [163] = {.lex_state = 139}, + [164] = {.lex_state = 139}, + [165] = {.lex_state = 139}, + [166] = {.lex_state = 139}, + [167] = {.lex_state = 139}, + [168] = {.lex_state = 139}, + [169] = {.lex_state = 139}, + [170] = {.lex_state = 139}, + [171] = {.lex_state = 139}, + [172] = {.lex_state = 139}, + [173] = {.lex_state = 139}, + [174] = {.lex_state = 139}, + [175] = {.lex_state = 139}, + [176] = {.lex_state = 139}, + [177] = {.lex_state = 139}, + [178] = {.lex_state = 139}, + [179] = {.lex_state = 139}, + [180] = {.lex_state = 139}, + [181] = {.lex_state = 139}, + [182] = {.lex_state = 139}, + [183] = {.lex_state = 139}, + [184] = {.lex_state = 139}, + [185] = {.lex_state = 139}, + [186] = {.lex_state = 139}, + [187] = {.lex_state = 139}, + [188] = {.lex_state = 139}, + [189] = {.lex_state = 139}, + [190] = {.lex_state = 139}, + [191] = {.lex_state = 139}, + [192] = {.lex_state = 139}, + [193] = {.lex_state = 139}, + [194] = {.lex_state = 139}, + [195] = {.lex_state = 139}, + [196] = {.lex_state = 139}, + [197] = {.lex_state = 139}, + [198] = {.lex_state = 139}, + [199] = {.lex_state = 139}, + [200] = {.lex_state = 139}, + [201] = {.lex_state = 139}, + [202] = {.lex_state = 139}, + [203] = {.lex_state = 139}, + [204] = {.lex_state = 139}, + [205] = {.lex_state = 139}, + [206] = {.lex_state = 139}, + [207] = {.lex_state = 139}, + [208] = {.lex_state = 139}, + [209] = {.lex_state = 139}, + [210] = {.lex_state = 139}, + [211] = {.lex_state = 139}, + [212] = {.lex_state = 139}, + [213] = {.lex_state = 139}, + [214] = {.lex_state = 139}, + [215] = {.lex_state = 139}, + [216] = {.lex_state = 139}, + [217] = {.lex_state = 139}, + [218] = {.lex_state = 139}, + [219] = {.lex_state = 139}, + [220] = {.lex_state = 139}, + [221] = {.lex_state = 139}, + [222] = {.lex_state = 139}, + [223] = {.lex_state = 139}, + [224] = {.lex_state = 139}, + [225] = {.lex_state = 139}, + [226] = {.lex_state = 139}, + [227] = {.lex_state = 139}, + [228] = {.lex_state = 139}, + [229] = {.lex_state = 139}, + [230] = {.lex_state = 139}, + [231] = {.lex_state = 139}, + [232] = {.lex_state = 139}, + [233] = {.lex_state = 139}, + [234] = {.lex_state = 139}, + [235] = {.lex_state = 139}, + [236] = {.lex_state = 139}, + [237] = {.lex_state = 139}, + [238] = {.lex_state = 139}, + [239] = {.lex_state = 139}, + [240] = {.lex_state = 139}, + [241] = {.lex_state = 139}, + [242] = {.lex_state = 139}, + [243] = {.lex_state = 139}, + [244] = {.lex_state = 139}, + [245] = {.lex_state = 139}, + [246] = {.lex_state = 139}, + [247] = {.lex_state = 139}, + [248] = {.lex_state = 139}, + [249] = {.lex_state = 139}, + [250] = {.lex_state = 139}, + [251] = {.lex_state = 139}, + [252] = {.lex_state = 139}, + [253] = {.lex_state = 139}, + [254] = {.lex_state = 139}, + [255] = {.lex_state = 139}, + [256] = {.lex_state = 139}, + [257] = {.lex_state = 139}, + [258] = {.lex_state = 139}, + [259] = {.lex_state = 139}, + [260] = {.lex_state = 139}, + [261] = {.lex_state = 139}, + [262] = {.lex_state = 139}, + [263] = {.lex_state = 139}, + [264] = {.lex_state = 139}, + [265] = {.lex_state = 139}, + [266] = {.lex_state = 139}, + [267] = {.lex_state = 139}, + [268] = {.lex_state = 139}, + [269] = {.lex_state = 139}, + [270] = {.lex_state = 139}, + [271] = {.lex_state = 139}, + [272] = {.lex_state = 139}, + [273] = {.lex_state = 139}, + [274] = {.lex_state = 139}, + [275] = {.lex_state = 139}, + [276] = {.lex_state = 139}, + [277] = {.lex_state = 139}, + [278] = {.lex_state = 139}, + [279] = {.lex_state = 139}, + [280] = {.lex_state = 139}, + [281] = {.lex_state = 139}, + [282] = {.lex_state = 139}, + [283] = {.lex_state = 139}, + [284] = {.lex_state = 139}, + [285] = {.lex_state = 139}, + [286] = {.lex_state = 139}, + [287] = {.lex_state = 139}, + [288] = {.lex_state = 139}, + [289] = {.lex_state = 139}, + [290] = {.lex_state = 154}, + [291] = {.lex_state = 154}, + [292] = {.lex_state = 154}, + [293] = {.lex_state = 154}, + [294] = {.lex_state = 154}, + [295] = {.lex_state = 154}, + [296] = {.lex_state = 154}, + [297] = {.lex_state = 154}, + [298] = {.lex_state = 154}, + [299] = {.lex_state = 196}, + [300] = {.lex_state = 154}, + [301] = {.lex_state = 154}, + [302] = {.lex_state = 196}, + [303] = {.lex_state = 261}, + [304] = {.lex_state = 196}, + [305] = {.lex_state = 154}, + [306] = {.lex_state = 261}, + [307] = {.lex_state = 154}, + [308] = {.lex_state = 154}, + [309] = {.lex_state = 154}, + [310] = {.lex_state = 154}, + [311] = {.lex_state = 154}, + [312] = {.lex_state = 154}, + [313] = {.lex_state = 154}, + [314] = {.lex_state = 142}, + [315] = {.lex_state = 142}, + [316] = {.lex_state = 142}, + [317] = {.lex_state = 142}, + [318] = {.lex_state = 138}, + [319] = {.lex_state = 142}, + [320] = {.lex_state = 142}, + [321] = {.lex_state = 142}, + [322] = {.lex_state = 142}, + [323] = {.lex_state = 142}, + [324] = {.lex_state = 142}, + [325] = {.lex_state = 142}, + [326] = {.lex_state = 142}, + [327] = {.lex_state = 142}, + [328] = {.lex_state = 142}, + [329] = {.lex_state = 142}, + [330] = {.lex_state = 138}, + [331] = {.lex_state = 142}, + [332] = {.lex_state = 142}, + [333] = {.lex_state = 142}, + [334] = {.lex_state = 138}, + [335] = {.lex_state = 138}, + [336] = {.lex_state = 140}, + [337] = {.lex_state = 261}, + [338] = {.lex_state = 261}, + [339] = {.lex_state = 138}, + [340] = {.lex_state = 138}, + [341] = {.lex_state = 261}, + [342] = {.lex_state = 140}, + [343] = {.lex_state = 138}, + [344] = {.lex_state = 261}, + [345] = {.lex_state = 138}, + [346] = {.lex_state = 138}, + [347] = {.lex_state = 138}, + [348] = {.lex_state = 138}, + [349] = {.lex_state = 138}, + [350] = {.lex_state = 138}, + [351] = {.lex_state = 138}, + [352] = {.lex_state = 138}, + [353] = {.lex_state = 138}, + [354] = {.lex_state = 138}, + [355] = {.lex_state = 138}, + [356] = {.lex_state = 138}, + [357] = {.lex_state = 138}, + [358] = {.lex_state = 138}, + [359] = {.lex_state = 138}, + [360] = {.lex_state = 138}, + [361] = {.lex_state = 138}, + [362] = {.lex_state = 138}, + [363] = {.lex_state = 138}, + [364] = {.lex_state = 138}, + [365] = {.lex_state = 138}, + [366] = {.lex_state = 138}, + [367] = {.lex_state = 138}, + [368] = {.lex_state = 138}, + [369] = {.lex_state = 138}, + [370] = {.lex_state = 138}, + [371] = {.lex_state = 138}, + [372] = {.lex_state = 138}, + [373] = {.lex_state = 138}, + [374] = {.lex_state = 138}, + [375] = {.lex_state = 138}, + [376] = {.lex_state = 138}, + [377] = {.lex_state = 138}, + [378] = {.lex_state = 142}, + [379] = {.lex_state = 138}, + [380] = {.lex_state = 138}, + [381] = {.lex_state = 138}, + [382] = {.lex_state = 138}, + [383] = {.lex_state = 142}, + [384] = {.lex_state = 138}, + [385] = {.lex_state = 138}, + [386] = {.lex_state = 142}, + [387] = {.lex_state = 138}, + [388] = {.lex_state = 138}, + [389] = {.lex_state = 138}, + [390] = {.lex_state = 261}, + [391] = {.lex_state = 138}, + [392] = {.lex_state = 138}, + [393] = {.lex_state = 138}, + [394] = {.lex_state = 138}, + [395] = {.lex_state = 138}, + [396] = {.lex_state = 138}, + [397] = {.lex_state = 138}, + [398] = {.lex_state = 138}, + [399] = {.lex_state = 138}, + [400] = {.lex_state = 138}, + [401] = {.lex_state = 142}, + [402] = {.lex_state = 261}, + [403] = {.lex_state = 138}, + [404] = {.lex_state = 142}, + [405] = {.lex_state = 138}, + [406] = {.lex_state = 142}, + [407] = {.lex_state = 138}, + [408] = {.lex_state = 142}, + [409] = {.lex_state = 142}, + [410] = {.lex_state = 138}, + [411] = {.lex_state = 142}, + [412] = {.lex_state = 138}, + [413] = {.lex_state = 138}, + [414] = {.lex_state = 142}, + [415] = {.lex_state = 138}, + [416] = {.lex_state = 261}, + [417] = {.lex_state = 138}, + [418] = {.lex_state = 138}, + [419] = {.lex_state = 138}, + [420] = {.lex_state = 142}, + [421] = {.lex_state = 138}, + [422] = {.lex_state = 261}, + [423] = {.lex_state = 138}, + [424] = {.lex_state = 138}, + [425] = {.lex_state = 138}, + [426] = {.lex_state = 138}, + [427] = {.lex_state = 138}, + [428] = {.lex_state = 138}, + [429] = {.lex_state = 142}, + [430] = {.lex_state = 138}, + [431] = {.lex_state = 138}, + [432] = {.lex_state = 138}, + [433] = {.lex_state = 138}, + [434] = {.lex_state = 138}, + [435] = {.lex_state = 138}, + [436] = {.lex_state = 138}, + [437] = {.lex_state = 138}, + [438] = {.lex_state = 138}, + [439] = {.lex_state = 138}, + [440] = {.lex_state = 138}, + [441] = {.lex_state = 138}, + [442] = {.lex_state = 142}, + [443] = {.lex_state = 138}, + [444] = {.lex_state = 138}, + [445] = {.lex_state = 138}, + [446] = {.lex_state = 140}, + [447] = {.lex_state = 138}, + [448] = {.lex_state = 138}, + [449] = {.lex_state = 142}, + [450] = {.lex_state = 138}, + [451] = {.lex_state = 138}, + [452] = {.lex_state = 138}, + [453] = {.lex_state = 138}, + [454] = {.lex_state = 138}, + [455] = {.lex_state = 138}, + [456] = {.lex_state = 138}, + [457] = {.lex_state = 138}, + [458] = {.lex_state = 138}, + [459] = {.lex_state = 138}, + [460] = {.lex_state = 138}, + [461] = {.lex_state = 138}, + [462] = {.lex_state = 142}, + [463] = {.lex_state = 138}, + [464] = {.lex_state = 142}, + [465] = {.lex_state = 138}, + [466] = {.lex_state = 138}, + [467] = {.lex_state = 138}, + [468] = {.lex_state = 138}, + [469] = {.lex_state = 138}, + [470] = {.lex_state = 138}, + [471] = {.lex_state = 138}, + [472] = {.lex_state = 138}, + [473] = {.lex_state = 138}, + [474] = {.lex_state = 138}, + [475] = {.lex_state = 138}, + [476] = {.lex_state = 138}, + [477] = {.lex_state = 140}, + [478] = {.lex_state = 138}, + [479] = {.lex_state = 138}, + [480] = {.lex_state = 138}, + [481] = {.lex_state = 138}, + [482] = {.lex_state = 138}, + [483] = {.lex_state = 138}, + [484] = {.lex_state = 138}, + [485] = {.lex_state = 138}, + [486] = {.lex_state = 138}, + [487] = {.lex_state = 138}, + [488] = {.lex_state = 138}, + [489] = {.lex_state = 142}, + [490] = {.lex_state = 138}, + [491] = {.lex_state = 138}, + [492] = {.lex_state = 138}, + [493] = {.lex_state = 138}, + [494] = {.lex_state = 138}, + [495] = {.lex_state = 138}, + [496] = {.lex_state = 138}, + [497] = {.lex_state = 138}, + [498] = {.lex_state = 138}, + [499] = {.lex_state = 138}, + [500] = {.lex_state = 138}, + [501] = {.lex_state = 138}, + [502] = {.lex_state = 138}, + [503] = {.lex_state = 138}, + [504] = {.lex_state = 138}, + [505] = {.lex_state = 138}, + [506] = {.lex_state = 138}, + [507] = {.lex_state = 138}, + [508] = {.lex_state = 138}, + [509] = {.lex_state = 138}, + [510] = {.lex_state = 138}, + [511] = {.lex_state = 138}, + [512] = {.lex_state = 138}, + [513] = {.lex_state = 138}, + [514] = {.lex_state = 138}, + [515] = {.lex_state = 140}, + [516] = {.lex_state = 138}, + [517] = {.lex_state = 138}, + [518] = {.lex_state = 138}, + [519] = {.lex_state = 138}, + [520] = {.lex_state = 138}, + [521] = {.lex_state = 140}, + [522] = {.lex_state = 261}, + [523] = {.lex_state = 138}, + [524] = {.lex_state = 138}, + [525] = {.lex_state = 138}, + [526] = {.lex_state = 261}, + [527] = {.lex_state = 138}, + [528] = {.lex_state = 138}, + [529] = {.lex_state = 138}, + [530] = {.lex_state = 138}, + [531] = {.lex_state = 138}, + [532] = {.lex_state = 138}, + [533] = {.lex_state = 138}, + [534] = {.lex_state = 138}, + [535] = {.lex_state = 261}, + [536] = {.lex_state = 140}, + [537] = {.lex_state = 138}, + [538] = {.lex_state = 261}, + [539] = {.lex_state = 138}, + [540] = {.lex_state = 138}, + [541] = {.lex_state = 138}, + [542] = {.lex_state = 138}, + [543] = {.lex_state = 138}, + [544] = {.lex_state = 138}, + [545] = {.lex_state = 261}, + [546] = {.lex_state = 261}, + [547] = {.lex_state = 261}, + [548] = {.lex_state = 261}, + [549] = {.lex_state = 261}, + [550] = {.lex_state = 261}, + [551] = {.lex_state = 261}, + [552] = {.lex_state = 261}, + [553] = {.lex_state = 261}, + [554] = {.lex_state = 261}, + [555] = {.lex_state = 261}, + [556] = {.lex_state = 261}, + [557] = {.lex_state = 261}, + [558] = {.lex_state = 261}, + [559] = {.lex_state = 261}, + [560] = {.lex_state = 261}, + [561] = {.lex_state = 261}, + [562] = {.lex_state = 261}, + [563] = {.lex_state = 261}, + [564] = {.lex_state = 261}, + [565] = {.lex_state = 261}, + [566] = {.lex_state = 261}, + [567] = {.lex_state = 261}, + [568] = {.lex_state = 261}, + [569] = {.lex_state = 261}, + [570] = {.lex_state = 261}, + [571] = {.lex_state = 261}, + [572] = {.lex_state = 261}, + [573] = {.lex_state = 261}, + [574] = {.lex_state = 261}, + [575] = {.lex_state = 261}, + [576] = {.lex_state = 261}, + [577] = {.lex_state = 261}, + [578] = {.lex_state = 261}, + [579] = {.lex_state = 261}, + [580] = {.lex_state = 261}, + [581] = {.lex_state = 261}, + [582] = {.lex_state = 261}, + [583] = {.lex_state = 261}, + [584] = {.lex_state = 261}, + [585] = {.lex_state = 261}, + [586] = {.lex_state = 261}, + [587] = {.lex_state = 261}, + [588] = {.lex_state = 261}, + [589] = {.lex_state = 261}, + [590] = {.lex_state = 261}, + [591] = {.lex_state = 261}, + [592] = {.lex_state = 261}, + [593] = {.lex_state = 261}, + [594] = {.lex_state = 261}, + [595] = {.lex_state = 140}, + [596] = {.lex_state = 261}, + [597] = {.lex_state = 261}, + [598] = {.lex_state = 261}, + [599] = {.lex_state = 261}, + [600] = {.lex_state = 261}, + [601] = {.lex_state = 261}, + [602] = {.lex_state = 261}, + [603] = {.lex_state = 261}, + [604] = {.lex_state = 261}, + [605] = {.lex_state = 261}, + [606] = {.lex_state = 261}, + [607] = {.lex_state = 261}, + [608] = {.lex_state = 261}, + [609] = {.lex_state = 261}, + [610] = {.lex_state = 261}, + [611] = {.lex_state = 261}, + [612] = {.lex_state = 261}, + [613] = {.lex_state = 261}, + [614] = {.lex_state = 261}, + [615] = {.lex_state = 261}, + [616] = {.lex_state = 261}, + [617] = {.lex_state = 261}, + [618] = {.lex_state = 261}, + [619] = {.lex_state = 261}, + [620] = {.lex_state = 261}, + [621] = {.lex_state = 261}, + [622] = {.lex_state = 261}, + [623] = {.lex_state = 140}, + [624] = {.lex_state = 140}, + [625] = {.lex_state = 261}, + [626] = {.lex_state = 261}, + [627] = {.lex_state = 261}, + [628] = {.lex_state = 261}, + [629] = {.lex_state = 261}, + [630] = {.lex_state = 261}, + [631] = {.lex_state = 140}, + [632] = {.lex_state = 140}, + [633] = {.lex_state = 140}, + [634] = {.lex_state = 261}, + [635] = {.lex_state = 140}, + [636] = {.lex_state = 261}, + [637] = {.lex_state = 140}, + [638] = {.lex_state = 261}, + [639] = {.lex_state = 261}, + [640] = {.lex_state = 261}, + [641] = {.lex_state = 261}, + [642] = {.lex_state = 140}, + [643] = {.lex_state = 140}, + [644] = {.lex_state = 261}, + [645] = {.lex_state = 261}, + [646] = {.lex_state = 261}, + [647] = {.lex_state = 261}, + [648] = {.lex_state = 261}, + [649] = {.lex_state = 261}, + [650] = {.lex_state = 261}, + [651] = {.lex_state = 261}, + [652] = {.lex_state = 140}, + [653] = {.lex_state = 261}, + [654] = {.lex_state = 261}, + [655] = {.lex_state = 261}, + [656] = {.lex_state = 261}, + [657] = {.lex_state = 261}, + [658] = {.lex_state = 261}, + [659] = {.lex_state = 261}, + [660] = {.lex_state = 261}, + [661] = {.lex_state = 140}, + [662] = {.lex_state = 261}, + [663] = {.lex_state = 261}, + [664] = {.lex_state = 261}, + [665] = {.lex_state = 261}, + [666] = {.lex_state = 261}, + [667] = {.lex_state = 261}, + [668] = {.lex_state = 261}, + [669] = {.lex_state = 261}, + [670] = {.lex_state = 261}, + [671] = {.lex_state = 140}, + [672] = {.lex_state = 261}, + [673] = {.lex_state = 261}, + [674] = {.lex_state = 261}, + [675] = {.lex_state = 261}, + [676] = {.lex_state = 261}, + [677] = {.lex_state = 261}, + [678] = {.lex_state = 261}, + [679] = {.lex_state = 261}, + [680] = {.lex_state = 261}, + [681] = {.lex_state = 140}, + [682] = {.lex_state = 140}, + [683] = {.lex_state = 261}, + [684] = {.lex_state = 261}, + [685] = {.lex_state = 261}, + [686] = {.lex_state = 261}, + [687] = {.lex_state = 261}, + [688] = {.lex_state = 261}, + [689] = {.lex_state = 261}, + [690] = {.lex_state = 261}, + [691] = {.lex_state = 261}, + [692] = {.lex_state = 261}, + [693] = {.lex_state = 261}, + [694] = {.lex_state = 261}, + [695] = {.lex_state = 261}, + [696] = {.lex_state = 261}, + [697] = {.lex_state = 261}, + [698] = {.lex_state = 261}, + [699] = {.lex_state = 261}, + [700] = {.lex_state = 261}, + [701] = {.lex_state = 261}, + [702] = {.lex_state = 261}, + [703] = {.lex_state = 261}, + [704] = {.lex_state = 261}, + [705] = {.lex_state = 261}, + [706] = {.lex_state = 261}, + [707] = {.lex_state = 261}, + [708] = {.lex_state = 261}, + [709] = {.lex_state = 261}, + [710] = {.lex_state = 261}, + [711] = {.lex_state = 261}, + [712] = {.lex_state = 261}, + [713] = {.lex_state = 261}, + [714] = {.lex_state = 261}, + [715] = {.lex_state = 261}, + [716] = {.lex_state = 261}, + [717] = {.lex_state = 261}, + [718] = {.lex_state = 261}, + [719] = {.lex_state = 261}, + [720] = {.lex_state = 261}, + [721] = {.lex_state = 261}, + [722] = {.lex_state = 261}, + [723] = {.lex_state = 261}, + [724] = {.lex_state = 261}, + [725] = {.lex_state = 261}, + [726] = {.lex_state = 261}, + [727] = {.lex_state = 261}, + [728] = {.lex_state = 261}, + [729] = {.lex_state = 261}, + [730] = {.lex_state = 261}, + [731] = {.lex_state = 261}, + [732] = {.lex_state = 261}, + [733] = {.lex_state = 261}, + [734] = {.lex_state = 261}, + [735] = {.lex_state = 261}, + [736] = {.lex_state = 261}, + [737] = {.lex_state = 261}, + [738] = {.lex_state = 261}, + [739] = {.lex_state = 261}, + [740] = {.lex_state = 261}, + [741] = {.lex_state = 261}, + [742] = {.lex_state = 261}, + [743] = {.lex_state = 261}, + [744] = {.lex_state = 261}, + [745] = {.lex_state = 261}, + [746] = {.lex_state = 261}, + [747] = {.lex_state = 261}, + [748] = {.lex_state = 261}, + [749] = {.lex_state = 261}, + [750] = {.lex_state = 261}, + [751] = {.lex_state = 261}, + [752] = {.lex_state = 261}, + [753] = {.lex_state = 261}, + [754] = {.lex_state = 261}, + [755] = {.lex_state = 261}, + [756] = {.lex_state = 261}, + [757] = {.lex_state = 261}, + [758] = {.lex_state = 261}, + [759] = {.lex_state = 136}, + [760] = {.lex_state = 261}, + [761] = {.lex_state = 261}, + [762] = {.lex_state = 261}, + [763] = {.lex_state = 261}, + [764] = {.lex_state = 261}, + [765] = {.lex_state = 261}, + [766] = {.lex_state = 140}, + [767] = {.lex_state = 261}, + [768] = {.lex_state = 261}, + [769] = {.lex_state = 261}, + [770] = {.lex_state = 261}, + [771] = {.lex_state = 261}, + [772] = {.lex_state = 261}, + [773] = {.lex_state = 261}, + [774] = {.lex_state = 261}, + [775] = {.lex_state = 261}, + [776] = {.lex_state = 261}, + [777] = {.lex_state = 136}, + [778] = {.lex_state = 261}, + [779] = {.lex_state = 261}, + [780] = {.lex_state = 261}, + [781] = {.lex_state = 261}, + [782] = {.lex_state = 261}, + [783] = {.lex_state = 261}, + [784] = {.lex_state = 140}, + [785] = {.lex_state = 140}, + [786] = {.lex_state = 140}, + [787] = {.lex_state = 140}, + [788] = {.lex_state = 261}, + [789] = {.lex_state = 140}, + [790] = {.lex_state = 140}, + [791] = {.lex_state = 261}, + [792] = {.lex_state = 261}, + [793] = {.lex_state = 140}, + [794] = {.lex_state = 140}, + [795] = {.lex_state = 140}, + [796] = {.lex_state = 140}, + [797] = {.lex_state = 140}, + [798] = {.lex_state = 140}, + [799] = {.lex_state = 261}, + [800] = {.lex_state = 140}, + [801] = {.lex_state = 140}, + [802] = {.lex_state = 140}, + [803] = {.lex_state = 261}, + [804] = {.lex_state = 140}, + [805] = {.lex_state = 140}, + [806] = {.lex_state = 140}, + [807] = {.lex_state = 140}, + [808] = {.lex_state = 140}, + [809] = {.lex_state = 140}, + [810] = {.lex_state = 140}, + [811] = {.lex_state = 140}, + [812] = {.lex_state = 140}, + [813] = {.lex_state = 140}, + [814] = {.lex_state = 140}, + [815] = {.lex_state = 140}, + [816] = {.lex_state = 140}, + [817] = {.lex_state = 261}, + [818] = {.lex_state = 140}, + [819] = {.lex_state = 140}, + [820] = {.lex_state = 140}, + [821] = {.lex_state = 140}, + [822] = {.lex_state = 140}, + [823] = {.lex_state = 140}, + [824] = {.lex_state = 140}, + [825] = {.lex_state = 140}, + [826] = {.lex_state = 261}, + [827] = {.lex_state = 140}, + [828] = {.lex_state = 261}, + [829] = {.lex_state = 140}, + [830] = {.lex_state = 140}, + [831] = {.lex_state = 140}, + [832] = {.lex_state = 140}, + [833] = {.lex_state = 140}, + [834] = {.lex_state = 140}, + [835] = {.lex_state = 140}, + [836] = {.lex_state = 140}, + [837] = {.lex_state = 140}, + [838] = {.lex_state = 140}, + [839] = {.lex_state = 140}, + [840] = {.lex_state = 140}, + [841] = {.lex_state = 140}, + [842] = {.lex_state = 140}, + [843] = {.lex_state = 140}, + [844] = {.lex_state = 140}, + [845] = {.lex_state = 140}, + [846] = {.lex_state = 140}, + [847] = {.lex_state = 140}, + [848] = {.lex_state = 140}, + [849] = {.lex_state = 140}, + [850] = {.lex_state = 140}, + [851] = {.lex_state = 140}, + [852] = {.lex_state = 261}, + [853] = {.lex_state = 140}, + [854] = {.lex_state = 140}, + [855] = {.lex_state = 140}, + [856] = {.lex_state = 261}, + [857] = {.lex_state = 261}, + [858] = {.lex_state = 140}, + [859] = {.lex_state = 140}, + [860] = {.lex_state = 140}, + [861] = {.lex_state = 140}, + [862] = {.lex_state = 140}, + [863] = {.lex_state = 140}, + [864] = {.lex_state = 140}, + [865] = {.lex_state = 140}, + [866] = {.lex_state = 140}, + [867] = {.lex_state = 140}, + [868] = {.lex_state = 140}, + [869] = {.lex_state = 140}, + [870] = {.lex_state = 140}, + [871] = {.lex_state = 140}, + [872] = {.lex_state = 140}, + [873] = {.lex_state = 140}, + [874] = {.lex_state = 140}, + [875] = {.lex_state = 140}, + [876] = {.lex_state = 140}, + [877] = {.lex_state = 140}, + [878] = {.lex_state = 261}, + [879] = {.lex_state = 140}, + [880] = {.lex_state = 140}, + [881] = {.lex_state = 140}, + [882] = {.lex_state = 140}, + [883] = {.lex_state = 140}, + [884] = {.lex_state = 140}, + [885] = {.lex_state = 140}, + [886] = {.lex_state = 140}, + [887] = {.lex_state = 140}, + [888] = {.lex_state = 140}, + [889] = {.lex_state = 140}, + [890] = {.lex_state = 140}, + [891] = {.lex_state = 140}, + [892] = {.lex_state = 140}, + [893] = {.lex_state = 140}, + [894] = {.lex_state = 140}, + [895] = {.lex_state = 261}, + [896] = {.lex_state = 261}, + [897] = {.lex_state = 261}, + [898] = {.lex_state = 140}, + [899] = {.lex_state = 140}, + [900] = {.lex_state = 140}, + [901] = {.lex_state = 261}, + [902] = {.lex_state = 140}, + [903] = {.lex_state = 261}, + [904] = {.lex_state = 140}, + [905] = {.lex_state = 261}, + [906] = {.lex_state = 261}, + [907] = {.lex_state = 141}, + [908] = {.lex_state = 261}, + [909] = {.lex_state = 261}, + [910] = {.lex_state = 261}, + [911] = {.lex_state = 261}, + [912] = {.lex_state = 261}, + [913] = {.lex_state = 261}, + [914] = {.lex_state = 261}, + [915] = {.lex_state = 140}, + [916] = {.lex_state = 261}, + [917] = {.lex_state = 261}, + [918] = {.lex_state = 261}, + [919] = {.lex_state = 261}, + [920] = {.lex_state = 140}, + [921] = {.lex_state = 261}, + [922] = {.lex_state = 261}, + [923] = {.lex_state = 261}, + [924] = {.lex_state = 141}, + [925] = {.lex_state = 140}, + [926] = {.lex_state = 261}, + [927] = {.lex_state = 140}, + [928] = {.lex_state = 261}, + [929] = {.lex_state = 261}, + [930] = {.lex_state = 261}, + [931] = {.lex_state = 261}, + [932] = {.lex_state = 140}, + [933] = {.lex_state = 140}, + [934] = {.lex_state = 140}, + [935] = {.lex_state = 261}, + [936] = {.lex_state = 261}, + [937] = {.lex_state = 261}, + [938] = {.lex_state = 140}, + [939] = {.lex_state = 261}, + [940] = {.lex_state = 261}, + [941] = {.lex_state = 261}, + [942] = {.lex_state = 261}, + [943] = {.lex_state = 261}, + [944] = {.lex_state = 261}, + [945] = {.lex_state = 140}, + [946] = {.lex_state = 140}, + [947] = {.lex_state = 140}, + [948] = {.lex_state = 140}, + [949] = {.lex_state = 261}, + [950] = {.lex_state = 261}, + [951] = {.lex_state = 140}, + [952] = {.lex_state = 261}, + [953] = {.lex_state = 261}, + [954] = {.lex_state = 261}, + [955] = {.lex_state = 140}, + [956] = {.lex_state = 140}, + [957] = {.lex_state = 140}, + [958] = {.lex_state = 140}, + [959] = {.lex_state = 140}, + [960] = {.lex_state = 261}, + [961] = {.lex_state = 261}, + [962] = {.lex_state = 261}, + [963] = {.lex_state = 140}, + [964] = {.lex_state = 140}, + [965] = {.lex_state = 261}, + [966] = {.lex_state = 261}, + [967] = {.lex_state = 261}, + [968] = {.lex_state = 261}, + [969] = {.lex_state = 261}, + [970] = {.lex_state = 261}, + [971] = {.lex_state = 140}, + [972] = {.lex_state = 140}, + [973] = {.lex_state = 140}, + [974] = {.lex_state = 140}, + [975] = {.lex_state = 261}, + [976] = {.lex_state = 261}, + [977] = {.lex_state = 140}, + [978] = {.lex_state = 261}, + [979] = {.lex_state = 261}, + [980] = {.lex_state = 261}, + [981] = {.lex_state = 140}, + [982] = {.lex_state = 261}, + [983] = {.lex_state = 140}, + [984] = {.lex_state = 261}, + [985] = {.lex_state = 140}, + [986] = {.lex_state = 261}, + [987] = {.lex_state = 261}, + [988] = {.lex_state = 261}, + [989] = {.lex_state = 140}, + [990] = {.lex_state = 140}, + [991] = {.lex_state = 261}, + [992] = {.lex_state = 261}, + [993] = {.lex_state = 261}, + [994] = {.lex_state = 261}, + [995] = {.lex_state = 261}, + [996] = {.lex_state = 140}, + [997] = {.lex_state = 261}, + [998] = {.lex_state = 140}, + [999] = {.lex_state = 140}, + [1000] = {.lex_state = 140}, + [1001] = {.lex_state = 261}, + [1002] = {.lex_state = 261}, + [1003] = {.lex_state = 261}, + [1004] = {.lex_state = 261}, + [1005] = {.lex_state = 261}, + [1006] = {.lex_state = 261}, + [1007] = {.lex_state = 140}, + [1008] = {.lex_state = 261}, + [1009] = {.lex_state = 261}, + [1010] = {.lex_state = 140}, + [1011] = {.lex_state = 261}, + [1012] = {.lex_state = 140}, + [1013] = {.lex_state = 140}, + [1014] = {.lex_state = 140}, + [1015] = {.lex_state = 140}, + [1016] = {.lex_state = 261}, + [1017] = {.lex_state = 140}, + [1018] = {.lex_state = 261}, + [1019] = {.lex_state = 261}, + [1020] = {.lex_state = 140}, + [1021] = {.lex_state = 261}, + [1022] = {.lex_state = 261}, + [1023] = {.lex_state = 261}, + [1024] = {.lex_state = 261}, + [1025] = {.lex_state = 261}, + [1026] = {.lex_state = 261}, + [1027] = {.lex_state = 261}, + [1028] = {.lex_state = 261}, + [1029] = {.lex_state = 261}, + [1030] = {.lex_state = 140}, + [1031] = {.lex_state = 261}, + [1032] = {.lex_state = 261}, + [1033] = {.lex_state = 261}, + [1034] = {.lex_state = 261}, + [1035] = {.lex_state = 261}, + [1036] = {.lex_state = 261}, + [1037] = {.lex_state = 261}, + [1038] = {.lex_state = 261}, + [1039] = {.lex_state = 140}, + [1040] = {.lex_state = 261}, + [1041] = {.lex_state = 140}, + [1042] = {.lex_state = 261}, + [1043] = {.lex_state = 261}, + [1044] = {.lex_state = 261}, + [1045] = {.lex_state = 140}, + [1046] = {.lex_state = 261}, + [1047] = {.lex_state = 261}, + [1048] = {.lex_state = 261}, + [1049] = {.lex_state = 261}, + [1050] = {.lex_state = 261}, + [1051] = {.lex_state = 261}, + [1052] = {.lex_state = 261}, + [1053] = {.lex_state = 261}, + [1054] = {.lex_state = 261}, + [1055] = {.lex_state = 261}, + [1056] = {.lex_state = 140}, + [1057] = {.lex_state = 140}, + [1058] = {.lex_state = 140}, + [1059] = {.lex_state = 140}, + [1060] = {.lex_state = 134}, + [1061] = {.lex_state = 139}, + [1062] = {.lex_state = 139}, + [1063] = {.lex_state = 139}, + [1064] = {.lex_state = 139}, + [1065] = {.lex_state = 139}, + [1066] = {.lex_state = 139}, + [1067] = {.lex_state = 139}, + [1068] = {.lex_state = 139}, + [1069] = {.lex_state = 139}, + [1070] = {.lex_state = 139}, + [1071] = {.lex_state = 139}, + [1072] = {.lex_state = 139}, + [1073] = {.lex_state = 139}, + [1074] = {.lex_state = 139}, + [1075] = {.lex_state = 139}, + [1076] = {.lex_state = 139}, + [1077] = {.lex_state = 139}, + [1078] = {.lex_state = 139}, + [1079] = {.lex_state = 134}, + [1080] = {.lex_state = 135}, + [1081] = {.lex_state = 134}, + [1082] = {.lex_state = 195}, + [1083] = {.lex_state = 195}, + [1084] = {.lex_state = 195}, + [1085] = {.lex_state = 195}, + [1086] = {.lex_state = 195}, + [1087] = {.lex_state = 195}, + [1088] = {.lex_state = 195}, + [1089] = {.lex_state = 195}, + [1090] = {.lex_state = 195}, + [1091] = {.lex_state = 195}, + [1092] = {.lex_state = 195}, + [1093] = {.lex_state = 195}, + [1094] = {.lex_state = 195}, + [1095] = {.lex_state = 195}, + [1096] = {.lex_state = 261}, + [1097] = {.lex_state = 261}, + [1098] = {.lex_state = 141}, + [1099] = {.lex_state = 141}, + [1100] = {.lex_state = 261}, + [1101] = {.lex_state = 139}, + [1102] = {.lex_state = 139}, + [1103] = {.lex_state = 195}, + [1104] = {.lex_state = 142}, + [1105] = {.lex_state = 142}, + [1106] = {.lex_state = 142}, + [1107] = {.lex_state = 139}, + [1108] = {.lex_state = 142}, + [1109] = {.lex_state = 142}, + [1110] = {.lex_state = 142}, + [1111] = {.lex_state = 142}, + [1112] = {.lex_state = 139}, + [1113] = {.lex_state = 142}, + [1114] = {.lex_state = 142}, + [1115] = {.lex_state = 142}, + [1116] = {.lex_state = 142}, + [1117] = {.lex_state = 139}, + [1118] = {.lex_state = 142}, + [1119] = {.lex_state = 142}, + [1120] = {.lex_state = 142}, + [1121] = {.lex_state = 142}, + [1122] = {.lex_state = 139}, + [1123] = {.lex_state = 139}, + [1124] = {.lex_state = 139}, + [1125] = {.lex_state = 139}, + [1126] = {.lex_state = 139}, + [1127] = {.lex_state = 139}, + [1128] = {.lex_state = 139}, + [1129] = {.lex_state = 139}, + [1130] = {.lex_state = 139}, + [1131] = {.lex_state = 139}, + [1132] = {.lex_state = 139}, + [1133] = {.lex_state = 139}, + [1134] = {.lex_state = 142}, + [1135] = {.lex_state = 139}, + [1136] = {.lex_state = 139}, + [1137] = {.lex_state = 139}, + [1138] = {.lex_state = 139}, + [1139] = {.lex_state = 139}, + [1140] = {.lex_state = 139}, + [1141] = {.lex_state = 139}, + [1142] = {.lex_state = 139}, + [1143] = {.lex_state = 139}, + [1144] = {.lex_state = 139}, + [1145] = {.lex_state = 139}, + [1146] = {.lex_state = 139}, + [1147] = {.lex_state = 139}, + [1148] = {.lex_state = 139}, + [1149] = {.lex_state = 139}, + [1150] = {.lex_state = 139}, + [1151] = {.lex_state = 139}, + [1152] = {.lex_state = 139}, + [1153] = {.lex_state = 139}, + [1154] = {.lex_state = 139}, + [1155] = {.lex_state = 139}, + [1156] = {.lex_state = 139}, + [1157] = {.lex_state = 139}, + [1158] = {.lex_state = 139}, + [1159] = {.lex_state = 139}, + [1160] = {.lex_state = 139}, + [1161] = {.lex_state = 139}, + [1162] = {.lex_state = 139}, + [1163] = {.lex_state = 139}, + [1164] = {.lex_state = 139}, + [1165] = {.lex_state = 139}, + [1166] = {.lex_state = 139}, + [1167] = {.lex_state = 139}, + [1168] = {.lex_state = 139}, + [1169] = {.lex_state = 139}, + [1170] = {.lex_state = 139}, + [1171] = {.lex_state = 139}, + [1172] = {.lex_state = 139}, + [1173] = {.lex_state = 139}, + [1174] = {.lex_state = 139}, + [1175] = {.lex_state = 139}, + [1176] = {.lex_state = 139}, + [1177] = {.lex_state = 139}, + [1178] = {.lex_state = 139}, + [1179] = {.lex_state = 139}, + [1180] = {.lex_state = 139}, + [1181] = {.lex_state = 139}, + [1182] = {.lex_state = 139}, + [1183] = {.lex_state = 139}, + [1184] = {.lex_state = 139}, + [1185] = {.lex_state = 139}, + [1186] = {.lex_state = 139}, + [1187] = {.lex_state = 139}, + [1188] = {.lex_state = 139}, + [1189] = {.lex_state = 139}, + [1190] = {.lex_state = 139}, + [1191] = {.lex_state = 139}, + [1192] = {.lex_state = 139}, + [1193] = {.lex_state = 139}, + [1194] = {.lex_state = 139}, + [1195] = {.lex_state = 139}, + [1196] = {.lex_state = 139}, + [1197] = {.lex_state = 139}, + [1198] = {.lex_state = 142}, + [1199] = {.lex_state = 139}, + [1200] = {.lex_state = 139}, + [1201] = {.lex_state = 139}, + [1202] = {.lex_state = 139}, + [1203] = {.lex_state = 139}, + [1204] = {.lex_state = 142}, + [1205] = {.lex_state = 142}, + [1206] = {.lex_state = 139}, + [1207] = {.lex_state = 139}, + [1208] = {.lex_state = 139}, + [1209] = {.lex_state = 139}, + [1210] = {.lex_state = 142}, + [1211] = {.lex_state = 139}, + [1212] = {.lex_state = 139}, + [1213] = {.lex_state = 139}, + [1214] = {.lex_state = 139}, + [1215] = {.lex_state = 139}, + [1216] = {.lex_state = 139}, + [1217] = {.lex_state = 139}, + [1218] = {.lex_state = 139}, + [1219] = {.lex_state = 139}, + [1220] = {.lex_state = 142}, + [1221] = {.lex_state = 139}, + [1222] = {.lex_state = 142}, + [1223] = {.lex_state = 139}, + [1224] = {.lex_state = 142}, + [1225] = {.lex_state = 139}, + [1226] = {.lex_state = 139}, + [1227] = {.lex_state = 139}, + [1228] = {.lex_state = 139}, + [1229] = {.lex_state = 139}, + [1230] = {.lex_state = 142}, + [1231] = {.lex_state = 142}, + [1232] = {.lex_state = 139}, + [1233] = {.lex_state = 142}, + [1234] = {.lex_state = 142}, + [1235] = {.lex_state = 142}, + [1236] = {.lex_state = 142}, + [1237] = {.lex_state = 142}, + [1238] = {.lex_state = 142}, + [1239] = {.lex_state = 139}, + [1240] = {.lex_state = 142}, + [1241] = {.lex_state = 139}, + [1242] = {.lex_state = 139}, + [1243] = {.lex_state = 139}, + [1244] = {.lex_state = 139}, + [1245] = {.lex_state = 139}, + [1246] = {.lex_state = 142}, + [1247] = {.lex_state = 139}, + [1248] = {.lex_state = 139}, + [1249] = {.lex_state = 139}, + [1250] = {.lex_state = 139}, + [1251] = {.lex_state = 139}, + [1252] = {.lex_state = 139}, + [1253] = {.lex_state = 139}, + [1254] = {.lex_state = 139}, + [1255] = {.lex_state = 139}, + [1256] = {.lex_state = 139}, + [1257] = {.lex_state = 139}, + [1258] = {.lex_state = 139}, + [1259] = {.lex_state = 139}, + [1260] = {.lex_state = 142}, + [1261] = {.lex_state = 142}, + [1262] = {.lex_state = 142}, + [1263] = {.lex_state = 142}, + [1264] = {.lex_state = 142}, + [1265] = {.lex_state = 142}, + [1266] = {.lex_state = 142}, + [1267] = {.lex_state = 142}, + [1268] = {.lex_state = 142}, + [1269] = {.lex_state = 142}, + [1270] = {.lex_state = 142}, + [1271] = {.lex_state = 142}, + [1272] = {.lex_state = 142}, + [1273] = {.lex_state = 142}, + [1274] = {.lex_state = 142}, + [1275] = {.lex_state = 142}, + [1276] = {.lex_state = 142}, + [1277] = {.lex_state = 142}, + [1278] = {.lex_state = 142}, + [1279] = {.lex_state = 142}, + [1280] = {.lex_state = 142}, + [1281] = {.lex_state = 142}, + [1282] = {.lex_state = 142}, + [1283] = {.lex_state = 142}, + [1284] = {.lex_state = 142}, + [1285] = {.lex_state = 142}, + [1286] = {.lex_state = 142}, + [1287] = {.lex_state = 142}, + [1288] = {.lex_state = 142}, + [1289] = {.lex_state = 142}, + [1290] = {.lex_state = 142}, + [1291] = {.lex_state = 142}, + [1292] = {.lex_state = 142}, + [1293] = {.lex_state = 142}, + [1294] = {.lex_state = 142}, + [1295] = {.lex_state = 142}, + [1296] = {.lex_state = 142}, + [1297] = {.lex_state = 142}, + [1298] = {.lex_state = 142}, + [1299] = {.lex_state = 142}, + [1300] = {.lex_state = 142}, + [1301] = {.lex_state = 142}, + [1302] = {.lex_state = 142}, + [1303] = {.lex_state = 141}, + [1304] = {.lex_state = 142}, + [1305] = {.lex_state = 141}, + [1306] = {.lex_state = 142}, + [1307] = {.lex_state = 142}, + [1308] = {.lex_state = 141}, + [1309] = {.lex_state = 141}, + [1310] = {.lex_state = 142}, + [1311] = {.lex_state = 142}, + [1312] = {.lex_state = 142}, + [1313] = {.lex_state = 142}, + [1314] = {.lex_state = 142}, + [1315] = {.lex_state = 142}, + [1316] = {.lex_state = 141}, + [1317] = {.lex_state = 142}, + [1318] = {.lex_state = 142}, + [1319] = {.lex_state = 141}, + [1320] = {.lex_state = 141}, + [1321] = {.lex_state = 141}, + [1322] = {.lex_state = 142}, + [1323] = {.lex_state = 142}, + [1324] = {.lex_state = 141}, + [1325] = {.lex_state = 142}, + [1326] = {.lex_state = 141}, + [1327] = {.lex_state = 142}, + [1328] = {.lex_state = 141}, + [1329] = {.lex_state = 141}, + [1330] = {.lex_state = 141}, + [1331] = {.lex_state = 142}, + [1332] = {.lex_state = 142}, + [1333] = {.lex_state = 141}, + [1334] = {.lex_state = 141}, + [1335] = {.lex_state = 141}, + [1336] = {.lex_state = 142}, + [1337] = {.lex_state = 142}, + [1338] = {.lex_state = 141}, + [1339] = {.lex_state = 142}, + [1340] = {.lex_state = 142}, + [1341] = {.lex_state = 141}, + [1342] = {.lex_state = 142}, + [1343] = {.lex_state = 142}, + [1344] = {.lex_state = 142}, + [1345] = {.lex_state = 142}, + [1346] = {.lex_state = 142}, + [1347] = {.lex_state = 195}, + [1348] = {.lex_state = 142}, + [1349] = {.lex_state = 142}, + [1350] = {.lex_state = 142}, + [1351] = {.lex_state = 142}, + [1352] = {.lex_state = 142}, + [1353] = {.lex_state = 142}, + [1354] = {.lex_state = 142}, + [1355] = {.lex_state = 142}, + [1356] = {.lex_state = 142}, + [1357] = {.lex_state = 142}, + [1358] = {.lex_state = 142}, + [1359] = {.lex_state = 142}, + [1360] = {.lex_state = 142}, + [1361] = {.lex_state = 142}, + [1362] = {.lex_state = 142}, + [1363] = {.lex_state = 142}, + [1364] = {.lex_state = 142}, + [1365] = {.lex_state = 142}, + [1366] = {.lex_state = 142}, + [1367] = {.lex_state = 142}, + [1368] = {.lex_state = 142}, + [1369] = {.lex_state = 195}, + [1370] = {.lex_state = 142}, + [1371] = {.lex_state = 142}, + [1372] = {.lex_state = 142}, + [1373] = {.lex_state = 142}, + [1374] = {.lex_state = 142}, + [1375] = {.lex_state = 195}, + [1376] = {.lex_state = 142}, + [1377] = {.lex_state = 142}, + [1378] = {.lex_state = 142}, + [1379] = {.lex_state = 142}, + [1380] = {.lex_state = 142}, + [1381] = {.lex_state = 142}, + [1382] = {.lex_state = 142}, + [1383] = {.lex_state = 142}, + [1384] = {.lex_state = 142}, + [1385] = {.lex_state = 142}, + [1386] = {.lex_state = 142}, + [1387] = {.lex_state = 142}, + [1388] = {.lex_state = 142}, + [1389] = {.lex_state = 142}, + [1390] = {.lex_state = 142}, + [1391] = {.lex_state = 142}, + [1392] = {.lex_state = 142}, + [1393] = {.lex_state = 142}, + [1394] = {.lex_state = 142}, + [1395] = {.lex_state = 142}, + [1396] = {.lex_state = 142}, + [1397] = {.lex_state = 142}, + [1398] = {.lex_state = 142}, + [1399] = {.lex_state = 142}, + [1400] = {.lex_state = 142}, + [1401] = {.lex_state = 142}, + [1402] = {.lex_state = 195}, + [1403] = {.lex_state = 142}, + [1404] = {.lex_state = 142}, + [1405] = {.lex_state = 142}, + [1406] = {.lex_state = 142}, + [1407] = {.lex_state = 142}, + [1408] = {.lex_state = 142}, + [1409] = {.lex_state = 142}, + [1410] = {.lex_state = 142}, + [1411] = {.lex_state = 142}, + [1412] = {.lex_state = 142}, + [1413] = {.lex_state = 142}, + [1414] = {.lex_state = 142}, + [1415] = {.lex_state = 142}, + [1416] = {.lex_state = 142}, + [1417] = {.lex_state = 142}, + [1418] = {.lex_state = 142}, + [1419] = {.lex_state = 142}, + [1420] = {.lex_state = 142}, + [1421] = {.lex_state = 163}, + [1422] = {.lex_state = 142}, + [1423] = {.lex_state = 142}, + [1424] = {.lex_state = 142}, + [1425] = {.lex_state = 142}, + [1426] = {.lex_state = 142}, + [1427] = {.lex_state = 142}, + [1428] = {.lex_state = 142}, + [1429] = {.lex_state = 142}, + [1430] = {.lex_state = 142}, + [1431] = {.lex_state = 142}, + [1432] = {.lex_state = 142}, + [1433] = {.lex_state = 142}, + [1434] = {.lex_state = 142}, + [1435] = {.lex_state = 142}, + [1436] = {.lex_state = 142}, + [1437] = {.lex_state = 142}, + [1438] = {.lex_state = 142}, + [1439] = {.lex_state = 142}, + [1440] = {.lex_state = 142}, + [1441] = {.lex_state = 142}, + [1442] = {.lex_state = 142}, + [1443] = {.lex_state = 142}, + [1444] = {.lex_state = 142}, + [1445] = {.lex_state = 142}, + [1446] = {.lex_state = 142}, + [1447] = {.lex_state = 142}, + [1448] = {.lex_state = 142}, + [1449] = {.lex_state = 142}, + [1450] = {.lex_state = 142}, + [1451] = {.lex_state = 156}, + [1452] = {.lex_state = 142}, + [1453] = {.lex_state = 142}, + [1454] = {.lex_state = 142}, + [1455] = {.lex_state = 142}, + [1456] = {.lex_state = 142}, + [1457] = {.lex_state = 142}, + [1458] = {.lex_state = 142}, + [1459] = {.lex_state = 142}, + [1460] = {.lex_state = 142}, + [1461] = {.lex_state = 142}, + [1462] = {.lex_state = 142}, + [1463] = {.lex_state = 142}, + [1464] = {.lex_state = 142}, + [1465] = {.lex_state = 142}, + [1466] = {.lex_state = 142}, + [1467] = {.lex_state = 142}, + [1468] = {.lex_state = 142}, + [1469] = {.lex_state = 142}, + [1470] = {.lex_state = 142}, + [1471] = {.lex_state = 142}, + [1472] = {.lex_state = 142}, + [1473] = {.lex_state = 142}, + [1474] = {.lex_state = 142}, + [1475] = {.lex_state = 142}, + [1476] = {.lex_state = 142}, + [1477] = {.lex_state = 156}, + [1478] = {.lex_state = 142}, + [1479] = {.lex_state = 142}, + [1480] = {.lex_state = 142}, + [1481] = {.lex_state = 142}, + [1482] = {.lex_state = 142}, + [1483] = {.lex_state = 142}, + [1484] = {.lex_state = 142}, + [1485] = {.lex_state = 142}, + [1486] = {.lex_state = 142}, + [1487] = {.lex_state = 142}, + [1488] = {.lex_state = 142}, + [1489] = {.lex_state = 142}, + [1490] = {.lex_state = 142}, + [1491] = {.lex_state = 163}, + [1492] = {.lex_state = 142}, + [1493] = {.lex_state = 142}, + [1494] = {.lex_state = 142}, + [1495] = {.lex_state = 163}, + [1496] = {.lex_state = 142}, + [1497] = {.lex_state = 142}, + [1498] = {.lex_state = 142}, + [1499] = {.lex_state = 163}, + [1500] = {.lex_state = 142}, + [1501] = {.lex_state = 142}, + [1502] = {.lex_state = 163}, + [1503] = {.lex_state = 142}, + [1504] = {.lex_state = 163}, + [1505] = {.lex_state = 142}, + [1506] = {.lex_state = 142}, + [1507] = {.lex_state = 156}, + [1508] = {.lex_state = 142}, + [1509] = {.lex_state = 142}, + [1510] = {.lex_state = 142}, + [1511] = {.lex_state = 142}, + [1512] = {.lex_state = 142}, + [1513] = {.lex_state = 142}, + [1514] = {.lex_state = 142}, + [1515] = {.lex_state = 142}, + [1516] = {.lex_state = 142}, + [1517] = {.lex_state = 156}, + [1518] = {.lex_state = 142}, + [1519] = {.lex_state = 156}, + [1520] = {.lex_state = 142}, + [1521] = {.lex_state = 142}, + [1522] = {.lex_state = 142}, + [1523] = {.lex_state = 142}, + [1524] = {.lex_state = 156}, + [1525] = {.lex_state = 142}, + [1526] = {.lex_state = 142}, + [1527] = {.lex_state = 142}, + [1528] = {.lex_state = 142}, + [1529] = {.lex_state = 142}, + [1530] = {.lex_state = 142}, + [1531] = {.lex_state = 142}, + [1532] = {.lex_state = 142}, + [1533] = {.lex_state = 142}, + [1534] = {.lex_state = 142}, + [1535] = {.lex_state = 142}, + [1536] = {.lex_state = 142}, + [1537] = {.lex_state = 142}, + [1538] = {.lex_state = 142}, + [1539] = {.lex_state = 142}, + [1540] = {.lex_state = 142}, + [1541] = {.lex_state = 142}, + [1542] = {.lex_state = 142}, + [1543] = {.lex_state = 142}, + [1544] = {.lex_state = 142}, + [1545] = {.lex_state = 142}, + [1546] = {.lex_state = 142}, + [1547] = {.lex_state = 142}, + [1548] = {.lex_state = 142}, + [1549] = {.lex_state = 142}, + [1550] = {.lex_state = 142}, + [1551] = {.lex_state = 142}, + [1552] = {.lex_state = 142}, + [1553] = {.lex_state = 142}, + [1554] = {.lex_state = 142}, + [1555] = {.lex_state = 142}, + [1556] = {.lex_state = 142}, + [1557] = {.lex_state = 142}, + [1558] = {.lex_state = 142}, + [1559] = {.lex_state = 142}, + [1560] = {.lex_state = 142}, + [1561] = {.lex_state = 142}, + [1562] = {.lex_state = 142}, + [1563] = {.lex_state = 142}, + [1564] = {.lex_state = 142}, + [1565] = {.lex_state = 142}, + [1566] = {.lex_state = 142}, + [1567] = {.lex_state = 142}, + [1568] = {.lex_state = 142}, + [1569] = {.lex_state = 142}, + [1570] = {.lex_state = 142}, + [1571] = {.lex_state = 142}, + [1572] = {.lex_state = 142}, + [1573] = {.lex_state = 142}, + [1574] = {.lex_state = 142}, + [1575] = {.lex_state = 142}, + [1576] = {.lex_state = 142}, + [1577] = {.lex_state = 142}, + [1578] = {.lex_state = 142}, + [1579] = {.lex_state = 142}, + [1580] = {.lex_state = 142}, + [1581] = {.lex_state = 142}, + [1582] = {.lex_state = 142}, + [1583] = {.lex_state = 142}, + [1584] = {.lex_state = 142}, + [1585] = {.lex_state = 142}, + [1586] = {.lex_state = 163}, + [1587] = {.lex_state = 142}, + [1588] = {.lex_state = 142}, + [1589] = {.lex_state = 142}, + [1590] = {.lex_state = 142}, + [1591] = {.lex_state = 142}, + [1592] = {.lex_state = 142}, + [1593] = {.lex_state = 142}, + [1594] = {.lex_state = 142}, + [1595] = {.lex_state = 142}, + [1596] = {.lex_state = 142}, + [1597] = {.lex_state = 142}, + [1598] = {.lex_state = 142}, + [1599] = {.lex_state = 142}, + [1600] = {.lex_state = 142}, + [1601] = {.lex_state = 142}, + [1602] = {.lex_state = 142}, + [1603] = {.lex_state = 163}, + [1604] = {.lex_state = 142}, + [1605] = {.lex_state = 142}, + [1606] = {.lex_state = 142}, + [1607] = {.lex_state = 142}, + [1608] = {.lex_state = 142}, + [1609] = {.lex_state = 142}, + [1610] = {.lex_state = 142}, + [1611] = {.lex_state = 142}, + [1612] = {.lex_state = 142}, + [1613] = {.lex_state = 142}, + [1614] = {.lex_state = 142}, + [1615] = {.lex_state = 142}, + [1616] = {.lex_state = 142}, + [1617] = {.lex_state = 142}, + [1618] = {.lex_state = 142}, + [1619] = {.lex_state = 142}, + [1620] = {.lex_state = 142}, + [1621] = {.lex_state = 142}, + [1622] = {.lex_state = 163}, + [1623] = {.lex_state = 142}, + [1624] = {.lex_state = 142}, + [1625] = {.lex_state = 142}, + [1626] = {.lex_state = 142}, + [1627] = {.lex_state = 142}, + [1628] = {.lex_state = 142}, + [1629] = {.lex_state = 142}, + [1630] = {.lex_state = 142}, + [1631] = {.lex_state = 142}, + [1632] = {.lex_state = 142}, + [1633] = {.lex_state = 142}, + [1634] = {.lex_state = 142}, + [1635] = {.lex_state = 142}, + [1636] = {.lex_state = 142}, + [1637] = {.lex_state = 142}, + [1638] = {.lex_state = 142}, + [1639] = {.lex_state = 142}, + [1640] = {.lex_state = 142}, + [1641] = {.lex_state = 142}, + [1642] = {.lex_state = 142}, + [1643] = {.lex_state = 163}, + [1644] = {.lex_state = 142}, + [1645] = {.lex_state = 163}, + [1646] = {.lex_state = 163}, + [1647] = {.lex_state = 142}, + [1648] = {.lex_state = 142}, + [1649] = {.lex_state = 142}, + [1650] = {.lex_state = 142}, + [1651] = {.lex_state = 142}, + [1652] = {.lex_state = 142}, + [1653] = {.lex_state = 142}, + [1654] = {.lex_state = 142}, + [1655] = {.lex_state = 142}, + [1656] = {.lex_state = 163}, + [1657] = {.lex_state = 142}, + [1658] = {.lex_state = 163}, + [1659] = {.lex_state = 142}, + [1660] = {.lex_state = 142}, + [1661] = {.lex_state = 163}, + [1662] = {.lex_state = 142}, + [1663] = {.lex_state = 142}, + [1664] = {.lex_state = 142}, + [1665] = {.lex_state = 142}, + [1666] = {.lex_state = 142}, + [1667] = {.lex_state = 142}, + [1668] = {.lex_state = 142}, + [1669] = {.lex_state = 142}, + [1670] = {.lex_state = 142}, + [1671] = {.lex_state = 142}, + [1672] = {.lex_state = 142}, + [1673] = {.lex_state = 142}, + [1674] = {.lex_state = 142}, + [1675] = {.lex_state = 142}, + [1676] = {.lex_state = 142}, + [1677] = {.lex_state = 142}, + [1678] = {.lex_state = 163}, + [1679] = {.lex_state = 142}, + [1680] = {.lex_state = 142}, + [1681] = {.lex_state = 156}, + [1682] = {.lex_state = 142}, + [1683] = {.lex_state = 142}, + [1684] = {.lex_state = 163}, + [1685] = {.lex_state = 142}, + [1686] = {.lex_state = 142}, + [1687] = {.lex_state = 142}, + [1688] = {.lex_state = 142}, + [1689] = {.lex_state = 142}, + [1690] = {.lex_state = 142}, + [1691] = {.lex_state = 142}, + [1692] = {.lex_state = 142}, + [1693] = {.lex_state = 142}, + [1694] = {.lex_state = 142}, + [1695] = {.lex_state = 142}, + [1696] = {.lex_state = 142}, + [1697] = {.lex_state = 142}, + [1698] = {.lex_state = 142}, + [1699] = {.lex_state = 142}, + [1700] = {.lex_state = 142}, + [1701] = {.lex_state = 142}, + [1702] = {.lex_state = 142}, + [1703] = {.lex_state = 156}, + [1704] = {.lex_state = 142}, + [1705] = {.lex_state = 142}, + [1706] = {.lex_state = 142}, + [1707] = {.lex_state = 142}, + [1708] = {.lex_state = 142}, + [1709] = {.lex_state = 142}, + [1710] = {.lex_state = 142}, + [1711] = {.lex_state = 163}, + [1712] = {.lex_state = 142}, + [1713] = {.lex_state = 142}, + [1714] = {.lex_state = 142}, + [1715] = {.lex_state = 156}, + [1716] = {.lex_state = 156}, + [1717] = {.lex_state = 142}, + [1718] = {.lex_state = 142}, + [1719] = {.lex_state = 142}, + [1720] = {.lex_state = 142}, + [1721] = {.lex_state = 142}, + [1722] = {.lex_state = 142}, + [1723] = {.lex_state = 142}, + [1724] = {.lex_state = 142}, + [1725] = {.lex_state = 142}, + [1726] = {.lex_state = 142}, + [1727] = {.lex_state = 142}, + [1728] = {.lex_state = 163}, + [1729] = {.lex_state = 142}, + [1730] = {.lex_state = 142}, + [1731] = {.lex_state = 142}, + [1732] = {.lex_state = 142}, + [1733] = {.lex_state = 142}, + [1734] = {.lex_state = 142}, + [1735] = {.lex_state = 142}, + [1736] = {.lex_state = 142}, + [1737] = {.lex_state = 142}, + [1738] = {.lex_state = 142}, + [1739] = {.lex_state = 142}, + [1740] = {.lex_state = 142}, + [1741] = {.lex_state = 142}, + [1742] = {.lex_state = 142}, + [1743] = {.lex_state = 142}, + [1744] = {.lex_state = 142}, + [1745] = {.lex_state = 142}, + [1746] = {.lex_state = 142}, + [1747] = {.lex_state = 142}, + [1748] = {.lex_state = 142}, + [1749] = {.lex_state = 142}, + [1750] = {.lex_state = 163}, + [1751] = {.lex_state = 163}, + [1752] = {.lex_state = 163}, + [1753] = {.lex_state = 163}, + [1754] = {.lex_state = 163}, + [1755] = {.lex_state = 156}, + [1756] = {.lex_state = 156}, + [1757] = {.lex_state = 156}, + [1758] = {.lex_state = 156}, + [1759] = {.lex_state = 156}, + [1760] = {.lex_state = 156}, + [1761] = {.lex_state = 156}, + [1762] = {.lex_state = 156}, + [1763] = {.lex_state = 195}, + [1764] = {.lex_state = 195}, + [1765] = {.lex_state = 139}, + [1766] = {.lex_state = 139}, + [1767] = {.lex_state = 179}, + [1768] = {.lex_state = 179}, + [1769] = {.lex_state = 179}, + [1770] = {.lex_state = 179}, + [1771] = {.lex_state = 179}, + [1772] = {.lex_state = 179}, + [1773] = {.lex_state = 179}, + [1774] = {.lex_state = 195}, + [1775] = {.lex_state = 195}, + [1776] = {.lex_state = 195}, + [1777] = {.lex_state = 146}, + [1778] = {.lex_state = 195}, + [1779] = {.lex_state = 146}, + [1780] = {.lex_state = 146}, + [1781] = {.lex_state = 155}, + [1782] = {.lex_state = 195}, + [1783] = {.lex_state = 195}, + [1784] = {.lex_state = 155}, + [1785] = {.lex_state = 155}, + [1786] = {.lex_state = 155}, + [1787] = {.lex_state = 155}, + [1788] = {.lex_state = 155}, + [1789] = {.lex_state = 155}, + [1790] = {.lex_state = 195}, + [1791] = {.lex_state = 156}, + [1792] = {.lex_state = 144}, + [1793] = {.lex_state = 144}, + [1794] = {.lex_state = 156}, + [1795] = {.lex_state = 144}, + [1796] = {.lex_state = 165}, + [1797] = {.lex_state = 165}, + [1798] = {.lex_state = 146}, + [1799] = {.lex_state = 195}, + [1800] = {.lex_state = 146}, + [1801] = {.lex_state = 155}, + [1802] = {.lex_state = 165}, + [1803] = {.lex_state = 165}, + [1804] = {.lex_state = 155}, + [1805] = {.lex_state = 195}, + [1806] = {.lex_state = 146}, + [1807] = {.lex_state = 146}, + [1808] = {.lex_state = 165}, + [1809] = {.lex_state = 165}, + [1810] = {.lex_state = 165}, + [1811] = {.lex_state = 156}, + [1812] = {.lex_state = 155}, + [1813] = {.lex_state = 195}, + [1814] = {.lex_state = 155}, + [1815] = {.lex_state = 155}, + [1816] = {.lex_state = 155}, + [1817] = {.lex_state = 167}, + [1818] = {.lex_state = 148}, + [1819] = {.lex_state = 155}, + [1820] = {.lex_state = 148}, + [1821] = {.lex_state = 155}, + [1822] = {.lex_state = 155}, + [1823] = {.lex_state = 148}, + [1824] = {.lex_state = 155}, + [1825] = {.lex_state = 167}, + [1826] = {.lex_state = 165}, + [1827] = {.lex_state = 156}, + [1828] = {.lex_state = 179}, + [1829] = {.lex_state = 144}, + [1830] = {.lex_state = 144}, + [1831] = {.lex_state = 144}, + [1832] = {.lex_state = 144}, + [1833] = {.lex_state = 144}, + [1834] = {.lex_state = 144}, + [1835] = {.lex_state = 165}, + [1836] = {.lex_state = 144}, + [1837] = {.lex_state = 179}, + [1838] = {.lex_state = 179}, + [1839] = {.lex_state = 168}, + [1840] = {.lex_state = 168}, + [1841] = {.lex_state = 195}, + [1842] = {.lex_state = 168}, + [1843] = {.lex_state = 168}, + [1844] = {.lex_state = 159}, + [1845] = {.lex_state = 168}, + [1846] = {.lex_state = 159}, + [1847] = {.lex_state = 165}, + [1848] = {.lex_state = 168}, + [1849] = {.lex_state = 168}, + [1850] = {.lex_state = 168}, + [1851] = {.lex_state = 195}, + [1852] = {.lex_state = 168}, + [1853] = {.lex_state = 168}, + [1854] = {.lex_state = 148}, + [1855] = {.lex_state = 157}, + [1856] = {.lex_state = 155}, + [1857] = {.lex_state = 157}, + [1858] = {.lex_state = 157}, + [1859] = {.lex_state = 157}, + [1860] = {.lex_state = 195}, + [1861] = {.lex_state = 148}, + [1862] = {.lex_state = 139}, + [1863] = {.lex_state = 157}, + [1864] = {.lex_state = 164}, + [1865] = {.lex_state = 168}, + [1866] = {.lex_state = 157}, + [1867] = {.lex_state = 195}, + [1868] = {.lex_state = 148}, + [1869] = {.lex_state = 168}, + [1870] = {.lex_state = 139}, + [1871] = {.lex_state = 148}, + [1872] = {.lex_state = 157}, + [1873] = {.lex_state = 164}, + [1874] = {.lex_state = 157}, + [1875] = {.lex_state = 168}, + [1876] = {.lex_state = 157}, + [1877] = {.lex_state = 174}, + [1878] = {.lex_state = 164}, + [1879] = {.lex_state = 155}, + [1880] = {.lex_state = 195}, + [1881] = {.lex_state = 164}, + [1882] = {.lex_state = 164}, + [1883] = {.lex_state = 144}, + [1884] = {.lex_state = 155}, + [1885] = {.lex_state = 174}, + [1886] = {.lex_state = 195}, + [1887] = {.lex_state = 164}, + [1888] = {.lex_state = 164}, + [1889] = {.lex_state = 164}, + [1890] = {.lex_state = 144}, + [1891] = {.lex_state = 164}, + [1892] = {.lex_state = 195}, + [1893] = {.lex_state = 164}, + [1894] = {.lex_state = 164}, + [1895] = {.lex_state = 164}, + [1896] = {.lex_state = 144}, + [1897] = {.lex_state = 164}, + [1898] = {.lex_state = 164}, + [1899] = {.lex_state = 195}, + [1900] = {.lex_state = 144}, + [1901] = {.lex_state = 195}, + [1902] = {.lex_state = 164}, + [1903] = {.lex_state = 168}, + [1904] = {.lex_state = 195}, + [1905] = {.lex_state = 195}, + [1906] = {.lex_state = 159}, + [1907] = {.lex_state = 195}, + [1908] = {.lex_state = 195}, + [1909] = {.lex_state = 183}, + [1910] = {.lex_state = 155}, + [1911] = {.lex_state = 195}, + [1912] = {.lex_state = 195}, + [1913] = {.lex_state = 195}, + [1914] = {.lex_state = 195}, + [1915] = {.lex_state = 172}, + [1916] = {.lex_state = 195}, + [1917] = {.lex_state = 183}, + [1918] = {.lex_state = 195}, + [1919] = {.lex_state = 155}, + [1920] = {.lex_state = 155}, + [1921] = {.lex_state = 195}, + [1922] = {.lex_state = 168}, + [1923] = {.lex_state = 155}, + [1924] = {.lex_state = 168}, + [1925] = {.lex_state = 195}, + [1926] = {.lex_state = 172}, + [1927] = {.lex_state = 195}, + [1928] = {.lex_state = 195}, + [1929] = {.lex_state = 159}, + [1930] = {.lex_state = 155}, + [1931] = {.lex_state = 172}, + [1932] = {.lex_state = 172}, + [1933] = {.lex_state = 172}, + [1934] = {.lex_state = 155}, + [1935] = {.lex_state = 195}, + [1936] = {.lex_state = 155}, + [1937] = {.lex_state = 164}, + [1938] = {.lex_state = 172}, + [1939] = {.lex_state = 172}, + [1940] = {.lex_state = 195}, + [1941] = {.lex_state = 172}, + [1942] = {.lex_state = 155}, + [1943] = {.lex_state = 155}, + [1944] = {.lex_state = 172}, + [1945] = {.lex_state = 155}, + [1946] = {.lex_state = 165}, + [1947] = {.lex_state = 168}, + [1948] = {.lex_state = 157}, + [1949] = {.lex_state = 164}, + [1950] = {.lex_state = 154}, + [1951] = {.lex_state = 165}, + [1952] = {.lex_state = 179}, + [1953] = {.lex_state = 168}, + [1954] = {.lex_state = 165}, + [1955] = {.lex_state = 179}, + [1956] = {.lex_state = 165}, + [1957] = {.lex_state = 179}, + [1958] = {.lex_state = 157}, + [1959] = {.lex_state = 157}, + [1960] = {.lex_state = 179}, + [1961] = {.lex_state = 168}, + [1962] = {.lex_state = 179}, + [1963] = {.lex_state = 195}, + [1964] = {.lex_state = 157}, + [1965] = {.lex_state = 157}, + [1966] = {.lex_state = 196}, + [1967] = {.lex_state = 154}, + [1968] = {.lex_state = 157}, + [1969] = {.lex_state = 179}, + [1970] = {.lex_state = 196}, + [1971] = {.lex_state = 179}, + [1972] = {.lex_state = 165}, + [1973] = {.lex_state = 157}, + [1974] = {.lex_state = 157}, + [1975] = {.lex_state = 157}, + [1976] = {.lex_state = 157}, + [1977] = {.lex_state = 157}, + [1978] = {.lex_state = 195}, + [1979] = {.lex_state = 179}, + [1980] = {.lex_state = 179}, + [1981] = {.lex_state = 196}, + [1982] = {.lex_state = 154}, + [1983] = {.lex_state = 154}, + [1984] = {.lex_state = 179}, + [1985] = {.lex_state = 195}, + [1986] = {.lex_state = 165}, + [1987] = {.lex_state = 157}, + [1988] = {.lex_state = 179}, + [1989] = {.lex_state = 196}, + [1990] = {.lex_state = 195}, + [1991] = {.lex_state = 168}, + [1992] = {.lex_state = 195}, + [1993] = {.lex_state = 195}, + [1994] = {.lex_state = 168}, + [1995] = {.lex_state = 195}, + [1996] = {.lex_state = 195}, + [1997] = {.lex_state = 168}, + [1998] = {.lex_state = 195}, + [1999] = {.lex_state = 195}, + [2000] = {.lex_state = 195}, + [2001] = {.lex_state = 195}, + [2002] = {.lex_state = 168}, + [2003] = {.lex_state = 168}, + [2004] = {.lex_state = 168}, + [2005] = {.lex_state = 168}, + [2006] = {.lex_state = 195}, + [2007] = {.lex_state = 155}, + [2008] = {.lex_state = 165}, + [2009] = {.lex_state = 168}, + [2010] = {.lex_state = 195}, + [2011] = {.lex_state = 195}, + [2012] = {.lex_state = 168}, + [2013] = {.lex_state = 168}, + [2014] = {.lex_state = 168}, + [2015] = {.lex_state = 168}, + [2016] = {.lex_state = 168}, + [2017] = {.lex_state = 195}, + [2018] = {.lex_state = 195}, + [2019] = {.lex_state = 195}, + [2020] = {.lex_state = 168}, + [2021] = {.lex_state = 195}, + [2022] = {.lex_state = 168}, + [2023] = {.lex_state = 195}, + [2024] = {.lex_state = 195}, + [2025] = {.lex_state = 195}, + [2026] = {.lex_state = 195}, + [2027] = {.lex_state = 195}, + [2028] = {.lex_state = 195}, + [2029] = {.lex_state = 195}, + [2030] = {.lex_state = 195}, + [2031] = {.lex_state = 195}, + [2032] = {.lex_state = 195}, + [2033] = {.lex_state = 195}, + [2034] = {.lex_state = 195}, + [2035] = {.lex_state = 195}, + [2036] = {.lex_state = 195}, + [2037] = {.lex_state = 168}, + [2038] = {.lex_state = 155}, + [2039] = {.lex_state = 195}, + [2040] = {.lex_state = 195}, + [2041] = {.lex_state = 155}, + [2042] = {.lex_state = 195}, + [2043] = {.lex_state = 195}, + [2044] = {.lex_state = 195}, + [2045] = {.lex_state = 195}, + [2046] = {.lex_state = 195}, + [2047] = {.lex_state = 168}, + [2048] = {.lex_state = 195}, + [2049] = {.lex_state = 195}, + [2050] = {.lex_state = 168}, + [2051] = {.lex_state = 168}, + [2052] = {.lex_state = 168}, + [2053] = {.lex_state = 196}, + [2054] = {.lex_state = 168}, + [2055] = {.lex_state = 195}, + [2056] = {.lex_state = 168}, + [2057] = {.lex_state = 168}, + [2058] = {.lex_state = 195}, + [2059] = {.lex_state = 195}, + [2060] = {.lex_state = 195}, + [2061] = {.lex_state = 168}, + [2062] = {.lex_state = 195}, + [2063] = {.lex_state = 195}, + [2064] = {.lex_state = 195}, + [2065] = {.lex_state = 168}, + [2066] = {.lex_state = 168}, + [2067] = {.lex_state = 165}, + [2068] = {.lex_state = 168}, + [2069] = {.lex_state = 195}, + [2070] = {.lex_state = 184}, + [2071] = {.lex_state = 195}, + [2072] = {.lex_state = 195}, + [2073] = {.lex_state = 195}, + [2074] = {.lex_state = 195}, + [2075] = {.lex_state = 195}, + [2076] = {.lex_state = 195}, + [2077] = {.lex_state = 168}, + [2078] = {.lex_state = 168}, + [2079] = {.lex_state = 168}, + [2080] = {.lex_state = 195}, + [2081] = {.lex_state = 195}, + [2082] = {.lex_state = 195}, + [2083] = {.lex_state = 195}, + [2084] = {.lex_state = 195}, + [2085] = {.lex_state = 164}, + [2086] = {.lex_state = 195}, + [2087] = {.lex_state = 168}, + [2088] = {.lex_state = 195}, + [2089] = {.lex_state = 195}, + [2090] = {.lex_state = 195}, + [2091] = {.lex_state = 195}, + [2092] = {.lex_state = 168}, + [2093] = {.lex_state = 195}, + [2094] = {.lex_state = 195}, + [2095] = {.lex_state = 195}, + [2096] = {.lex_state = 168}, + [2097] = {.lex_state = 168}, + [2098] = {.lex_state = 168}, + [2099] = {.lex_state = 168}, + [2100] = {.lex_state = 168}, + [2101] = {.lex_state = 195}, + [2102] = {.lex_state = 195}, + [2103] = {.lex_state = 155}, + [2104] = {.lex_state = 195}, + [2105] = {.lex_state = 184}, + [2106] = {.lex_state = 184}, + [2107] = {.lex_state = 168}, + [2108] = {.lex_state = 165}, + [2109] = {.lex_state = 168}, + [2110] = {.lex_state = 195}, + [2111] = {.lex_state = 168}, + [2112] = {.lex_state = 168}, + [2113] = {.lex_state = 168}, + [2114] = {.lex_state = 184}, + [2115] = {.lex_state = 168}, + [2116] = {.lex_state = 184}, + [2117] = {.lex_state = 184}, + [2118] = {.lex_state = 195}, + [2119] = {.lex_state = 195}, + [2120] = {.lex_state = 184}, + [2121] = {.lex_state = 195}, + [2122] = {.lex_state = 184}, + [2123] = {.lex_state = 168}, + [2124] = {.lex_state = 168}, + [2125] = {.lex_state = 184}, + [2126] = {.lex_state = 195}, + [2127] = {.lex_state = 195}, + [2128] = {.lex_state = 168}, + [2129] = {.lex_state = 195}, + [2130] = {.lex_state = 168}, + [2131] = {.lex_state = 168}, + [2132] = {.lex_state = 154}, + [2133] = {.lex_state = 168}, + [2134] = {.lex_state = 165}, + [2135] = {.lex_state = 168}, + [2136] = {.lex_state = 195}, + [2137] = {.lex_state = 168}, + [2138] = {.lex_state = 168}, + [2139] = {.lex_state = 168}, + [2140] = {.lex_state = 168}, + [2141] = {.lex_state = 168}, + [2142] = {.lex_state = 168}, + [2143] = {.lex_state = 168}, + [2144] = {.lex_state = 168}, + [2145] = {.lex_state = 195}, + [2146] = {.lex_state = 168}, + [2147] = {.lex_state = 195}, + [2148] = {.lex_state = 168}, + [2149] = {.lex_state = 195}, + [2150] = {.lex_state = 168}, + [2151] = {.lex_state = 195}, + [2152] = {.lex_state = 165}, + [2153] = {.lex_state = 168}, + [2154] = {.lex_state = 195}, + [2155] = {.lex_state = 168}, + [2156] = {.lex_state = 168}, + [2157] = {.lex_state = 168}, + [2158] = {.lex_state = 168}, + [2159] = {.lex_state = 168}, + [2160] = {.lex_state = 195}, + [2161] = {.lex_state = 195}, + [2162] = {.lex_state = 195}, + [2163] = {.lex_state = 195}, + [2164] = {.lex_state = 164}, + [2165] = {.lex_state = 172}, + [2166] = {.lex_state = 195}, + [2167] = {.lex_state = 196}, + [2168] = {.lex_state = 155}, + [2169] = {.lex_state = 155}, + [2170] = {.lex_state = 166}, + [2171] = {.lex_state = 154}, + [2172] = {.lex_state = 184}, + [2173] = {.lex_state = 155}, + [2174] = {.lex_state = 155}, + [2175] = {.lex_state = 163}, + [2176] = {.lex_state = 196}, + [2177] = {.lex_state = 156}, + [2178] = {.lex_state = 156}, + [2179] = {.lex_state = 156}, + [2180] = {.lex_state = 168}, + [2181] = {.lex_state = 195}, + [2182] = {.lex_state = 155}, + [2183] = {.lex_state = 172}, + [2184] = {.lex_state = 164}, + [2185] = {.lex_state = 155}, + [2186] = {.lex_state = 172}, + [2187] = {.lex_state = 156}, + [2188] = {.lex_state = 195}, + [2189] = {.lex_state = 155}, + [2190] = {.lex_state = 154}, + [2191] = {.lex_state = 155}, + [2192] = {.lex_state = 155}, + [2193] = {.lex_state = 195}, + [2194] = {.lex_state = 195}, + [2195] = {.lex_state = 155}, + [2196] = {.lex_state = 166}, + [2197] = {.lex_state = 155}, + [2198] = {.lex_state = 155}, + [2199] = {.lex_state = 166}, + [2200] = {.lex_state = 154}, + [2201] = {.lex_state = 166}, + [2202] = {.lex_state = 166}, + [2203] = {.lex_state = 166}, + [2204] = {.lex_state = 196}, + [2205] = {.lex_state = 155}, + [2206] = {.lex_state = 196}, + [2207] = {.lex_state = 154}, + [2208] = {.lex_state = 155}, + [2209] = {.lex_state = 155}, + [2210] = {.lex_state = 196}, + [2211] = {.lex_state = 168}, + [2212] = {.lex_state = 155}, + [2213] = {.lex_state = 154}, + [2214] = {.lex_state = 154}, + [2215] = {.lex_state = 155}, + [2216] = {.lex_state = 155}, + [2217] = {.lex_state = 155}, + [2218] = {.lex_state = 155}, + [2219] = {.lex_state = 154}, + [2220] = {.lex_state = 155}, + [2221] = {.lex_state = 155}, + [2222] = {.lex_state = 155}, + [2223] = {.lex_state = 155}, + [2224] = {.lex_state = 155}, + [2225] = {.lex_state = 155}, + [2226] = {.lex_state = 155}, + [2227] = {.lex_state = 182}, + [2228] = {.lex_state = 155}, + [2229] = {.lex_state = 137}, + [2230] = {.lex_state = 155}, + [2231] = {.lex_state = 196}, + [2232] = {.lex_state = 155}, + [2233] = {.lex_state = 155}, + [2234] = {.lex_state = 155}, + [2235] = {.lex_state = 154}, + [2236] = {.lex_state = 155}, + [2237] = {.lex_state = 155}, + [2238] = {.lex_state = 155}, + [2239] = {.lex_state = 155}, + [2240] = {.lex_state = 155}, + [2241] = {.lex_state = 155}, + [2242] = {.lex_state = 180}, + [2243] = {.lex_state = 155}, + [2244] = {.lex_state = 154}, + [2245] = {.lex_state = 155}, + [2246] = {.lex_state = 155}, + [2247] = {.lex_state = 155}, + [2248] = {.lex_state = 137}, + [2249] = {.lex_state = 196}, + [2250] = {.lex_state = 155}, + [2251] = {.lex_state = 155}, + [2252] = {.lex_state = 154}, + [2253] = {.lex_state = 137}, + [2254] = {.lex_state = 180}, + [2255] = {.lex_state = 196}, + [2256] = {.lex_state = 196}, + [2257] = {.lex_state = 182}, + [2258] = {.lex_state = 154}, + [2259] = {.lex_state = 154}, + [2260] = {.lex_state = 155}, + [2261] = {.lex_state = 196}, + [2262] = {.lex_state = 155}, + [2263] = {.lex_state = 196}, + [2264] = {.lex_state = 154}, + [2265] = {.lex_state = 154}, + [2266] = {.lex_state = 154}, + [2267] = {.lex_state = 196}, + [2268] = {.lex_state = 196}, + [2269] = {.lex_state = 196}, + [2270] = {.lex_state = 196}, + [2271] = {.lex_state = 196}, + [2272] = {.lex_state = 154}, + [2273] = {.lex_state = 154}, + [2274] = {.lex_state = 163}, + [2275] = {.lex_state = 154}, + [2276] = {.lex_state = 155}, + [2277] = {.lex_state = 154}, + [2278] = {.lex_state = 196}, + [2279] = {.lex_state = 154}, + [2280] = {.lex_state = 154}, + [2281] = {.lex_state = 155}, + [2282] = {.lex_state = 154}, + [2283] = {.lex_state = 196}, + [2284] = {.lex_state = 156}, + [2285] = {.lex_state = 154}, + [2286] = {.lex_state = 155}, + [2287] = {.lex_state = 154}, + [2288] = {.lex_state = 154}, + [2289] = {.lex_state = 155}, + [2290] = {.lex_state = 154}, + [2291] = {.lex_state = 196}, + [2292] = {.lex_state = 155}, + [2293] = {.lex_state = 163}, + [2294] = {.lex_state = 196}, + [2295] = {.lex_state = 154}, + [2296] = {.lex_state = 154}, + [2297] = {.lex_state = 154}, + [2298] = {.lex_state = 154}, + [2299] = {.lex_state = 155}, + [2300] = {.lex_state = 154}, + [2301] = {.lex_state = 154}, + [2302] = {.lex_state = 154}, + [2303] = {.lex_state = 155}, + [2304] = {.lex_state = 155}, + [2305] = {.lex_state = 196}, + [2306] = {.lex_state = 155}, + [2307] = {.lex_state = 180}, + [2308] = {.lex_state = 154}, + [2309] = {.lex_state = 154}, + [2310] = {.lex_state = 155}, + [2311] = {.lex_state = 180}, + [2312] = {.lex_state = 196}, + [2313] = {.lex_state = 196}, + [2314] = {.lex_state = 196}, + [2315] = {.lex_state = 181}, + [2316] = {.lex_state = 155}, + [2317] = {.lex_state = 155}, + [2318] = {.lex_state = 155}, + [2319] = {.lex_state = 188}, + [2320] = {.lex_state = 155}, + [2321] = {.lex_state = 196}, + [2322] = {.lex_state = 154}, + [2323] = {.lex_state = 154}, + [2324] = {.lex_state = 196}, + [2325] = {.lex_state = 154}, + [2326] = {.lex_state = 155}, + [2327] = {.lex_state = 154}, + [2328] = {.lex_state = 154}, + [2329] = {.lex_state = 155}, + [2330] = {.lex_state = 155}, + [2331] = {.lex_state = 155}, + [2332] = {.lex_state = 155}, + [2333] = {.lex_state = 154}, + [2334] = {.lex_state = 154}, + [2335] = {.lex_state = 154}, + [2336] = {.lex_state = 155}, + [2337] = {.lex_state = 180}, + [2338] = {.lex_state = 180}, + [2339] = {.lex_state = 180}, + [2340] = {.lex_state = 157}, + [2341] = {.lex_state = 188}, + [2342] = {.lex_state = 196}, + [2343] = {.lex_state = 180}, + [2344] = {.lex_state = 196}, + [2345] = {.lex_state = 196}, + [2346] = {.lex_state = 164}, + [2347] = {.lex_state = 155}, + [2348] = {.lex_state = 196}, + [2349] = {.lex_state = 196}, + [2350] = {.lex_state = 165}, + [2351] = {.lex_state = 196}, + [2352] = {.lex_state = 154}, + [2353] = {.lex_state = 196}, + [2354] = {.lex_state = 196}, + [2355] = {.lex_state = 170}, + [2356] = {.lex_state = 154}, + [2357] = {.lex_state = 196}, + [2358] = {.lex_state = 170}, + [2359] = {.lex_state = 154}, + [2360] = {.lex_state = 154}, + [2361] = {.lex_state = 171}, + [2362] = {.lex_state = 154}, + [2363] = {.lex_state = 137}, + [2364] = {.lex_state = 154}, + [2365] = {.lex_state = 154}, + [2366] = {.lex_state = 196}, + [2367] = {.lex_state = 154}, + [2368] = {.lex_state = 137}, + [2369] = {.lex_state = 154}, + [2370] = {.lex_state = 154}, + [2371] = {.lex_state = 155}, + [2372] = {.lex_state = 182}, + [2373] = {.lex_state = 137}, + [2374] = {.lex_state = 195}, + [2375] = {.lex_state = 154}, + [2376] = {.lex_state = 196}, + [2377] = {.lex_state = 196}, + [2378] = {.lex_state = 154}, + [2379] = {.lex_state = 163}, + [2380] = {.lex_state = 196}, + [2381] = {.lex_state = 196}, + [2382] = {.lex_state = 196}, + [2383] = {.lex_state = 154}, + [2384] = {.lex_state = 154}, + [2385] = {.lex_state = 196}, + [2386] = {.lex_state = 155}, + [2387] = {.lex_state = 157}, + [2388] = {.lex_state = 196}, + [2389] = {.lex_state = 196}, + [2390] = {.lex_state = 196}, + [2391] = {.lex_state = 196}, + [2392] = {.lex_state = 157}, + [2393] = {.lex_state = 196}, + [2394] = {.lex_state = 196}, + [2395] = {.lex_state = 196}, + [2396] = {.lex_state = 196}, + [2397] = {.lex_state = 196}, + [2398] = {.lex_state = 155}, + [2399] = {.lex_state = 154}, + [2400] = {.lex_state = 155}, + [2401] = {.lex_state = 154}, + [2402] = {.lex_state = 196}, + [2403] = {.lex_state = 154}, + [2404] = {.lex_state = 155}, + [2405] = {.lex_state = 154}, + [2406] = {.lex_state = 155}, + [2407] = {.lex_state = 196}, + [2408] = {.lex_state = 165}, + [2409] = {.lex_state = 196}, + [2410] = {.lex_state = 196}, + [2411] = {.lex_state = 155}, + [2412] = {.lex_state = 163}, + [2413] = {.lex_state = 195}, + [2414] = {.lex_state = 154}, + [2415] = {.lex_state = 155}, + [2416] = {.lex_state = 154}, + [2417] = {.lex_state = 180}, + [2418] = {.lex_state = 180}, + [2419] = {.lex_state = 180}, + [2420] = {.lex_state = 196}, + [2421] = {.lex_state = 196}, + [2422] = {.lex_state = 180}, + [2423] = {.lex_state = 196}, + [2424] = {.lex_state = 155}, + [2425] = {.lex_state = 155}, + [2426] = {.lex_state = 196}, + [2427] = {.lex_state = 154}, + [2428] = {.lex_state = 155}, + [2429] = {.lex_state = 180}, + [2430] = {.lex_state = 154}, + [2431] = {.lex_state = 196}, + [2432] = {.lex_state = 196}, + [2433] = {.lex_state = 155}, + [2434] = {.lex_state = 154}, + [2435] = {.lex_state = 196}, + [2436] = {.lex_state = 196}, + [2437] = {.lex_state = 196}, + [2438] = {.lex_state = 196}, + [2439] = {.lex_state = 196}, + [2440] = {.lex_state = 196}, + [2441] = {.lex_state = 196}, + [2442] = {.lex_state = 196}, + [2443] = {.lex_state = 196}, + [2444] = {.lex_state = 196}, + [2445] = {.lex_state = 196}, + [2446] = {.lex_state = 154}, + [2447] = {.lex_state = 154}, + [2448] = {.lex_state = 155}, + [2449] = {.lex_state = 155}, + [2450] = {.lex_state = 154}, + [2451] = {.lex_state = 196}, + [2452] = {.lex_state = 154}, + [2453] = {.lex_state = 155}, + [2454] = {.lex_state = 154}, + [2455] = {.lex_state = 154}, + [2456] = {.lex_state = 154}, + [2457] = {.lex_state = 154}, + [2458] = {.lex_state = 196}, + [2459] = {.lex_state = 154}, + [2460] = {.lex_state = 154}, + [2461] = {.lex_state = 196}, + [2462] = {.lex_state = 154}, + [2463] = {.lex_state = 196}, + [2464] = {.lex_state = 168}, + [2465] = {.lex_state = 196}, + [2466] = {.lex_state = 168}, + [2467] = {.lex_state = 165}, + [2468] = {.lex_state = 168}, + [2469] = {.lex_state = 164}, + [2470] = {.lex_state = 168}, + [2471] = {.lex_state = 168}, + [2472] = {.lex_state = 155}, + [2473] = {.lex_state = 168}, + [2474] = {.lex_state = 168}, + [2475] = {.lex_state = 187}, + [2476] = {.lex_state = 168}, + [2477] = {.lex_state = 168}, + [2478] = {.lex_state = 164}, + [2479] = {.lex_state = 168}, + [2480] = {.lex_state = 165}, + [2481] = {.lex_state = 187}, + [2482] = {.lex_state = 168}, + [2483] = {.lex_state = 168}, + [2484] = {.lex_state = 168}, + [2485] = {.lex_state = 165}, + [2486] = {.lex_state = 168}, + [2487] = {.lex_state = 168}, + [2488] = {.lex_state = 168}, + [2489] = {.lex_state = 168}, + [2490] = {.lex_state = 168}, + [2491] = {.lex_state = 164}, + [2492] = {.lex_state = 155}, + [2493] = {.lex_state = 168}, + [2494] = {.lex_state = 168}, + [2495] = {.lex_state = 168}, + [2496] = {.lex_state = 168}, + [2497] = {.lex_state = 168}, + [2498] = {.lex_state = 168}, + [2499] = {.lex_state = 168}, + [2500] = {.lex_state = 168}, + [2501] = {.lex_state = 168}, + [2502] = {.lex_state = 168}, + [2503] = {.lex_state = 168}, + [2504] = {.lex_state = 155}, + [2505] = {.lex_state = 187}, + [2506] = {.lex_state = 187}, + [2507] = {.lex_state = 187}, + [2508] = {.lex_state = 164}, + [2509] = {.lex_state = 168}, + [2510] = {.lex_state = 168}, + [2511] = {.lex_state = 168}, + [2512] = {.lex_state = 168}, + [2513] = {.lex_state = 168}, + [2514] = {.lex_state = 168}, + [2515] = {.lex_state = 168}, + [2516] = {.lex_state = 168}, + [2517] = {.lex_state = 168}, + [2518] = {.lex_state = 168}, + [2519] = {.lex_state = 150}, + [2520] = {.lex_state = 187}, + [2521] = {.lex_state = 168}, + [2522] = {.lex_state = 164}, + [2523] = {.lex_state = 164}, + [2524] = {.lex_state = 168}, + [2525] = {.lex_state = 187}, + [2526] = {.lex_state = 168}, + [2527] = {.lex_state = 168}, + [2528] = {.lex_state = 187}, + [2529] = {.lex_state = 187}, + [2530] = {.lex_state = 168}, + [2531] = {.lex_state = 168}, + [2532] = {.lex_state = 168}, + [2533] = {.lex_state = 168}, + [2534] = {.lex_state = 168}, + [2535] = {.lex_state = 168}, + [2536] = {.lex_state = 168}, + [2537] = {.lex_state = 168}, + [2538] = {.lex_state = 168}, + [2539] = {.lex_state = 168}, + [2540] = {.lex_state = 168}, + [2541] = {.lex_state = 168}, + [2542] = {.lex_state = 168}, + [2543] = {.lex_state = 168}, + [2544] = {.lex_state = 168}, + [2545] = {.lex_state = 168}, + [2546] = {.lex_state = 168}, + [2547] = {.lex_state = 168}, + [2548] = {.lex_state = 168}, + [2549] = {.lex_state = 164}, + [2550] = {.lex_state = 168}, + [2551] = {.lex_state = 168}, + [2552] = {.lex_state = 168}, + [2553] = {.lex_state = 168}, + [2554] = {.lex_state = 168}, + [2555] = {.lex_state = 168}, + [2556] = {.lex_state = 168}, + [2557] = {.lex_state = 168}, + [2558] = {.lex_state = 180}, + [2559] = {.lex_state = 168}, + [2560] = {.lex_state = 158}, + [2561] = {.lex_state = 150}, + [2562] = {.lex_state = 168}, + [2563] = {.lex_state = 168}, + [2564] = {.lex_state = 168}, + [2565] = {.lex_state = 168}, + [2566] = {.lex_state = 168}, + [2567] = {.lex_state = 155}, + [2568] = {.lex_state = 150}, + [2569] = {.lex_state = 142}, + [2570] = {.lex_state = 168}, + [2571] = {.lex_state = 168}, + [2572] = {.lex_state = 168}, + [2573] = {.lex_state = 168}, + [2574] = {.lex_state = 168}, + [2575] = {.lex_state = 165}, + [2576] = {.lex_state = 168}, + [2577] = {.lex_state = 168}, + [2578] = {.lex_state = 168}, + [2579] = {.lex_state = 164}, + [2580] = {.lex_state = 156}, + [2581] = {.lex_state = 155}, + [2582] = {.lex_state = 164}, + [2583] = {.lex_state = 161}, + [2584] = {.lex_state = 173}, + [2585] = {.lex_state = 165}, + [2586] = {.lex_state = 156}, + [2587] = {.lex_state = 156}, + [2588] = {.lex_state = 165}, + [2589] = {.lex_state = 165}, + [2590] = {.lex_state = 195}, + [2591] = {.lex_state = 165}, + [2592] = {.lex_state = 155}, + [2593] = {.lex_state = 165}, + [2594] = {.lex_state = 165}, + [2595] = {.lex_state = 165}, + [2596] = {.lex_state = 165}, + [2597] = {.lex_state = 165}, + [2598] = {.lex_state = 165}, + [2599] = {.lex_state = 165}, + [2600] = {.lex_state = 165}, + [2601] = {.lex_state = 165}, + [2602] = {.lex_state = 165}, + [2603] = {.lex_state = 165}, + [2604] = {.lex_state = 165}, + [2605] = {.lex_state = 165}, + [2606] = {.lex_state = 165}, + [2607] = {.lex_state = 165}, + [2608] = {.lex_state = 165}, + [2609] = {.lex_state = 165}, + [2610] = {.lex_state = 165}, + [2611] = {.lex_state = 165}, + [2612] = {.lex_state = 165}, + [2613] = {.lex_state = 165}, + [2614] = {.lex_state = 165}, + [2615] = {.lex_state = 155}, + [2616] = {.lex_state = 155}, + [2617] = {.lex_state = 165}, + [2618] = {.lex_state = 165}, + [2619] = {.lex_state = 165}, + [2620] = {.lex_state = 165}, + [2621] = {.lex_state = 165}, + [2622] = {.lex_state = 165}, + [2623] = {.lex_state = 165}, + [2624] = {.lex_state = 155}, + [2625] = {.lex_state = 165}, + [2626] = {.lex_state = 165}, + [2627] = {.lex_state = 165}, + [2628] = {.lex_state = 155}, + [2629] = {.lex_state = 165}, + [2630] = {.lex_state = 165}, + [2631] = {.lex_state = 165}, + [2632] = {.lex_state = 165}, + [2633] = {.lex_state = 165}, + [2634] = {.lex_state = 165}, + [2635] = {.lex_state = 165}, + [2636] = {.lex_state = 165}, + [2637] = {.lex_state = 165}, + [2638] = {.lex_state = 165}, + [2639] = {.lex_state = 165}, + [2640] = {.lex_state = 165}, + [2641] = {.lex_state = 165}, + [2642] = {.lex_state = 165}, + [2643] = {.lex_state = 184}, + [2644] = {.lex_state = 165}, + [2645] = {.lex_state = 165}, + [2646] = {.lex_state = 165}, + [2647] = {.lex_state = 165}, + [2648] = {.lex_state = 165}, + [2649] = {.lex_state = 195}, + [2650] = {.lex_state = 165}, + [2651] = {.lex_state = 165}, + [2652] = {.lex_state = 165}, + [2653] = {.lex_state = 165}, + [2654] = {.lex_state = 165}, + [2655] = {.lex_state = 165}, + [2656] = {.lex_state = 165}, + [2657] = {.lex_state = 165}, + [2658] = {.lex_state = 165}, + [2659] = {.lex_state = 165}, + [2660] = {.lex_state = 165}, + [2661] = {.lex_state = 165}, + [2662] = {.lex_state = 184}, + [2663] = {.lex_state = 155}, + [2664] = {.lex_state = 165}, + [2665] = {.lex_state = 165}, + [2666] = {.lex_state = 155}, + [2667] = {.lex_state = 161}, + [2668] = {.lex_state = 156}, + [2669] = {.lex_state = 155}, + [2670] = {.lex_state = 155}, + [2671] = {.lex_state = 184}, + [2672] = {.lex_state = 156}, + [2673] = {.lex_state = 156}, + [2674] = {.lex_state = 156}, + [2675] = {.lex_state = 155}, + [2676] = {.lex_state = 162}, + [2677] = {.lex_state = 156}, + [2678] = {.lex_state = 156}, + [2679] = {.lex_state = 155}, + [2680] = {.lex_state = 156}, + [2681] = {.lex_state = 155}, + [2682] = {.lex_state = 155}, + [2683] = {.lex_state = 156}, + [2684] = {.lex_state = 155}, + [2685] = {.lex_state = 155}, + [2686] = {.lex_state = 180}, + [2687] = {.lex_state = 165}, + [2688] = {.lex_state = 156}, + [2689] = {.lex_state = 155}, + [2690] = {.lex_state = 155}, + [2691] = {.lex_state = 155}, + [2692] = {.lex_state = 155}, + [2693] = {.lex_state = 155}, + [2694] = {.lex_state = 155}, + [2695] = {.lex_state = 155}, + [2696] = {.lex_state = 155}, + [2697] = {.lex_state = 155}, + [2698] = {.lex_state = 155}, + [2699] = {.lex_state = 155}, + [2700] = {.lex_state = 155}, + [2701] = {.lex_state = 155}, + [2702] = {.lex_state = 155}, + [2703] = {.lex_state = 184}, + [2704] = {.lex_state = 184}, + [2705] = {.lex_state = 184}, + [2706] = {.lex_state = 155}, + [2707] = {.lex_state = 163}, + [2708] = {.lex_state = 184}, + [2709] = {.lex_state = 155}, + [2710] = {.lex_state = 155}, + [2711] = {.lex_state = 184}, + [2712] = {.lex_state = 184}, + [2713] = {.lex_state = 184}, + [2714] = {.lex_state = 184}, + [2715] = {.lex_state = 155}, + [2716] = {.lex_state = 184}, + [2717] = {.lex_state = 184}, + [2718] = {.lex_state = 184}, + [2719] = {.lex_state = 155}, + [2720] = {.lex_state = 184}, + [2721] = {.lex_state = 184}, + [2722] = {.lex_state = 184}, + [2723] = {.lex_state = 184}, + [2724] = {.lex_state = 184}, + [2725] = {.lex_state = 155}, + [2726] = {.lex_state = 155}, + [2727] = {.lex_state = 155}, + [2728] = {.lex_state = 155}, + [2729] = {.lex_state = 155}, + [2730] = {.lex_state = 155}, + [2731] = {.lex_state = 155}, + [2732] = {.lex_state = 155}, + [2733] = {.lex_state = 155}, + [2734] = {.lex_state = 155}, + [2735] = {.lex_state = 155}, + [2736] = {.lex_state = 184}, + [2737] = {.lex_state = 184}, + [2738] = {.lex_state = 184}, + [2739] = {.lex_state = 184}, + [2740] = {.lex_state = 184}, + [2741] = {.lex_state = 184}, + [2742] = {.lex_state = 184}, + [2743] = {.lex_state = 184}, + [2744] = {.lex_state = 184}, + [2745] = {.lex_state = 184}, + [2746] = {.lex_state = 184}, + [2747] = {.lex_state = 184}, + [2748] = {.lex_state = 184}, + [2749] = {.lex_state = 184}, + [2750] = {.lex_state = 184}, + [2751] = {.lex_state = 184}, + [2752] = {.lex_state = 184}, + [2753] = {.lex_state = 184}, + [2754] = {.lex_state = 155}, + [2755] = {.lex_state = 184}, + [2756] = {.lex_state = 155}, + [2757] = {.lex_state = 184}, + [2758] = {.lex_state = 184}, + [2759] = {.lex_state = 184}, + [2760] = {.lex_state = 184}, + [2761] = {.lex_state = 184}, + [2762] = {.lex_state = 184}, + [2763] = {.lex_state = 184}, + [2764] = {.lex_state = 184}, + [2765] = {.lex_state = 155}, + [2766] = {.lex_state = 168}, + [2767] = {.lex_state = 155}, + [2768] = {.lex_state = 155}, + [2769] = {.lex_state = 163}, + [2770] = {.lex_state = 155}, + [2771] = {.lex_state = 155}, + [2772] = {.lex_state = 164}, + [2773] = {.lex_state = 155}, + [2774] = {.lex_state = 163}, + [2775] = {.lex_state = 142}, + [2776] = {.lex_state = 181}, + [2777] = {.lex_state = 163}, + [2778] = {.lex_state = 163}, + [2779] = {.lex_state = 184}, + [2780] = {.lex_state = 155}, + [2781] = {.lex_state = 155}, + [2782] = {.lex_state = 155}, + [2783] = {.lex_state = 155}, + [2784] = {.lex_state = 155}, + [2785] = {.lex_state = 155}, + [2786] = {.lex_state = 155}, + [2787] = {.lex_state = 155}, + [2788] = {.lex_state = 155}, + [2789] = {.lex_state = 155}, + [2790] = {.lex_state = 155}, + [2791] = {.lex_state = 163}, + [2792] = {.lex_state = 155}, + [2793] = {.lex_state = 155}, + [2794] = {.lex_state = 181}, + [2795] = {.lex_state = 155}, + [2796] = {.lex_state = 181}, + [2797] = {.lex_state = 181}, + [2798] = {.lex_state = 155}, + [2799] = {.lex_state = 184}, + [2800] = {.lex_state = 155}, + [2801] = {.lex_state = 155}, + [2802] = {.lex_state = 184}, + [2803] = {.lex_state = 184}, + [2804] = {.lex_state = 184}, + [2805] = {.lex_state = 181}, + [2806] = {.lex_state = 184}, + [2807] = {.lex_state = 184}, + [2808] = {.lex_state = 181}, + [2809] = {.lex_state = 184}, + [2810] = {.lex_state = 184}, + [2811] = {.lex_state = 155}, + [2812] = {.lex_state = 184}, + [2813] = {.lex_state = 155}, + [2814] = {.lex_state = 155}, + [2815] = {.lex_state = 155}, + [2816] = {.lex_state = 184}, + [2817] = {.lex_state = 155}, + [2818] = {.lex_state = 155}, + [2819] = {.lex_state = 155}, + [2820] = {.lex_state = 155}, + [2821] = {.lex_state = 181}, + [2822] = {.lex_state = 181}, + [2823] = {.lex_state = 155}, + [2824] = {.lex_state = 181}, + [2825] = {.lex_state = 181}, + [2826] = {.lex_state = 181}, + [2827] = {.lex_state = 181}, + [2828] = {.lex_state = 165}, + [2829] = {.lex_state = 155}, + [2830] = {.lex_state = 155}, + [2831] = {.lex_state = 155}, + [2832] = {.lex_state = 155}, + [2833] = {.lex_state = 155}, + [2834] = {.lex_state = 155}, + [2835] = {.lex_state = 155}, + [2836] = {.lex_state = 184}, + [2837] = {.lex_state = 184}, + [2838] = {.lex_state = 155}, + [2839] = {.lex_state = 155}, + [2840] = {.lex_state = 155}, + [2841] = {.lex_state = 155}, + [2842] = {.lex_state = 155}, + [2843] = {.lex_state = 155}, + [2844] = {.lex_state = 155}, + [2845] = {.lex_state = 155}, + [2846] = {.lex_state = 155}, + [2847] = {.lex_state = 155}, + [2848] = {.lex_state = 155}, + [2849] = {.lex_state = 155}, + [2850] = {.lex_state = 155}, + [2851] = {.lex_state = 155}, + [2852] = {.lex_state = 184}, + [2853] = {.lex_state = 155}, + [2854] = {.lex_state = 155}, + [2855] = {.lex_state = 155}, + [2856] = {.lex_state = 155}, + [2857] = {.lex_state = 155}, + [2858] = {.lex_state = 155}, + [2859] = {.lex_state = 155}, + [2860] = {.lex_state = 155}, + [2861] = {.lex_state = 155}, + [2862] = {.lex_state = 184}, + [2863] = {.lex_state = 184}, + [2864] = {.lex_state = 184}, + [2865] = {.lex_state = 184}, + [2866] = {.lex_state = 155}, + [2867] = {.lex_state = 155}, + [2868] = {.lex_state = 155}, + [2869] = {.lex_state = 155}, + [2870] = {.lex_state = 155}, + [2871] = {.lex_state = 155}, + [2872] = {.lex_state = 155}, + [2873] = {.lex_state = 155}, + [2874] = {.lex_state = 155}, + [2875] = {.lex_state = 155}, + [2876] = {.lex_state = 155}, + [2877] = {.lex_state = 184}, + [2878] = {.lex_state = 155}, + [2879] = {.lex_state = 155}, + [2880] = {.lex_state = 184}, + [2881] = {.lex_state = 155}, + [2882] = {.lex_state = 155}, + [2883] = {.lex_state = 155}, + [2884] = {.lex_state = 155}, + [2885] = {.lex_state = 155}, + [2886] = {.lex_state = 155}, + [2887] = {.lex_state = 155}, + [2888] = {.lex_state = 155}, + [2889] = {.lex_state = 155}, + [2890] = {.lex_state = 155}, + [2891] = {.lex_state = 155}, + [2892] = {.lex_state = 155}, + [2893] = {.lex_state = 155}, + [2894] = {.lex_state = 155}, + [2895] = {.lex_state = 155}, + [2896] = {.lex_state = 155}, + [2897] = {.lex_state = 155}, + [2898] = {.lex_state = 155}, + [2899] = {.lex_state = 155}, + [2900] = {.lex_state = 155}, + [2901] = {.lex_state = 165}, + [2902] = {.lex_state = 155}, + [2903] = {.lex_state = 155}, + [2904] = {.lex_state = 155}, + [2905] = {.lex_state = 155}, + [2906] = {.lex_state = 155}, + [2907] = {.lex_state = 155}, + [2908] = {.lex_state = 155}, + [2909] = {.lex_state = 155}, + [2910] = {.lex_state = 155}, + [2911] = {.lex_state = 155}, + [2912] = {.lex_state = 155}, + [2913] = {.lex_state = 155}, + [2914] = {.lex_state = 155}, + [2915] = {.lex_state = 155}, + [2916] = {.lex_state = 155}, + [2917] = {.lex_state = 155}, + [2918] = {.lex_state = 155}, + [2919] = {.lex_state = 155}, + [2920] = {.lex_state = 155}, + [2921] = {.lex_state = 155}, + [2922] = {.lex_state = 155}, + [2923] = {.lex_state = 155}, + [2924] = {.lex_state = 155}, + [2925] = {.lex_state = 155}, + [2926] = {.lex_state = 165}, + [2927] = {.lex_state = 165}, + [2928] = {.lex_state = 165}, + [2929] = {.lex_state = 155}, + [2930] = {.lex_state = 195}, + [2931] = {.lex_state = 176}, + [2932] = {.lex_state = 165}, + [2933] = {.lex_state = 150}, + [2934] = {.lex_state = 165}, + [2935] = {.lex_state = 165}, + [2936] = {.lex_state = 165}, + [2937] = {.lex_state = 195}, + [2938] = {.lex_state = 150}, + [2939] = {.lex_state = 195}, + [2940] = {.lex_state = 195}, + [2941] = {.lex_state = 195}, + [2942] = {.lex_state = 195}, + [2943] = {.lex_state = 165}, + [2944] = {.lex_state = 195}, + [2945] = {.lex_state = 195}, + [2946] = {.lex_state = 195}, + [2947] = {.lex_state = 195}, + [2948] = {.lex_state = 165}, + [2949] = {.lex_state = 165}, + [2950] = {.lex_state = 195}, + [2951] = {.lex_state = 195}, + [2952] = {.lex_state = 165}, + [2953] = {.lex_state = 165}, + [2954] = {.lex_state = 150}, + [2955] = {.lex_state = 195}, + [2956] = {.lex_state = 195}, + [2957] = {.lex_state = 187}, + [2958] = {.lex_state = 195}, + [2959] = {.lex_state = 165}, + [2960] = {.lex_state = 165}, + [2961] = {.lex_state = 195}, + [2962] = {.lex_state = 165}, + [2963] = {.lex_state = 165}, + [2964] = {.lex_state = 165}, + [2965] = {.lex_state = 165}, + [2966] = {.lex_state = 195}, + [2967] = {.lex_state = 165}, + [2968] = {.lex_state = 165}, + [2969] = {.lex_state = 165}, + [2970] = {.lex_state = 165}, + [2971] = {.lex_state = 177}, + [2972] = {.lex_state = 195}, + [2973] = {.lex_state = 195}, + [2974] = {.lex_state = 195}, + [2975] = {.lex_state = 165}, + [2976] = {.lex_state = 165}, + [2977] = {.lex_state = 150}, + [2978] = {.lex_state = 165}, + [2979] = {.lex_state = 176}, + [2980] = {.lex_state = 155}, + [2981] = {.lex_state = 165}, + [2982] = {.lex_state = 165}, + [2983] = {.lex_state = 165}, + [2984] = {.lex_state = 165}, + [2985] = {.lex_state = 165}, + [2986] = {.lex_state = 165}, + [2987] = {.lex_state = 165}, + [2988] = {.lex_state = 161}, + [2989] = {.lex_state = 165}, + [2990] = {.lex_state = 165}, + [2991] = {.lex_state = 156}, + [2992] = {.lex_state = 155}, + [2993] = {.lex_state = 165}, + [2994] = {.lex_state = 155}, + [2995] = {.lex_state = 155}, + [2996] = {.lex_state = 155}, + [2997] = {.lex_state = 155}, + [2998] = {.lex_state = 165}, + [2999] = {.lex_state = 165}, + [3000] = {.lex_state = 165}, + [3001] = {.lex_state = 165}, + [3002] = {.lex_state = 165}, + [3003] = {.lex_state = 152}, + [3004] = {.lex_state = 165}, + [3005] = {.lex_state = 155}, + [3006] = {.lex_state = 165}, + [3007] = {.lex_state = 165}, + [3008] = {.lex_state = 165}, + [3009] = {.lex_state = 165}, + [3010] = {.lex_state = 165}, + [3011] = {.lex_state = 165}, + [3012] = {.lex_state = 165}, + [3013] = {.lex_state = 165}, + [3014] = {.lex_state = 165}, + [3015] = {.lex_state = 165}, + [3016] = {.lex_state = 165}, + [3017] = {.lex_state = 152}, + [3018] = {.lex_state = 155}, + [3019] = {.lex_state = 165}, + [3020] = {.lex_state = 165}, + [3021] = {.lex_state = 165}, + [3022] = {.lex_state = 165}, + [3023] = {.lex_state = 155}, + [3024] = {.lex_state = 165}, + [3025] = {.lex_state = 165}, + [3026] = {.lex_state = 161}, + [3027] = {.lex_state = 165}, + [3028] = {.lex_state = 165}, + [3029] = {.lex_state = 165}, + [3030] = {.lex_state = 165}, + [3031] = {.lex_state = 165}, + [3032] = {.lex_state = 165}, + [3033] = {.lex_state = 165}, + [3034] = {.lex_state = 165}, + [3035] = {.lex_state = 165}, + [3036] = {.lex_state = 165}, + [3037] = {.lex_state = 165}, + [3038] = {.lex_state = 165}, + [3039] = {.lex_state = 165}, + [3040] = {.lex_state = 155}, + [3041] = {.lex_state = 155}, + [3042] = {.lex_state = 165}, + [3043] = {.lex_state = 155}, + [3044] = {.lex_state = 155}, + [3045] = {.lex_state = 155}, + [3046] = {.lex_state = 165}, + [3047] = {.lex_state = 155}, + [3048] = {.lex_state = 155}, + [3049] = {.lex_state = 155}, + [3050] = {.lex_state = 155}, + [3051] = {.lex_state = 155}, + [3052] = {.lex_state = 165}, + [3053] = {.lex_state = 165}, + [3054] = {.lex_state = 165}, + [3055] = {.lex_state = 168}, + [3056] = {.lex_state = 165}, + [3057] = {.lex_state = 168}, + [3058] = {.lex_state = 168}, + [3059] = {.lex_state = 155}, + [3060] = {.lex_state = 168}, + [3061] = {.lex_state = 165}, + [3062] = {.lex_state = 168}, + [3063] = {.lex_state = 168}, + [3064] = {.lex_state = 168}, + [3065] = {.lex_state = 168}, + [3066] = {.lex_state = 168}, + [3067] = {.lex_state = 168}, + [3068] = {.lex_state = 165}, + [3069] = {.lex_state = 168}, + [3070] = {.lex_state = 168}, + [3071] = {.lex_state = 168}, + [3072] = {.lex_state = 168}, + [3073] = {.lex_state = 168}, + [3074] = {.lex_state = 152}, + [3075] = {.lex_state = 168}, + [3076] = {.lex_state = 168}, + [3077] = {.lex_state = 165}, + [3078] = {.lex_state = 155}, + [3079] = {.lex_state = 155}, + [3080] = {.lex_state = 165}, + [3081] = {.lex_state = 168}, + [3082] = {.lex_state = 155}, + [3083] = {.lex_state = 155}, + [3084] = {.lex_state = 168}, + [3085] = {.lex_state = 168}, + [3086] = {.lex_state = 168}, + [3087] = {.lex_state = 168}, + [3088] = {.lex_state = 168}, + [3089] = {.lex_state = 168}, + [3090] = {.lex_state = 168}, + [3091] = {.lex_state = 165}, + [3092] = {.lex_state = 165}, + [3093] = {.lex_state = 165}, + [3094] = {.lex_state = 155}, + [3095] = {.lex_state = 155}, + [3096] = {.lex_state = 181}, + [3097] = {.lex_state = 168}, + [3098] = {.lex_state = 155}, + [3099] = {.lex_state = 155}, + [3100] = {.lex_state = 155}, + [3101] = {.lex_state = 155}, + [3102] = {.lex_state = 155}, + [3103] = {.lex_state = 155}, + [3104] = {.lex_state = 155}, + [3105] = {.lex_state = 155}, + [3106] = {.lex_state = 155}, + [3107] = {.lex_state = 155}, + [3108] = {.lex_state = 155}, + [3109] = {.lex_state = 155}, + [3110] = {.lex_state = 155}, + [3111] = {.lex_state = 155}, + [3112] = {.lex_state = 155}, + [3113] = {.lex_state = 155}, + [3114] = {.lex_state = 181}, + [3115] = {.lex_state = 155}, + [3116] = {.lex_state = 155}, + [3117] = {.lex_state = 142}, + [3118] = {.lex_state = 155}, + [3119] = {.lex_state = 155}, + [3120] = {.lex_state = 155}, + [3121] = {.lex_state = 155}, + [3122] = {.lex_state = 155}, + [3123] = {.lex_state = 155}, + [3124] = {.lex_state = 155}, + [3125] = {.lex_state = 155}, + [3126] = {.lex_state = 155}, + [3127] = {.lex_state = 155}, + [3128] = {.lex_state = 155}, + [3129] = {.lex_state = 155}, + [3130] = {.lex_state = 155}, + [3131] = {.lex_state = 155}, + [3132] = {.lex_state = 155}, + [3133] = {.lex_state = 155}, + [3134] = {.lex_state = 155}, + [3135] = {.lex_state = 155}, + [3136] = {.lex_state = 142}, + [3137] = {.lex_state = 168}, + [3138] = {.lex_state = 168}, + [3139] = {.lex_state = 168}, + [3140] = {.lex_state = 168}, + [3141] = {.lex_state = 168}, + [3142] = {.lex_state = 168}, + [3143] = {.lex_state = 168}, + [3144] = {.lex_state = 155}, + [3145] = {.lex_state = 155}, + [3146] = {.lex_state = 155}, + [3147] = {.lex_state = 181}, + [3148] = {.lex_state = 181}, + [3149] = {.lex_state = 181}, + [3150] = {.lex_state = 191}, + [3151] = {.lex_state = 191}, + [3152] = {.lex_state = 181}, + [3153] = {.lex_state = 181}, + [3154] = {.lex_state = 181}, + [3155] = {.lex_state = 191}, + [3156] = {.lex_state = 181}, + [3157] = {.lex_state = 181}, + [3158] = {.lex_state = 181}, + [3159] = {.lex_state = 181}, + [3160] = {.lex_state = 181}, + [3161] = {.lex_state = 181}, + [3162] = {.lex_state = 181}, + [3163] = {.lex_state = 181}, + [3164] = {.lex_state = 181}, + [3165] = {.lex_state = 181}, + [3166] = {.lex_state = 181}, + [3167] = {.lex_state = 181}, + [3168] = {.lex_state = 181}, + [3169] = {.lex_state = 181}, + [3170] = {.lex_state = 181}, + [3171] = {.lex_state = 181}, + [3172] = {.lex_state = 181}, + [3173] = {.lex_state = 181}, + [3174] = {.lex_state = 181}, + [3175] = {.lex_state = 181}, + [3176] = {.lex_state = 181}, + [3177] = {.lex_state = 181}, + [3178] = {.lex_state = 181}, + [3179] = {.lex_state = 181}, + [3180] = {.lex_state = 181}, + [3181] = {.lex_state = 181}, + [3182] = {.lex_state = 181}, + [3183] = {.lex_state = 181}, + [3184] = {.lex_state = 181}, + [3185] = {.lex_state = 181}, + [3186] = {.lex_state = 181}, + [3187] = {.lex_state = 181}, + [3188] = {.lex_state = 181}, + [3189] = {.lex_state = 181}, + [3190] = {.lex_state = 181}, + [3191] = {.lex_state = 181}, + [3192] = {.lex_state = 181}, + [3193] = {.lex_state = 181}, + [3194] = {.lex_state = 191}, + [3195] = {.lex_state = 181}, + [3196] = {.lex_state = 181}, + [3197] = {.lex_state = 181}, + [3198] = {.lex_state = 181}, + [3199] = {.lex_state = 181}, + [3200] = {.lex_state = 181}, + [3201] = {.lex_state = 181}, + [3202] = {.lex_state = 181}, + [3203] = {.lex_state = 181}, + [3204] = {.lex_state = 181}, + [3205] = {.lex_state = 181}, + [3206] = {.lex_state = 181}, + [3207] = {.lex_state = 181}, + [3208] = {.lex_state = 181}, + [3209] = {.lex_state = 181}, + [3210] = {.lex_state = 181}, + [3211] = {.lex_state = 181}, + [3212] = {.lex_state = 181}, + [3213] = {.lex_state = 181}, + [3214] = {.lex_state = 181}, + [3215] = {.lex_state = 142}, + [3216] = {.lex_state = 142}, + [3217] = {.lex_state = 180}, + [3218] = {.lex_state = 142}, + [3219] = {.lex_state = 142}, + [3220] = {.lex_state = 142}, + [3221] = {.lex_state = 152}, + [3222] = {.lex_state = 180}, + [3223] = {.lex_state = 142}, + [3224] = {.lex_state = 142}, + [3225] = {.lex_state = 152}, + [3226] = {.lex_state = 180}, + [3227] = {.lex_state = 142}, + [3228] = {.lex_state = 142}, + [3229] = {.lex_state = 142}, + [3230] = {.lex_state = 142}, + [3231] = {.lex_state = 152}, + [3232] = {.lex_state = 181}, + [3233] = {.lex_state = 152}, + [3234] = {.lex_state = 142}, + [3235] = {.lex_state = 142}, + [3236] = {.lex_state = 142}, + [3237] = {.lex_state = 142}, + [3238] = {.lex_state = 142}, + [3239] = {.lex_state = 142}, + [3240] = {.lex_state = 142}, + [3241] = {.lex_state = 142}, + [3242] = {.lex_state = 142}, + [3243] = {.lex_state = 197}, + [3244] = {.lex_state = 180}, + [3245] = {.lex_state = 180}, + [3246] = {.lex_state = 180}, + [3247] = {.lex_state = 197}, + [3248] = {.lex_state = 180}, + [3249] = {.lex_state = 180}, + [3250] = {.lex_state = 180}, + [3251] = {.lex_state = 180}, + [3252] = {.lex_state = 180}, + [3253] = {.lex_state = 180}, + [3254] = {.lex_state = 180}, + [3255] = {.lex_state = 180}, + [3256] = {.lex_state = 180}, + [3257] = {.lex_state = 180}, + [3258] = {.lex_state = 180}, + [3259] = {.lex_state = 180}, + [3260] = {.lex_state = 180}, + [3261] = {.lex_state = 195}, + [3262] = {.lex_state = 180}, + [3263] = {.lex_state = 180}, + [3264] = {.lex_state = 180}, + [3265] = {.lex_state = 180}, + [3266] = {.lex_state = 180}, + [3267] = {.lex_state = 180}, + [3268] = {.lex_state = 180}, + [3269] = {.lex_state = 180}, + [3270] = {.lex_state = 180}, + [3271] = {.lex_state = 184}, + [3272] = {.lex_state = 180}, + [3273] = {.lex_state = 180}, + [3274] = {.lex_state = 197}, + [3275] = {.lex_state = 184}, + [3276] = {.lex_state = 184}, + [3277] = {.lex_state = 184}, + [3278] = {.lex_state = 184}, + [3279] = {.lex_state = 197}, + [3280] = {.lex_state = 184}, + [3281] = {.lex_state = 181}, + [3282] = {.lex_state = 197}, + [3283] = {.lex_state = 197}, + [3284] = {.lex_state = 197}, + [3285] = {.lex_state = 197}, + [3286] = {.lex_state = 197}, + [3287] = {.lex_state = 197}, + [3288] = {.lex_state = 197}, + [3289] = {.lex_state = 195}, + [3290] = {.lex_state = 181}, + [3291] = {.lex_state = 197}, + [3292] = {.lex_state = 197}, + [3293] = {.lex_state = 197}, + [3294] = {.lex_state = 197}, + [3295] = {.lex_state = 184}, + [3296] = {.lex_state = 197}, + [3297] = {.lex_state = 197}, + [3298] = {.lex_state = 184}, + [3299] = {.lex_state = 197}, + [3300] = {.lex_state = 197}, + [3301] = {.lex_state = 197}, + [3302] = {.lex_state = 197}, + [3303] = {.lex_state = 184}, + [3304] = {.lex_state = 197}, + [3305] = {.lex_state = 197}, + [3306] = {.lex_state = 197}, + [3307] = {.lex_state = 197}, + [3308] = {.lex_state = 197}, + [3309] = {.lex_state = 197}, + [3310] = {.lex_state = 184}, + [3311] = {.lex_state = 197}, + [3312] = {.lex_state = 197}, + [3313] = {.lex_state = 195}, + [3314] = {.lex_state = 181}, + [3315] = {.lex_state = 142}, + [3316] = {.lex_state = 181}, + [3317] = {.lex_state = 181}, + [3318] = {.lex_state = 181}, + [3319] = {.lex_state = 197}, + [3320] = {.lex_state = 195}, + [3321] = {.lex_state = 184}, + [3322] = {.lex_state = 197}, + [3323] = {.lex_state = 180}, + [3324] = {.lex_state = 195}, + [3325] = {.lex_state = 184}, + [3326] = {.lex_state = 184}, + [3327] = {.lex_state = 195}, + [3328] = {.lex_state = 195}, + [3329] = {.lex_state = 184}, + [3330] = {.lex_state = 195}, + [3331] = {.lex_state = 184}, + [3332] = {.lex_state = 197}, + [3333] = {.lex_state = 184}, + [3334] = {.lex_state = 195}, + [3335] = {.lex_state = 195}, + [3336] = {.lex_state = 184}, + [3337] = {.lex_state = 195}, + [3338] = {.lex_state = 195}, + [3339] = {.lex_state = 195}, + [3340] = {.lex_state = 195}, + [3341] = {.lex_state = 195}, + [3342] = {.lex_state = 195}, + [3343] = {.lex_state = 184}, + [3344] = {.lex_state = 184}, + [3345] = {.lex_state = 195}, + [3346] = {.lex_state = 184}, + [3347] = {.lex_state = 195}, + [3348] = {.lex_state = 195}, + [3349] = {.lex_state = 184}, + [3350] = {.lex_state = 187}, + [3351] = {.lex_state = 195}, + [3352] = {.lex_state = 184}, + [3353] = {.lex_state = 184}, + [3354] = {.lex_state = 184}, + [3355] = {.lex_state = 195}, + [3356] = {.lex_state = 195}, + [3357] = {.lex_state = 184}, + [3358] = {.lex_state = 195}, + [3359] = {.lex_state = 195}, + [3360] = {.lex_state = 197}, + [3361] = {.lex_state = 195}, + [3362] = {.lex_state = 187}, + [3363] = {.lex_state = 184}, + [3364] = {.lex_state = 195}, + [3365] = {.lex_state = 195}, + [3366] = {.lex_state = 184}, + [3367] = {.lex_state = 184}, + [3368] = {.lex_state = 195}, + [3369] = {.lex_state = 195}, + [3370] = {.lex_state = 195}, + [3371] = {.lex_state = 195}, + [3372] = {.lex_state = 186}, + [3373] = {.lex_state = 184}, + [3374] = {.lex_state = 195}, + [3375] = {.lex_state = 195}, + [3376] = {.lex_state = 197}, + [3377] = {.lex_state = 195}, + [3378] = {.lex_state = 195}, + [3379] = {.lex_state = 195}, + [3380] = {.lex_state = 195}, + [3381] = {.lex_state = 184}, + [3382] = {.lex_state = 184}, + [3383] = {.lex_state = 195}, + [3384] = {.lex_state = 184}, + [3385] = {.lex_state = 195}, + [3386] = {.lex_state = 195}, + [3387] = {.lex_state = 200}, + [3388] = {.lex_state = 195}, + [3389] = {.lex_state = 181}, + [3390] = {.lex_state = 195}, + [3391] = {.lex_state = 195}, + [3392] = {.lex_state = 179}, + [3393] = {.lex_state = 195}, + [3394] = {.lex_state = 195}, + [3395] = {.lex_state = 195}, + [3396] = {.lex_state = 195}, + [3397] = {.lex_state = 179}, + [3398] = {.lex_state = 198}, + [3399] = {.lex_state = 198}, + [3400] = {.lex_state = 195}, + [3401] = {.lex_state = 184}, + [3402] = {.lex_state = 179}, + [3403] = {.lex_state = 179}, + [3404] = {.lex_state = 195}, + [3405] = {.lex_state = 195}, + [3406] = {.lex_state = 195}, + [3407] = {.lex_state = 184}, + [3408] = {.lex_state = 197}, + [3409] = {.lex_state = 195}, + [3410] = {.lex_state = 184}, + [3411] = {.lex_state = 195}, + [3412] = {.lex_state = 179}, + [3413] = {.lex_state = 179}, + [3414] = {.lex_state = 195}, + [3415] = {.lex_state = 195}, + [3416] = {.lex_state = 195}, + [3417] = {.lex_state = 179}, + [3418] = {.lex_state = 197}, + [3419] = {.lex_state = 195}, + [3420] = {.lex_state = 195}, + [3421] = {.lex_state = 195}, + [3422] = {.lex_state = 184}, + [3423] = {.lex_state = 186}, + [3424] = {.lex_state = 184}, + [3425] = {.lex_state = 181}, + [3426] = {.lex_state = 195}, + [3427] = {.lex_state = 181}, + [3428] = {.lex_state = 197}, + [3429] = {.lex_state = 184}, + [3430] = {.lex_state = 197}, + [3431] = {.lex_state = 197}, + [3432] = {.lex_state = 199}, + [3433] = {.lex_state = 197}, + [3434] = {.lex_state = 184}, + [3435] = {.lex_state = 181}, + [3436] = {.lex_state = 197}, + [3437] = {.lex_state = 197}, + [3438] = {.lex_state = 197}, + [3439] = {.lex_state = 197}, + [3440] = {.lex_state = 197}, + [3441] = {.lex_state = 184}, + [3442] = {.lex_state = 184}, + [3443] = {.lex_state = 184}, + [3444] = {.lex_state = 184}, + [3445] = {.lex_state = 197}, + [3446] = {.lex_state = 197}, + [3447] = {.lex_state = 197}, + [3448] = {.lex_state = 184}, + [3449] = {.lex_state = 184}, + [3450] = {.lex_state = 197}, + [3451] = {.lex_state = 199}, + [3452] = {.lex_state = 197}, + [3453] = {.lex_state = 199}, + [3454] = {.lex_state = 199}, + [3455] = {.lex_state = 197}, + [3456] = {.lex_state = 184}, + [3457] = {.lex_state = 197}, + [3458] = {.lex_state = 184}, + [3459] = {.lex_state = 197}, + [3460] = {.lex_state = 184}, + [3461] = {.lex_state = 199}, + [3462] = {.lex_state = 197}, + [3463] = {.lex_state = 184}, + [3464] = {.lex_state = 184}, + [3465] = {.lex_state = 197}, + [3466] = {.lex_state = 197}, + [3467] = {.lex_state = 184}, + [3468] = {.lex_state = 197}, + [3469] = {.lex_state = 184}, + [3470] = {.lex_state = 184}, + [3471] = {.lex_state = 197}, + [3472] = {.lex_state = 197}, + [3473] = {.lex_state = 197}, + [3474] = {.lex_state = 195}, + [3475] = {.lex_state = 197}, + [3476] = {.lex_state = 197}, + [3477] = {.lex_state = 197}, + [3478] = {.lex_state = 197}, + [3479] = {.lex_state = 197}, + [3480] = {.lex_state = 197}, + [3481] = {.lex_state = 199}, + [3482] = {.lex_state = 197}, + [3483] = {.lex_state = 195}, + [3484] = {.lex_state = 197}, + [3485] = {.lex_state = 197}, + [3486] = {.lex_state = 199}, + [3487] = {.lex_state = 199}, + [3488] = {.lex_state = 184}, + [3489] = {.lex_state = 197}, + [3490] = {.lex_state = 199}, + [3491] = {.lex_state = 184}, + [3492] = {.lex_state = 197}, + [3493] = {.lex_state = 197}, + [3494] = {.lex_state = 197}, + [3495] = {.lex_state = 197}, + [3496] = {.lex_state = 184}, + [3497] = {.lex_state = 197}, + [3498] = {.lex_state = 199}, + [3499] = {.lex_state = 197}, + [3500] = {.lex_state = 184}, + [3501] = {.lex_state = 197}, + [3502] = {.lex_state = 197}, + [3503] = {.lex_state = 197}, + [3504] = {.lex_state = 197}, + [3505] = {.lex_state = 195}, + [3506] = {.lex_state = 197}, + [3507] = {.lex_state = 197}, + [3508] = {.lex_state = 184}, + [3509] = {.lex_state = 197}, + [3510] = {.lex_state = 179}, + [3511] = {.lex_state = 197}, + [3512] = {.lex_state = 197}, + [3513] = {.lex_state = 197}, + [3514] = {.lex_state = 184}, + [3515] = {.lex_state = 197}, + [3516] = {.lex_state = 197}, + [3517] = {.lex_state = 197}, + [3518] = {.lex_state = 199}, + [3519] = {.lex_state = 184}, + [3520] = {.lex_state = 197}, + [3521] = {.lex_state = 184}, + [3522] = {.lex_state = 197}, + [3523] = {.lex_state = 197}, + [3524] = {.lex_state = 197}, + [3525] = {.lex_state = 184}, + [3526] = {.lex_state = 184}, + [3527] = {.lex_state = 184}, + [3528] = {.lex_state = 199}, + [3529] = {.lex_state = 197}, + [3530] = {.lex_state = 184}, + [3531] = {.lex_state = 197}, + [3532] = {.lex_state = 197}, + [3533] = {.lex_state = 197}, + [3534] = {.lex_state = 197}, + [3535] = {.lex_state = 197}, + [3536] = {.lex_state = 197}, + [3537] = {.lex_state = 197}, + [3538] = {.lex_state = 197}, + [3539] = {.lex_state = 197}, + [3540] = {.lex_state = 181}, + [3541] = {.lex_state = 179}, + [3542] = {.lex_state = 179}, + [3543] = {.lex_state = 199}, + [3544] = {.lex_state = 181}, + [3545] = {.lex_state = 199}, + [3546] = {.lex_state = 181}, + [3547] = {.lex_state = 199}, + [3548] = {.lex_state = 199}, + [3549] = {.lex_state = 184}, + [3550] = {.lex_state = 199}, + [3551] = {.lex_state = 199}, + [3552] = {.lex_state = 184}, + [3553] = {.lex_state = 184}, + [3554] = {.lex_state = 184}, + [3555] = {.lex_state = 184}, + [3556] = {.lex_state = 184}, + [3557] = {.lex_state = 184}, + [3558] = {.lex_state = 184}, + [3559] = {.lex_state = 184}, + [3560] = {.lex_state = 184}, + [3561] = {.lex_state = 179}, + [3562] = {.lex_state = 179}, + [3563] = {.lex_state = 197}, + [3564] = {.lex_state = 184}, + [3565] = {.lex_state = 184}, + [3566] = {.lex_state = 181}, + [3567] = {.lex_state = 184}, + [3568] = {.lex_state = 184}, + [3569] = {.lex_state = 179}, + [3570] = {.lex_state = 199}, + [3571] = {.lex_state = 180}, + [3572] = {.lex_state = 184}, + [3573] = {.lex_state = 197}, + [3574] = {.lex_state = 179}, + [3575] = {.lex_state = 179}, + [3576] = {.lex_state = 199}, + [3577] = {.lex_state = 199}, + [3578] = {.lex_state = 184}, + [3579] = {.lex_state = 179}, + [3580] = {.lex_state = 179}, + [3581] = {.lex_state = 184}, + [3582] = {.lex_state = 181}, + [3583] = {.lex_state = 197}, + [3584] = {.lex_state = 197}, + [3585] = {.lex_state = 184}, + [3586] = {.lex_state = 181}, + [3587] = {.lex_state = 181}, + [3588] = {.lex_state = 199}, + [3589] = {.lex_state = 181}, + [3590] = {.lex_state = 181}, + [3591] = {.lex_state = 184}, + [3592] = {.lex_state = 181}, + [3593] = {.lex_state = 181}, + [3594] = {.lex_state = 181}, + [3595] = {.lex_state = 180}, + [3596] = {.lex_state = 181}, + [3597] = {.lex_state = 184}, + [3598] = {.lex_state = 181}, + [3599] = {.lex_state = 184}, + [3600] = {.lex_state = 184}, + [3601] = {.lex_state = 181}, + [3602] = {.lex_state = 180}, + [3603] = {.lex_state = 180}, + [3604] = {.lex_state = 199}, + [3605] = {.lex_state = 181}, + [3606] = {.lex_state = 181}, + [3607] = {.lex_state = 184}, + [3608] = {.lex_state = 180}, + [3609] = {.lex_state = 180}, + [3610] = {.lex_state = 180}, + [3611] = {.lex_state = 184}, + [3612] = {.lex_state = 181}, + [3613] = {.lex_state = 184}, + [3614] = {.lex_state = 180}, + [3615] = {.lex_state = 184}, + [3616] = {.lex_state = 184}, + [3617] = {.lex_state = 180}, + [3618] = {.lex_state = 184}, + [3619] = {.lex_state = 180}, + [3620] = {.lex_state = 181}, + [3621] = {.lex_state = 181}, + [3622] = {.lex_state = 180}, + [3623] = {.lex_state = 180}, + [3624] = {.lex_state = 180}, + [3625] = {.lex_state = 180}, + [3626] = {.lex_state = 184}, + [3627] = {.lex_state = 184}, + [3628] = {.lex_state = 181}, + [3629] = {.lex_state = 180}, + [3630] = {.lex_state = 184}, + [3631] = {.lex_state = 184}, + [3632] = {.lex_state = 181}, + [3633] = {.lex_state = 184}, + [3634] = {.lex_state = 184}, + [3635] = {.lex_state = 180}, + [3636] = {.lex_state = 184}, + [3637] = {.lex_state = 179}, + [3638] = {.lex_state = 180}, + [3639] = {.lex_state = 180}, + [3640] = {.lex_state = 184}, + [3641] = {.lex_state = 181}, + [3642] = {.lex_state = 184}, + [3643] = {.lex_state = 184}, + [3644] = {.lex_state = 180}, + [3645] = {.lex_state = 184}, + [3646] = {.lex_state = 184}, + [3647] = {.lex_state = 184}, + [3648] = {.lex_state = 184}, + [3649] = {.lex_state = 184}, + [3650] = {.lex_state = 181}, + [3651] = {.lex_state = 184}, + [3652] = {.lex_state = 184}, + [3653] = {.lex_state = 184}, + [3654] = {.lex_state = 181}, + [3655] = {.lex_state = 184}, + [3656] = {.lex_state = 197}, + [3657] = {.lex_state = 184}, + [3658] = {.lex_state = 184}, + [3659] = {.lex_state = 184}, + [3660] = {.lex_state = 184}, + [3661] = {.lex_state = 181}, + [3662] = {.lex_state = 184}, + [3663] = {.lex_state = 197}, + [3664] = {.lex_state = 184}, + [3665] = {.lex_state = 184}, + [3666] = {.lex_state = 181}, + [3667] = {.lex_state = 184}, + [3668] = {.lex_state = 184}, + [3669] = {.lex_state = 184}, + [3670] = {.lex_state = 181}, + [3671] = {.lex_state = 184}, + [3672] = {.lex_state = 184}, + [3673] = {.lex_state = 184}, + [3674] = {.lex_state = 184}, + [3675] = {.lex_state = 184}, + [3676] = {.lex_state = 184}, + [3677] = {.lex_state = 184}, + [3678] = {.lex_state = 181}, + [3679] = {.lex_state = 184}, + [3680] = {.lex_state = 184}, + [3681] = {.lex_state = 184}, + [3682] = {.lex_state = 181}, + [3683] = {.lex_state = 181}, + [3684] = {.lex_state = 181}, + [3685] = {.lex_state = 199}, + [3686] = {.lex_state = 184}, + [3687] = {.lex_state = 184}, + [3688] = {.lex_state = 184}, + [3689] = {.lex_state = 184}, + [3690] = {.lex_state = 184}, + [3691] = {.lex_state = 184}, + [3692] = {.lex_state = 184}, + [3693] = {.lex_state = 184}, + [3694] = {.lex_state = 197}, + [3695] = {.lex_state = 184}, + [3696] = {.lex_state = 184}, + [3697] = {.lex_state = 184}, + [3698] = {.lex_state = 181}, + [3699] = {.lex_state = 181}, + [3700] = {.lex_state = 184}, + [3701] = {.lex_state = 184}, + [3702] = {.lex_state = 184}, + [3703] = {.lex_state = 181}, + [3704] = {.lex_state = 181}, + [3705] = {.lex_state = 184}, + [3706] = {.lex_state = 199}, + [3707] = {.lex_state = 197}, + [3708] = {.lex_state = 184}, + [3709] = {.lex_state = 184}, + [3710] = {.lex_state = 184}, + [3711] = {.lex_state = 181}, + [3712] = {.lex_state = 184}, + [3713] = {.lex_state = 197}, + [3714] = {.lex_state = 184}, + [3715] = {.lex_state = 184}, + [3716] = {.lex_state = 184}, + [3717] = {.lex_state = 184}, + [3718] = {.lex_state = 184}, + [3719] = {.lex_state = 184}, + [3720] = {.lex_state = 184}, + [3721] = {.lex_state = 184}, + [3722] = {.lex_state = 184}, + [3723] = {.lex_state = 199}, + [3724] = {.lex_state = 184}, + [3725] = {.lex_state = 184}, + [3726] = {.lex_state = 184}, + [3727] = {.lex_state = 184}, + [3728] = {.lex_state = 184}, + [3729] = {.lex_state = 184}, + [3730] = {.lex_state = 181}, + [3731] = {.lex_state = 184}, + [3732] = {.lex_state = 184}, + [3733] = {.lex_state = 184}, + [3734] = {.lex_state = 184}, + [3735] = {.lex_state = 184}, + [3736] = {.lex_state = 184}, + [3737] = {.lex_state = 190}, + [3738] = {.lex_state = 199}, + [3739] = {.lex_state = 181}, + [3740] = {.lex_state = 184}, + [3741] = {.lex_state = 184}, + [3742] = {.lex_state = 181}, + [3743] = {.lex_state = 181}, + [3744] = {.lex_state = 181}, + [3745] = {.lex_state = 184}, + [3746] = {.lex_state = 184}, + [3747] = {.lex_state = 184}, + [3748] = {.lex_state = 184}, + [3749] = {.lex_state = 181}, + [3750] = {.lex_state = 184}, + [3751] = {.lex_state = 197}, + [3752] = {.lex_state = 184}, + [3753] = {.lex_state = 181}, + [3754] = {.lex_state = 184}, + [3755] = {.lex_state = 181}, + [3756] = {.lex_state = 184}, + [3757] = {.lex_state = 184}, + [3758] = {.lex_state = 181}, + [3759] = {.lex_state = 184}, + [3760] = {.lex_state = 184}, + [3761] = {.lex_state = 181}, + [3762] = {.lex_state = 181}, + [3763] = {.lex_state = 184}, + [3764] = {.lex_state = 181}, + [3765] = {.lex_state = 181}, + [3766] = {.lex_state = 184}, + [3767] = {.lex_state = 184}, + [3768] = {.lex_state = 181}, + [3769] = {.lex_state = 184}, + [3770] = {.lex_state = 181}, + [3771] = {.lex_state = 181}, + [3772] = {.lex_state = 181}, + [3773] = {.lex_state = 181}, + [3774] = {.lex_state = 181}, + [3775] = {.lex_state = 184}, + [3776] = {.lex_state = 181}, + [3777] = {.lex_state = 181}, + [3778] = {.lex_state = 184}, + [3779] = {.lex_state = 181}, + [3780] = {.lex_state = 181}, + [3781] = {.lex_state = 181}, + [3782] = {.lex_state = 181}, + [3783] = {.lex_state = 190}, + [3784] = {.lex_state = 184}, + [3785] = {.lex_state = 184}, + [3786] = {.lex_state = 184}, + [3787] = {.lex_state = 184}, + [3788] = {.lex_state = 184}, + [3789] = {.lex_state = 184}, + [3790] = {.lex_state = 184}, + [3791] = {.lex_state = 184}, + [3792] = {.lex_state = 200}, + [3793] = {.lex_state = 181}, + [3794] = {.lex_state = 184}, + [3795] = {.lex_state = 184}, + [3796] = {.lex_state = 180}, + [3797] = {.lex_state = 181}, + [3798] = {.lex_state = 184}, + [3799] = {.lex_state = 184}, + [3800] = {.lex_state = 184}, + [3801] = {.lex_state = 184}, + [3802] = {.lex_state = 181}, + [3803] = {.lex_state = 184}, + [3804] = {.lex_state = 199}, + [3805] = {.lex_state = 181}, + [3806] = {.lex_state = 181}, + [3807] = {.lex_state = 184}, + [3808] = {.lex_state = 199}, + [3809] = {.lex_state = 184}, + [3810] = {.lex_state = 184}, + [3811] = {.lex_state = 184}, + [3812] = {.lex_state = 199}, + [3813] = {.lex_state = 184}, + [3814] = {.lex_state = 184}, + [3815] = {.lex_state = 184}, + [3816] = {.lex_state = 184}, + [3817] = {.lex_state = 181}, + [3818] = {.lex_state = 184}, + [3819] = {.lex_state = 184}, + [3820] = {.lex_state = 181}, + [3821] = {.lex_state = 184}, + [3822] = {.lex_state = 184}, + [3823] = {.lex_state = 179}, + [3824] = {.lex_state = 184}, + [3825] = {.lex_state = 197}, + [3826] = {.lex_state = 184}, + [3827] = {.lex_state = 179}, + [3828] = {.lex_state = 197}, + [3829] = {.lex_state = 184}, + [3830] = {.lex_state = 181}, + [3831] = {.lex_state = 184}, + [3832] = {.lex_state = 184}, + [3833] = {.lex_state = 181}, + [3834] = {.lex_state = 197}, + [3835] = {.lex_state = 184}, + [3836] = {.lex_state = 184}, + [3837] = {.lex_state = 184}, + [3838] = {.lex_state = 184}, + [3839] = {.lex_state = 184}, + [3840] = {.lex_state = 184}, + [3841] = {.lex_state = 181}, + [3842] = {.lex_state = 184}, + [3843] = {.lex_state = 184}, + [3844] = {.lex_state = 184}, + [3845] = {.lex_state = 184}, + [3846] = {.lex_state = 184}, + [3847] = {.lex_state = 184}, + [3848] = {.lex_state = 179}, + [3849] = {.lex_state = 184}, + [3850] = {.lex_state = 181}, + [3851] = {.lex_state = 181}, + [3852] = {.lex_state = 181}, + [3853] = {.lex_state = 184}, + [3854] = {.lex_state = 184}, + [3855] = {.lex_state = 184}, + [3856] = {.lex_state = 184}, + [3857] = {.lex_state = 184}, + [3858] = {.lex_state = 184}, + [3859] = {.lex_state = 184}, + [3860] = {.lex_state = 184}, + [3861] = {.lex_state = 181}, + [3862] = {.lex_state = 184}, + [3863] = {.lex_state = 184}, + [3864] = {.lex_state = 184}, + [3865] = {.lex_state = 184}, + [3866] = {.lex_state = 184}, + [3867] = {.lex_state = 184}, + [3868] = {.lex_state = 184}, + [3869] = {.lex_state = 184}, + [3870] = {.lex_state = 184}, + [3871] = {.lex_state = 181}, + [3872] = {.lex_state = 184}, + [3873] = {.lex_state = 184}, + [3874] = {.lex_state = 184}, + [3875] = {.lex_state = 184}, + [3876] = {.lex_state = 184}, + [3877] = {.lex_state = 184}, + [3878] = {.lex_state = 184}, + [3879] = {.lex_state = 184}, + [3880] = {.lex_state = 184}, + [3881] = {.lex_state = 181}, + [3882] = {.lex_state = 184}, + [3883] = {.lex_state = 181}, + [3884] = {.lex_state = 184}, + [3885] = {.lex_state = 184}, + [3886] = {.lex_state = 184}, + [3887] = {.lex_state = 184}, + [3888] = {.lex_state = 184}, + [3889] = {.lex_state = 184}, + [3890] = {.lex_state = 184}, + [3891] = {.lex_state = 184}, + [3892] = {.lex_state = 184}, + [3893] = {.lex_state = 181}, + [3894] = {.lex_state = 184}, + [3895] = {.lex_state = 184}, + [3896] = {.lex_state = 184}, + [3897] = {.lex_state = 184}, + [3898] = {.lex_state = 184}, + [3899] = {.lex_state = 184}, + [3900] = {.lex_state = 184}, + [3901] = {.lex_state = 181}, + [3902] = {.lex_state = 197}, + [3903] = {.lex_state = 199}, + [3904] = {.lex_state = 184}, + [3905] = {.lex_state = 184}, + [3906] = {.lex_state = 184}, + [3907] = {.lex_state = 184}, + [3908] = {.lex_state = 181}, + [3909] = {.lex_state = 184}, + [3910] = {.lex_state = 181}, + [3911] = {.lex_state = 179}, + [3912] = {.lex_state = 184}, + [3913] = {.lex_state = 184}, + [3914] = {.lex_state = 199}, + [3915] = {.lex_state = 184}, + [3916] = {.lex_state = 184}, + [3917] = {.lex_state = 184}, + [3918] = {.lex_state = 181}, + [3919] = {.lex_state = 184}, + [3920] = {.lex_state = 184}, + [3921] = {.lex_state = 179}, + [3922] = {.lex_state = 184}, + [3923] = {.lex_state = 184}, + [3924] = {.lex_state = 184}, + [3925] = {.lex_state = 184}, + [3926] = {.lex_state = 179}, + [3927] = {.lex_state = 184}, + [3928] = {.lex_state = 179}, + [3929] = {.lex_state = 184}, + [3930] = {.lex_state = 184}, + [3931] = {.lex_state = 179}, + [3932] = {.lex_state = 184}, + [3933] = {.lex_state = 184}, + [3934] = {.lex_state = 179}, + [3935] = {.lex_state = 184}, + [3936] = {.lex_state = 184}, + [3937] = {.lex_state = 184}, + [3938] = {.lex_state = 184}, + [3939] = {.lex_state = 184}, + [3940] = {.lex_state = 184}, + [3941] = {.lex_state = 184}, + [3942] = {.lex_state = 184}, + [3943] = {.lex_state = 184}, + [3944] = {.lex_state = 184}, + [3945] = {.lex_state = 181}, + [3946] = {.lex_state = 180}, + [3947] = {.lex_state = 184}, + [3948] = {.lex_state = 184}, + [3949] = {.lex_state = 179}, + [3950] = {.lex_state = 184}, + [3951] = {.lex_state = 184}, + [3952] = {.lex_state = 184}, + [3953] = {.lex_state = 184}, + [3954] = {.lex_state = 184}, + [3955] = {.lex_state = 184}, + [3956] = {.lex_state = 184}, + [3957] = {.lex_state = 184}, + [3958] = {.lex_state = 184}, + [3959] = {.lex_state = 184}, + [3960] = {.lex_state = 181}, + [3961] = {.lex_state = 184}, + [3962] = {.lex_state = 184}, + [3963] = {.lex_state = 184}, + [3964] = {.lex_state = 184}, + [3965] = {.lex_state = 184}, + [3966] = {.lex_state = 199}, + [3967] = {.lex_state = 184}, + [3968] = {.lex_state = 184}, + [3969] = {.lex_state = 184}, + [3970] = {.lex_state = 184}, + [3971] = {.lex_state = 184}, + [3972] = {.lex_state = 184}, + [3973] = {.lex_state = 184}, + [3974] = {.lex_state = 184}, + [3975] = {.lex_state = 181}, + [3976] = {.lex_state = 181}, + [3977] = {.lex_state = 184}, + [3978] = {.lex_state = 184}, + [3979] = {.lex_state = 184}, + [3980] = {.lex_state = 184}, + [3981] = {.lex_state = 181}, + [3982] = {.lex_state = 184}, + [3983] = {.lex_state = 181}, + [3984] = {.lex_state = 184}, + [3985] = {.lex_state = 184}, + [3986] = {.lex_state = 184}, + [3987] = {.lex_state = 181}, + [3988] = {.lex_state = 184}, + [3989] = {.lex_state = 184}, + [3990] = {.lex_state = 199}, + [3991] = {.lex_state = 199}, + [3992] = {.lex_state = 199}, + [3993] = {.lex_state = 199}, + [3994] = {.lex_state = 199}, + [3995] = {.lex_state = 199}, + [3996] = {.lex_state = 199}, + [3997] = {.lex_state = 199}, + [3998] = {.lex_state = 199}, + [3999] = {.lex_state = 199}, + [4000] = {.lex_state = 199}, + [4001] = {.lex_state = 199}, + [4002] = {.lex_state = 197}, + [4003] = {.lex_state = 197}, + [4004] = {.lex_state = 197}, + [4005] = {.lex_state = 199}, + [4006] = {.lex_state = 197}, + [4007] = {.lex_state = 199}, + [4008] = {.lex_state = 197}, + [4009] = {.lex_state = 199}, + [4010] = {.lex_state = 199}, + [4011] = {.lex_state = 199}, + [4012] = {.lex_state = 199}, + [4013] = {.lex_state = 199}, + [4014] = {.lex_state = 199}, + [4015] = {.lex_state = 199}, + [4016] = {.lex_state = 199}, + [4017] = {.lex_state = 199}, + [4018] = {.lex_state = 199}, + [4019] = {.lex_state = 199}, + [4020] = {.lex_state = 199}, + [4021] = {.lex_state = 199}, + [4022] = {.lex_state = 197}, + [4023] = {.lex_state = 199}, + [4024] = {.lex_state = 199}, + [4025] = {.lex_state = 199}, + [4026] = {.lex_state = 199}, + [4027] = {.lex_state = 199}, + [4028] = {.lex_state = 199}, + [4029] = {.lex_state = 199}, + [4030] = {.lex_state = 197}, + [4031] = {.lex_state = 199}, + [4032] = {.lex_state = 199}, + [4033] = {.lex_state = 199}, + [4034] = {.lex_state = 199}, + [4035] = {.lex_state = 199}, + [4036] = {.lex_state = 199}, + [4037] = {.lex_state = 199}, + [4038] = {.lex_state = 199}, + [4039] = {.lex_state = 199}, + [4040] = {.lex_state = 199}, + [4041] = {.lex_state = 199}, + [4042] = {.lex_state = 199}, + [4043] = {.lex_state = 199}, + [4044] = {.lex_state = 199}, + [4045] = {.lex_state = 199}, + [4046] = {.lex_state = 199}, + [4047] = {.lex_state = 195}, + [4048] = {.lex_state = 199}, + [4049] = {.lex_state = 199}, + [4050] = {.lex_state = 199}, + [4051] = {.lex_state = 199}, + [4052] = {.lex_state = 199}, + [4053] = {.lex_state = 199}, + [4054] = {.lex_state = 197}, + [4055] = {.lex_state = 199}, + [4056] = {.lex_state = 199}, + [4057] = {.lex_state = 199}, + [4058] = {.lex_state = 199}, + [4059] = {.lex_state = 199}, + [4060] = {.lex_state = 199}, + [4061] = {.lex_state = 199}, + [4062] = {.lex_state = 199}, + [4063] = {.lex_state = 178}, + [4064] = {.lex_state = 197}, + [4065] = {.lex_state = 199}, + [4066] = {.lex_state = 179}, + [4067] = {.lex_state = 199}, + [4068] = {.lex_state = 199}, + [4069] = {.lex_state = 197}, + [4070] = {.lex_state = 197}, + [4071] = {.lex_state = 199}, + [4072] = {.lex_state = 197}, + [4073] = {.lex_state = 199}, + [4074] = {.lex_state = 179}, + [4075] = {.lex_state = 197}, + [4076] = {.lex_state = 195}, + [4077] = {.lex_state = 195}, + [4078] = {.lex_state = 195}, + [4079] = {.lex_state = 197}, + [4080] = {.lex_state = 195}, + [4081] = {.lex_state = 197}, + [4082] = {.lex_state = 197}, + [4083] = {.lex_state = 195}, + [4084] = {.lex_state = 195}, + [4085] = {.lex_state = 195}, + [4086] = {.lex_state = 197}, + [4087] = {.lex_state = 195}, + [4088] = {.lex_state = 195}, + [4089] = {.lex_state = 195}, + [4090] = {.lex_state = 195}, + [4091] = {.lex_state = 179}, + [4092] = {.lex_state = 179}, + [4093] = {.lex_state = 195}, + [4094] = {.lex_state = 197}, + [4095] = {.lex_state = 179}, + [4096] = {.lex_state = 195}, + [4097] = {.lex_state = 195}, + [4098] = {.lex_state = 195}, + [4099] = {.lex_state = 195}, + [4100] = {.lex_state = 195}, + [4101] = {.lex_state = 195}, + [4102] = {.lex_state = 195}, + [4103] = {.lex_state = 195}, + [4104] = {.lex_state = 195}, + [4105] = {.lex_state = 195}, + [4106] = {.lex_state = 197}, + [4107] = {.lex_state = 195}, + [4108] = {.lex_state = 179}, + [4109] = {.lex_state = 195}, + [4110] = {.lex_state = 195}, + [4111] = {.lex_state = 199}, + [4112] = {.lex_state = 197}, + [4113] = {.lex_state = 199}, + [4114] = {.lex_state = 179}, + [4115] = {.lex_state = 199}, + [4116] = {.lex_state = 197}, + [4117] = {.lex_state = 199}, + [4118] = {.lex_state = 197}, + [4119] = {.lex_state = 199}, + [4120] = {.lex_state = 199}, + [4121] = {.lex_state = 197}, + [4122] = {.lex_state = 199}, + [4123] = {.lex_state = 198}, + [4124] = {.lex_state = 179}, + [4125] = {.lex_state = 179}, + [4126] = {.lex_state = 195}, + [4127] = {.lex_state = 195}, + [4128] = {.lex_state = 195}, + [4129] = {.lex_state = 195}, + [4130] = {.lex_state = 195}, + [4131] = {.lex_state = 195}, + [4132] = {.lex_state = 195}, + [4133] = {.lex_state = 195}, + [4134] = {.lex_state = 195}, + [4135] = {.lex_state = 195}, + [4136] = {.lex_state = 179}, + [4137] = {.lex_state = 195}, + [4138] = {.lex_state = 179}, + [4139] = {.lex_state = 198}, + [4140] = {.lex_state = 195}, + [4141] = {.lex_state = 199}, + [4142] = {.lex_state = 195}, + [4143] = {.lex_state = 195}, + [4144] = {.lex_state = 195}, + [4145] = {.lex_state = 195}, + [4146] = {.lex_state = 195}, + [4147] = {.lex_state = 195}, + [4148] = {.lex_state = 195}, + [4149] = {.lex_state = 199}, + [4150] = {.lex_state = 195}, + [4151] = {.lex_state = 195}, + [4152] = {.lex_state = 195}, + [4153] = {.lex_state = 195}, + [4154] = {.lex_state = 195}, + [4155] = {.lex_state = 199}, + [4156] = {.lex_state = 195}, + [4157] = {.lex_state = 195}, + [4158] = {.lex_state = 195}, + [4159] = {.lex_state = 199}, + [4160] = {.lex_state = 195}, + [4161] = {.lex_state = 199}, + [4162] = {.lex_state = 195}, + [4163] = {.lex_state = 195}, + [4164] = {.lex_state = 195}, + [4165] = {.lex_state = 199}, + [4166] = {.lex_state = 195}, + [4167] = {.lex_state = 195}, + [4168] = {.lex_state = 195}, + [4169] = {.lex_state = 179}, + [4170] = {.lex_state = 195}, + [4171] = {.lex_state = 199}, + [4172] = {.lex_state = 199}, + [4173] = {.lex_state = 195}, + [4174] = {.lex_state = 195}, + [4175] = {.lex_state = 200}, + [4176] = {.lex_state = 195}, + [4177] = {.lex_state = 179}, + [4178] = {.lex_state = 195}, + [4179] = {.lex_state = 198}, + [4180] = {.lex_state = 195}, + [4181] = {.lex_state = 195}, + [4182] = {.lex_state = 195}, + [4183] = {.lex_state = 197}, + [4184] = {.lex_state = 179}, + [4185] = {.lex_state = 197}, + [4186] = {.lex_state = 184}, + [4187] = {.lex_state = 197}, + [4188] = {.lex_state = 197}, + [4189] = {.lex_state = 179}, + [4190] = {.lex_state = 179}, + [4191] = {.lex_state = 179}, + [4192] = {.lex_state = 179}, + [4193] = {.lex_state = 197}, + [4194] = {.lex_state = 198}, + [4195] = {.lex_state = 197}, + [4196] = {.lex_state = 179}, + [4197] = {.lex_state = 179}, + [4198] = {.lex_state = 179}, + [4199] = {.lex_state = 197}, + [4200] = {.lex_state = 179}, + [4201] = {.lex_state = 179}, + [4202] = {.lex_state = 179}, + [4203] = {.lex_state = 181}, + [4204] = {.lex_state = 179}, + [4205] = {.lex_state = 181}, + [4206] = {.lex_state = 197}, + [4207] = {.lex_state = 197}, + [4208] = {.lex_state = 197}, + [4209] = {.lex_state = 179}, + [4210] = {.lex_state = 179}, + [4211] = {.lex_state = 184}, + [4212] = {.lex_state = 180}, + [4213] = {.lex_state = 197}, + [4214] = {.lex_state = 199}, + [4215] = {.lex_state = 199}, + [4216] = {.lex_state = 197}, + [4217] = {.lex_state = 197}, + [4218] = {.lex_state = 197}, + [4219] = {.lex_state = 197}, + [4220] = {.lex_state = 197}, + [4221] = {.lex_state = 199}, + [4222] = {.lex_state = 199}, + [4223] = {.lex_state = 180}, + [4224] = {.lex_state = 199}, + [4225] = {.lex_state = 179}, + [4226] = {.lex_state = 199}, + [4227] = {.lex_state = 180}, + [4228] = {.lex_state = 180}, + [4229] = {.lex_state = 179}, + [4230] = {.lex_state = 199}, + [4231] = {.lex_state = 180}, + [4232] = {.lex_state = 180}, + [4233] = {.lex_state = 180}, + [4234] = {.lex_state = 199}, + [4235] = {.lex_state = 180}, + [4236] = {.lex_state = 180}, + [4237] = {.lex_state = 180}, + [4238] = {.lex_state = 180}, + [4239] = {.lex_state = 180}, + [4240] = {.lex_state = 199}, + [4241] = {.lex_state = 199}, + [4242] = {.lex_state = 180}, + [4243] = {.lex_state = 197}, + [4244] = {.lex_state = 199}, + [4245] = {.lex_state = 180}, + [4246] = {.lex_state = 180}, + [4247] = {.lex_state = 180}, + [4248] = {.lex_state = 180}, + [4249] = {.lex_state = 180}, + [4250] = {.lex_state = 199}, + [4251] = {.lex_state = 197}, + [4252] = {.lex_state = 180}, + [4253] = {.lex_state = 180}, + [4254] = {.lex_state = 198}, + [4255] = {.lex_state = 180}, + [4256] = {.lex_state = 180}, + [4257] = {.lex_state = 198}, + [4258] = {.lex_state = 179}, + [4259] = {.lex_state = 180}, + [4260] = {.lex_state = 198}, + [4261] = {.lex_state = 198}, + [4262] = {.lex_state = 179}, + [4263] = {.lex_state = 198}, + [4264] = {.lex_state = 202}, + [4265] = {.lex_state = 198}, + [4266] = {.lex_state = 184}, + [4267] = {.lex_state = 180}, + [4268] = {.lex_state = 180}, + [4269] = {.lex_state = 199}, + [4270] = {.lex_state = 180}, + [4271] = {.lex_state = 180}, + [4272] = {.lex_state = 180}, + [4273] = {.lex_state = 198}, + [4274] = {.lex_state = 199}, + [4275] = {.lex_state = 180}, + [4276] = {.lex_state = 184}, + [4277] = {.lex_state = 180}, + [4278] = {.lex_state = 198}, + [4279] = {.lex_state = 202}, + [4280] = {.lex_state = 198}, + [4281] = {.lex_state = 198}, + [4282] = {.lex_state = 199}, + [4283] = {.lex_state = 198}, + [4284] = {.lex_state = 180}, + [4285] = {.lex_state = 180}, + [4286] = {.lex_state = 198}, + [4287] = {.lex_state = 180}, + [4288] = {.lex_state = 180}, + [4289] = {.lex_state = 179}, + [4290] = {.lex_state = 180}, + [4291] = {.lex_state = 180}, + [4292] = {.lex_state = 199}, + [4293] = {.lex_state = 179}, + [4294] = {.lex_state = 199}, + [4295] = {.lex_state = 199}, + [4296] = {.lex_state = 180}, + [4297] = {.lex_state = 180}, + [4298] = {.lex_state = 179}, + [4299] = {.lex_state = 180}, + [4300] = {.lex_state = 199}, + [4301] = {.lex_state = 180}, + [4302] = {.lex_state = 180}, + [4303] = {.lex_state = 180}, + [4304] = {.lex_state = 198}, + [4305] = {.lex_state = 179}, + [4306] = {.lex_state = 180}, + [4307] = {.lex_state = 180}, + [4308] = {.lex_state = 180}, + [4309] = {.lex_state = 199}, + [4310] = {.lex_state = 180}, + [4311] = {.lex_state = 181}, + [4312] = {.lex_state = 201}, + [4313] = {.lex_state = 199}, + [4314] = {.lex_state = 179}, + [4315] = {.lex_state = 179}, + [4316] = {.lex_state = 198}, + [4317] = {.lex_state = 179}, + [4318] = {.lex_state = 181}, + [4319] = {.lex_state = 181}, + [4320] = {.lex_state = 181}, + [4321] = {.lex_state = 201}, + [4322] = {.lex_state = 179}, + [4323] = {.lex_state = 179}, + [4324] = {.lex_state = 184}, + [4325] = {.lex_state = 201}, + [4326] = {.lex_state = 201}, + [4327] = {.lex_state = 181}, + [4328] = {.lex_state = 179}, + [4329] = {.lex_state = 201}, + [4330] = {.lex_state = 184}, + [4331] = {.lex_state = 179}, + [4332] = {.lex_state = 184}, + [4333] = {.lex_state = 179}, + [4334] = {.lex_state = 179}, + [4335] = {.lex_state = 179}, + [4336] = {.lex_state = 201}, + [4337] = {.lex_state = 179}, + [4338] = {.lex_state = 201}, + [4339] = {.lex_state = 179}, + [4340] = {.lex_state = 198}, + [4341] = {.lex_state = 184}, + [4342] = {.lex_state = 181}, + [4343] = {.lex_state = 201}, + [4344] = {.lex_state = 179}, + [4345] = {.lex_state = 181}, + [4346] = {.lex_state = 181}, + [4347] = {.lex_state = 179}, + [4348] = {.lex_state = 184}, + [4349] = {.lex_state = 201}, + [4350] = {.lex_state = 184}, + [4351] = {.lex_state = 184}, + [4352] = {.lex_state = 184}, + [4353] = {.lex_state = 179}, + [4354] = {.lex_state = 179}, + [4355] = {.lex_state = 198}, + [4356] = {.lex_state = 198}, + [4357] = {.lex_state = 199}, + [4358] = {.lex_state = 195}, + [4359] = {.lex_state = 199}, + [4360] = {.lex_state = 199}, + [4361] = {.lex_state = 199}, + [4362] = {.lex_state = 199}, + [4363] = {.lex_state = 198}, + [4364] = {.lex_state = 198}, + [4365] = {.lex_state = 198}, + [4366] = {.lex_state = 199}, + [4367] = {.lex_state = 199}, + [4368] = {.lex_state = 198}, + [4369] = {.lex_state = 198}, + [4370] = {.lex_state = 198}, + [4371] = {.lex_state = 198}, + [4372] = {.lex_state = 198}, + [4373] = {.lex_state = 199}, + [4374] = {.lex_state = 199}, + [4375] = {.lex_state = 199}, + [4376] = {.lex_state = 199}, + [4377] = {.lex_state = 198}, + [4378] = {.lex_state = 198}, + [4379] = {.lex_state = 199}, + [4380] = {.lex_state = 198}, + [4381] = {.lex_state = 184}, + [4382] = {.lex_state = 184}, + [4383] = {.lex_state = 184}, + [4384] = {.lex_state = 198}, + [4385] = {.lex_state = 184}, + [4386] = {.lex_state = 198}, + [4387] = {.lex_state = 198}, + [4388] = {.lex_state = 201}, + [4389] = {.lex_state = 198}, + [4390] = {.lex_state = 180}, + [4391] = {.lex_state = 198}, + [4392] = {.lex_state = 184}, + [4393] = {.lex_state = 181}, + [4394] = {.lex_state = 184}, + [4395] = {.lex_state = 184}, + [4396] = {.lex_state = 197}, + [4397] = {.lex_state = 198}, + [4398] = {.lex_state = 198}, + [4399] = {.lex_state = 184}, + [4400] = {.lex_state = 198}, + [4401] = {.lex_state = 180}, + [4402] = {.lex_state = 198}, + [4403] = {.lex_state = 198}, + [4404] = {.lex_state = 178}, + [4405] = {.lex_state = 184}, + [4406] = {.lex_state = 201}, + [4407] = {.lex_state = 178}, + [4408] = {.lex_state = 199}, + [4409] = {.lex_state = 198}, + [4410] = {.lex_state = 184}, + [4411] = {.lex_state = 198}, + [4412] = {.lex_state = 187}, + [4413] = {.lex_state = 197}, + [4414] = {.lex_state = 178}, + [4415] = {.lex_state = 199}, + [4416] = {.lex_state = 197}, + [4417] = {.lex_state = 197}, + [4418] = {.lex_state = 201}, + [4419] = {.lex_state = 178}, + [4420] = {.lex_state = 187}, + [4421] = {.lex_state = 178}, + [4422] = {.lex_state = 199}, + [4423] = {.lex_state = 178}, + [4424] = {.lex_state = 199}, + [4425] = {.lex_state = 198}, + [4426] = {.lex_state = 199}, + [4427] = {.lex_state = 154}, + [4428] = {.lex_state = 199}, + [4429] = {.lex_state = 198}, + [4430] = {.lex_state = 198}, + [4431] = {.lex_state = 184}, + [4432] = {.lex_state = 179}, + [4433] = {.lex_state = 181}, + [4434] = {.lex_state = 143}, + [4435] = {.lex_state = 154}, + [4436] = {.lex_state = 198}, + [4437] = {.lex_state = 198}, + [4438] = {.lex_state = 73}, + [4439] = {.lex_state = 184}, + [4440] = {.lex_state = 143}, + [4441] = {.lex_state = 179}, + [4442] = {.lex_state = 179}, + [4443] = {.lex_state = 199}, + [4444] = {.lex_state = 181}, + [4445] = {.lex_state = 154}, + [4446] = {.lex_state = 181}, + [4447] = {.lex_state = 199}, + [4448] = {.lex_state = 198}, + [4449] = {.lex_state = 178}, + [4450] = {.lex_state = 178}, + [4451] = {.lex_state = 178}, + [4452] = {.lex_state = 178}, + [4453] = {.lex_state = 154}, + [4454] = {.lex_state = 154}, + [4455] = {.lex_state = 154}, + [4456] = {.lex_state = 178}, + [4457] = {.lex_state = 178}, + [4458] = {.lex_state = 154}, + [4459] = {.lex_state = 154}, + [4460] = {.lex_state = 178}, + [4461] = {.lex_state = 154}, + [4462] = {.lex_state = 154}, + [4463] = {.lex_state = 178}, + [4464] = {.lex_state = 154}, + [4465] = {.lex_state = 154}, + [4466] = {.lex_state = 154}, + [4467] = {.lex_state = 178}, + [4468] = {.lex_state = 154}, + [4469] = {.lex_state = 154}, + [4470] = {.lex_state = 178}, + [4471] = {.lex_state = 178}, + [4472] = {.lex_state = 178}, + [4473] = {.lex_state = 143}, + [4474] = {.lex_state = 178}, + [4475] = {.lex_state = 178}, + [4476] = {.lex_state = 178}, + [4477] = {.lex_state = 178}, + [4478] = {.lex_state = 178}, + [4479] = {.lex_state = 154}, + [4480] = {.lex_state = 178}, + [4481] = {.lex_state = 154}, + [4482] = {.lex_state = 198}, + [4483] = {.lex_state = 178}, + [4484] = {.lex_state = 154}, + [4485] = {.lex_state = 181}, + [4486] = {.lex_state = 198}, + [4487] = {.lex_state = 178}, + [4488] = {.lex_state = 198}, + [4489] = {.lex_state = 198}, + [4490] = {.lex_state = 198}, + [4491] = {.lex_state = 198}, + [4492] = {.lex_state = 178}, + [4493] = {.lex_state = 178}, + [4494] = {.lex_state = 178}, + [4495] = {.lex_state = 143}, + [4496] = {.lex_state = 198}, + [4497] = {.lex_state = 198}, + [4498] = {.lex_state = 198}, + [4499] = {.lex_state = 198}, + [4500] = {.lex_state = 198}, + [4501] = {.lex_state = 198}, + [4502] = {.lex_state = 198}, + [4503] = {.lex_state = 198}, + [4504] = {.lex_state = 198}, + [4505] = {.lex_state = 198}, + [4506] = {.lex_state = 143}, + [4507] = {.lex_state = 198}, + [4508] = {.lex_state = 198}, + [4509] = {.lex_state = 143}, + [4510] = {.lex_state = 143}, + [4511] = {.lex_state = 143}, + [4512] = {.lex_state = 143}, + [4513] = {.lex_state = 143}, + [4514] = {.lex_state = 198}, + [4515] = {.lex_state = 143}, + [4516] = {.lex_state = 154}, + [4517] = {.lex_state = 143}, + [4518] = {.lex_state = 143}, + [4519] = {.lex_state = 143}, + [4520] = {.lex_state = 143}, + [4521] = {.lex_state = 143}, + [4522] = {.lex_state = 154}, + [4523] = {.lex_state = 154}, + [4524] = {.lex_state = 143}, + [4525] = {.lex_state = 154}, + [4526] = {.lex_state = 178}, + [4527] = {.lex_state = 178}, + [4528] = {.lex_state = 198}, + [4529] = {.lex_state = 199}, + [4530] = {.lex_state = 198}, + [4531] = {.lex_state = 198}, + [4532] = {.lex_state = 198}, + [4533] = {.lex_state = 198}, + [4534] = {.lex_state = 198}, + [4535] = {.lex_state = 198}, + [4536] = {.lex_state = 198}, + [4537] = {.lex_state = 198}, + [4538] = {.lex_state = 178}, + [4539] = {.lex_state = 178}, + [4540] = {.lex_state = 198}, + [4541] = {.lex_state = 143}, + [4542] = {.lex_state = 198}, + [4543] = {.lex_state = 198}, + [4544] = {.lex_state = 198}, + [4545] = {.lex_state = 198}, + [4546] = {.lex_state = 198}, + [4547] = {.lex_state = 198}, + [4548] = {.lex_state = 198}, + [4549] = {.lex_state = 198}, + [4550] = {.lex_state = 198}, + [4551] = {.lex_state = 198}, + [4552] = {.lex_state = 198}, + [4553] = {.lex_state = 198}, + [4554] = {.lex_state = 198}, + [4555] = {.lex_state = 198}, + [4556] = {.lex_state = 198}, + [4557] = {.lex_state = 178}, + [4558] = {.lex_state = 198}, + [4559] = {.lex_state = 184}, + [4560] = {.lex_state = 184}, + [4561] = {.lex_state = 143}, + [4562] = {.lex_state = 198}, + [4563] = {.lex_state = 198}, + [4564] = {.lex_state = 198}, + [4565] = {.lex_state = 198}, + [4566] = {.lex_state = 198}, + [4567] = {.lex_state = 198}, + [4568] = {.lex_state = 198}, + [4569] = {.lex_state = 198}, + [4570] = {.lex_state = 198}, + [4571] = {.lex_state = 178}, + [4572] = {.lex_state = 198}, + [4573] = {.lex_state = 198}, + [4574] = {.lex_state = 143}, + [4575] = {.lex_state = 198}, + [4576] = {.lex_state = 198}, + [4577] = {.lex_state = 198}, + [4578] = {.lex_state = 143}, + [4579] = {.lex_state = 198}, + [4580] = {.lex_state = 198}, + [4581] = {.lex_state = 198}, + [4582] = {.lex_state = 143}, + [4583] = {.lex_state = 178}, + [4584] = {.lex_state = 178}, + [4585] = {.lex_state = 178}, + [4586] = {.lex_state = 199}, + [4587] = {.lex_state = 178}, + [4588] = {.lex_state = 154}, + [4589] = {.lex_state = 178}, + [4590] = {.lex_state = 199}, + [4591] = {.lex_state = 143}, + [4592] = {.lex_state = 178}, + [4593] = {.lex_state = 143}, + [4594] = {.lex_state = 143}, + [4595] = {.lex_state = 143}, + [4596] = {.lex_state = 143}, + [4597] = {.lex_state = 143}, + [4598] = {.lex_state = 178}, + [4599] = {.lex_state = 143}, + [4600] = {.lex_state = 178}, + [4601] = {.lex_state = 178}, + [4602] = {.lex_state = 178}, + [4603] = {.lex_state = 143}, + [4604] = {.lex_state = 143}, + [4605] = {.lex_state = 143}, + [4606] = {.lex_state = 143}, + [4607] = {.lex_state = 143}, + [4608] = {.lex_state = 143}, + [4609] = {.lex_state = 143}, + [4610] = {.lex_state = 163}, + [4611] = {.lex_state = 163}, + [4612] = {.lex_state = 73}, + [4613] = {.lex_state = 163}, + [4614] = {.lex_state = 73}, + [4615] = {.lex_state = 73}, + [4616] = {.lex_state = 73}, + [4617] = {.lex_state = 163}, + [4618] = {.lex_state = 163}, + [4619] = {.lex_state = 73}, + [4620] = {.lex_state = 73}, + [4621] = {.lex_state = 73}, + [4622] = {.lex_state = 163}, + [4623] = {.lex_state = 163}, + [4624] = {.lex_state = 73}, + [4625] = {.lex_state = 73}, + [4626] = {.lex_state = 163}, + [4627] = {.lex_state = 154}, + [4628] = {.lex_state = 199}, + [4629] = {.lex_state = 163}, + [4630] = {.lex_state = 163}, + [4631] = {.lex_state = 73}, + [4632] = {.lex_state = 73}, + [4633] = {.lex_state = 163}, + [4634] = {.lex_state = 73}, + [4635] = {.lex_state = 73}, + [4636] = {.lex_state = 163}, + [4637] = {.lex_state = 163}, + [4638] = {.lex_state = 73}, + [4639] = {.lex_state = 163}, + [4640] = {.lex_state = 73}, + [4641] = {.lex_state = 73}, + [4642] = {.lex_state = 73}, + [4643] = {.lex_state = 163}, + [4644] = {.lex_state = 163}, + [4645] = {.lex_state = 163}, + [4646] = {.lex_state = 163}, + [4647] = {.lex_state = 163}, + [4648] = {.lex_state = 163}, + [4649] = {.lex_state = 73}, + [4650] = {.lex_state = 73}, + [4651] = {.lex_state = 73}, + [4652] = {.lex_state = 163}, + [4653] = {.lex_state = 163}, + [4654] = {.lex_state = 163}, + [4655] = {.lex_state = 163}, + [4656] = {.lex_state = 73}, + [4657] = {.lex_state = 163}, + [4658] = {.lex_state = 181}, + [4659] = {.lex_state = 163}, + [4660] = {.lex_state = 73}, + [4661] = {.lex_state = 163}, + [4662] = {.lex_state = 163}, + [4663] = {.lex_state = 163}, + [4664] = {.lex_state = 163}, + [4665] = {.lex_state = 163}, + [4666] = {.lex_state = 163}, + [4667] = {.lex_state = 163}, + [4668] = {.lex_state = 163}, + [4669] = {.lex_state = 163}, + [4670] = {.lex_state = 163}, + [4671] = {.lex_state = 163}, + [4672] = {.lex_state = 73}, + [4673] = {.lex_state = 163}, + [4674] = {.lex_state = 73}, + [4675] = {.lex_state = 199}, + [4676] = {.lex_state = 163}, + [4677] = {.lex_state = 163}, + [4678] = {.lex_state = 163}, + [4679] = {.lex_state = 199}, + [4680] = {.lex_state = 163}, + [4681] = {.lex_state = 163}, + [4682] = {.lex_state = 154}, + [4683] = {.lex_state = 73}, + [4684] = {.lex_state = 163}, + [4685] = {.lex_state = 163}, + [4686] = {.lex_state = 163}, + [4687] = {.lex_state = 163}, + [4688] = {.lex_state = 73}, + [4689] = {.lex_state = 163}, + [4690] = {.lex_state = 163}, + [4691] = {.lex_state = 163}, + [4692] = {.lex_state = 163}, + [4693] = {.lex_state = 73}, + [4694] = {.lex_state = 163}, + [4695] = {.lex_state = 163}, + [4696] = {.lex_state = 197}, + [4697] = {.lex_state = 163}, + [4698] = {.lex_state = 163}, + [4699] = {.lex_state = 163}, + [4700] = {.lex_state = 163}, + [4701] = {.lex_state = 73}, + [4702] = {.lex_state = 197}, + [4703] = {.lex_state = 163}, + [4704] = {.lex_state = 163}, + [4705] = {.lex_state = 163}, + [4706] = {.lex_state = 163}, + [4707] = {.lex_state = 163}, + [4708] = {.lex_state = 163}, + [4709] = {.lex_state = 163}, + [4710] = {.lex_state = 163}, + [4711] = {.lex_state = 163}, + [4712] = {.lex_state = 163}, + [4713] = {.lex_state = 163}, + [4714] = {.lex_state = 163}, + [4715] = {.lex_state = 163}, + [4716] = {.lex_state = 163}, + [4717] = {.lex_state = 163}, + [4718] = {.lex_state = 163}, + [4719] = {.lex_state = 163}, + [4720] = {.lex_state = 179}, + [4721] = {.lex_state = 163}, + [4722] = {.lex_state = 163}, + [4723] = {.lex_state = 163}, + [4724] = {.lex_state = 163}, + [4725] = {.lex_state = 163}, + [4726] = {.lex_state = 198}, + [4727] = {.lex_state = 163}, + [4728] = {.lex_state = 163}, + [4729] = {.lex_state = 179}, + [4730] = {.lex_state = 163}, + [4731] = {.lex_state = 179}, + [4732] = {.lex_state = 163}, + [4733] = {.lex_state = 163}, + [4734] = {.lex_state = 163}, + [4735] = {.lex_state = 163}, + [4736] = {.lex_state = 163}, + [4737] = {.lex_state = 163}, + [4738] = {.lex_state = 163}, + [4739] = {.lex_state = 163}, + [4740] = {.lex_state = 163}, + [4741] = {.lex_state = 163}, + [4742] = {.lex_state = 163}, + [4743] = {.lex_state = 163}, + [4744] = {.lex_state = 163}, + [4745] = {.lex_state = 163}, + [4746] = {.lex_state = 163}, + [4747] = {.lex_state = 163}, + [4748] = {.lex_state = 163}, + [4749] = {.lex_state = 163}, + [4750] = {.lex_state = 163}, + [4751] = {.lex_state = 163}, + [4752] = {.lex_state = 184}, + [4753] = {.lex_state = 163}, + [4754] = {.lex_state = 163}, + [4755] = {.lex_state = 179}, + [4756] = {.lex_state = 163}, + [4757] = {.lex_state = 179}, + [4758] = {.lex_state = 197}, + [4759] = {.lex_state = 141}, + [4760] = {.lex_state = 197}, + [4761] = {.lex_state = 197}, + [4762] = {.lex_state = 184}, + [4763] = {.lex_state = 141}, + [4764] = {.lex_state = 141}, + [4765] = {.lex_state = 141}, + [4766] = {.lex_state = 184}, + [4767] = {.lex_state = 184}, + [4768] = {.lex_state = 181}, + [4769] = {.lex_state = 141}, + [4770] = {.lex_state = 197}, + [4771] = {.lex_state = 179}, + [4772] = {.lex_state = 184}, + [4773] = {.lex_state = 141}, + [4774] = {.lex_state = 163}, + [4775] = {.lex_state = 141}, + [4776] = {.lex_state = 184}, + [4777] = {.lex_state = 141}, + [4778] = {.lex_state = 163}, + [4779] = {.lex_state = 184}, + [4780] = {.lex_state = 184}, + [4781] = {.lex_state = 163}, + [4782] = {.lex_state = 141}, + [4783] = {.lex_state = 184}, + [4784] = {.lex_state = 197}, + [4785] = {.lex_state = 141}, + [4786] = {.lex_state = 184}, + [4787] = {.lex_state = 184}, + [4788] = {.lex_state = 197}, + [4789] = {.lex_state = 197}, + [4790] = {.lex_state = 184}, + [4791] = {.lex_state = 163}, + [4792] = {.lex_state = 163}, + [4793] = {.lex_state = 163}, + [4794] = {.lex_state = 163}, + [4795] = {.lex_state = 163}, + [4796] = {.lex_state = 163}, + [4797] = {.lex_state = 163}, + [4798] = {.lex_state = 163}, + [4799] = {.lex_state = 163}, + [4800] = {.lex_state = 163}, + [4801] = {.lex_state = 163}, + [4802] = {.lex_state = 163}, + [4803] = {.lex_state = 163}, + [4804] = {.lex_state = 163}, + [4805] = {.lex_state = 163}, + [4806] = {.lex_state = 163}, + [4807] = {.lex_state = 163}, + [4808] = {.lex_state = 163}, + [4809] = {.lex_state = 163}, + [4810] = {.lex_state = 163}, + [4811] = {.lex_state = 163}, + [4812] = {.lex_state = 199}, + [4813] = {.lex_state = 163}, + [4814] = {.lex_state = 163}, + [4815] = {.lex_state = 163}, + [4816] = {.lex_state = 163}, + [4817] = {.lex_state = 163}, + [4818] = {.lex_state = 163}, + [4819] = {.lex_state = 163}, + [4820] = {.lex_state = 163}, + [4821] = {.lex_state = 163}, + [4822] = {.lex_state = 163}, + [4823] = {.lex_state = 163}, + [4824] = {.lex_state = 163}, + [4825] = {.lex_state = 163}, + [4826] = {.lex_state = 163}, + [4827] = {.lex_state = 163}, + [4828] = {.lex_state = 163}, + [4829] = {.lex_state = 163}, + [4830] = {.lex_state = 163}, + [4831] = {.lex_state = 163}, + [4832] = {.lex_state = 163}, + [4833] = {.lex_state = 163}, + [4834] = {.lex_state = 163}, + [4835] = {.lex_state = 163}, + [4836] = {.lex_state = 163}, + [4837] = {.lex_state = 163}, + [4838] = {.lex_state = 163}, + [4839] = {.lex_state = 163}, + [4840] = {.lex_state = 163}, + [4841] = {.lex_state = 163}, + [4842] = {.lex_state = 163}, + [4843] = {.lex_state = 163}, + [4844] = {.lex_state = 163}, + [4845] = {.lex_state = 163}, + [4846] = {.lex_state = 163}, + [4847] = {.lex_state = 163}, + [4848] = {.lex_state = 163}, + [4849] = {.lex_state = 163}, + [4850] = {.lex_state = 163}, + [4851] = {.lex_state = 163}, + [4852] = {.lex_state = 163}, + [4853] = {.lex_state = 163}, + [4854] = {.lex_state = 163}, + [4855] = {.lex_state = 163}, + [4856] = {.lex_state = 163}, + [4857] = {.lex_state = 163}, + [4858] = {.lex_state = 163}, + [4859] = {.lex_state = 163}, + [4860] = {.lex_state = 163}, + [4861] = {.lex_state = 163}, + [4862] = {.lex_state = 163}, + [4863] = {.lex_state = 163}, + [4864] = {.lex_state = 163}, + [4865] = {.lex_state = 163}, + [4866] = {.lex_state = 163}, + [4867] = {.lex_state = 163}, + [4868] = {.lex_state = 163}, + [4869] = {.lex_state = 163}, + [4870] = {.lex_state = 163}, + [4871] = {.lex_state = 163}, + [4872] = {.lex_state = 163}, + [4873] = {.lex_state = 163}, + [4874] = {.lex_state = 163}, + [4875] = {.lex_state = 163}, + [4876] = {.lex_state = 163}, + [4877] = {.lex_state = 163}, + [4878] = {.lex_state = 163}, + [4879] = {.lex_state = 163}, + [4880] = {.lex_state = 163}, + [4881] = {.lex_state = 163}, + [4882] = {.lex_state = 163}, + [4883] = {.lex_state = 163}, + [4884] = {.lex_state = 163}, + [4885] = {.lex_state = 163}, + [4886] = {.lex_state = 163}, + [4887] = {.lex_state = 163}, + [4888] = {.lex_state = 163}, + [4889] = {.lex_state = 0}, + [4890] = {.lex_state = 179}, + [4891] = {.lex_state = 163}, + [4892] = {.lex_state = 141}, + [4893] = {.lex_state = 179}, + [4894] = {.lex_state = 163}, + [4895] = {.lex_state = 179}, + [4896] = {.lex_state = 141}, + [4897] = {.lex_state = 0}, + [4898] = {.lex_state = 200}, + [4899] = {.lex_state = 141}, + [4900] = {.lex_state = 200}, + [4901] = {.lex_state = 179}, + [4902] = {.lex_state = 179}, + [4903] = {.lex_state = 0}, + [4904] = {.lex_state = 163}, + [4905] = {.lex_state = 179}, + [4906] = {.lex_state = 163}, + [4907] = {.lex_state = 179}, + [4908] = {.lex_state = 141}, + [4909] = {.lex_state = 179}, + [4910] = {.lex_state = 141}, + [4911] = {.lex_state = 163}, + [4912] = {.lex_state = 179}, + [4913] = {.lex_state = 163}, + [4914] = {.lex_state = 179}, + [4915] = {.lex_state = 179}, + [4916] = {.lex_state = 179}, + [4917] = {.lex_state = 200}, + [4918] = {.lex_state = 141}, + [4919] = {.lex_state = 141}, + [4920] = {.lex_state = 179}, + [4921] = {.lex_state = 197}, + [4922] = {.lex_state = 163}, + [4923] = {.lex_state = 163}, + [4924] = {.lex_state = 163}, + [4925] = {.lex_state = 0}, + [4926] = {.lex_state = 179}, + [4927] = {.lex_state = 163}, + [4928] = {.lex_state = 141}, + [4929] = {.lex_state = 179}, + [4930] = {.lex_state = 163}, + [4931] = {.lex_state = 184}, + [4932] = {.lex_state = 179}, + [4933] = {.lex_state = 163}, + [4934] = {.lex_state = 200}, + [4935] = {.lex_state = 141}, + [4936] = {.lex_state = 0}, + [4937] = {.lex_state = 0}, + [4938] = {.lex_state = 141}, + [4939] = {.lex_state = 163}, + [4940] = {.lex_state = 0}, + [4941] = {.lex_state = 197}, + [4942] = {.lex_state = 179}, + [4943] = {.lex_state = 200}, + [4944] = {.lex_state = 200}, + [4945] = {.lex_state = 179}, + [4946] = {.lex_state = 163}, + [4947] = {.lex_state = 184}, + [4948] = {.lex_state = 163}, + [4949] = {.lex_state = 199}, + [4950] = {.lex_state = 184}, + [4951] = {.lex_state = 184}, + [4952] = {.lex_state = 184}, + [4953] = {.lex_state = 199}, + [4954] = {.lex_state = 0}, + [4955] = {.lex_state = 184}, + [4956] = {.lex_state = 184}, + [4957] = {.lex_state = 199}, + [4958] = {.lex_state = 163}, + [4959] = {.lex_state = 163}, + [4960] = {.lex_state = 261}, + [4961] = {.lex_state = 199}, + [4962] = {.lex_state = 163}, + [4963] = {.lex_state = 0}, + [4964] = {.lex_state = 184}, + [4965] = {.lex_state = 163}, + [4966] = {.lex_state = 184}, + [4967] = {.lex_state = 199}, + [4968] = {.lex_state = 184}, + [4969] = {.lex_state = 163}, + [4970] = {.lex_state = 199}, + [4971] = {.lex_state = 261}, + [4972] = {.lex_state = 199}, + [4973] = {.lex_state = 163}, + [4974] = {.lex_state = 261}, + [4975] = {.lex_state = 261}, + [4976] = {.lex_state = 197}, + [4977] = {.lex_state = 197}, + [4978] = {.lex_state = 163}, + [4979] = {.lex_state = 261}, + [4980] = {.lex_state = 199}, + [4981] = {.lex_state = 199}, + [4982] = {.lex_state = 199}, + [4983] = {.lex_state = 0}, + [4984] = {.lex_state = 163}, + [4985] = {.lex_state = 0}, + [4986] = {.lex_state = 261}, + [4987] = {.lex_state = 199}, + [4988] = {.lex_state = 163}, + [4989] = {.lex_state = 199}, + [4990] = {.lex_state = 163}, + [4991] = {.lex_state = 0}, + [4992] = {.lex_state = 163}, + [4993] = {.lex_state = 0}, + [4994] = {.lex_state = 199}, + [4995] = {.lex_state = 163}, + [4996] = {.lex_state = 163}, + [4997] = {.lex_state = 0}, + [4998] = {.lex_state = 163}, + [4999] = {.lex_state = 163}, + [5000] = {.lex_state = 199}, + [5001] = {.lex_state = 199}, + [5002] = {.lex_state = 199}, + [5003] = {.lex_state = 199}, + [5004] = {.lex_state = 199}, + [5005] = {.lex_state = 163}, + [5006] = {.lex_state = 163}, + [5007] = {.lex_state = 199}, + [5008] = {.lex_state = 199}, + [5009] = {.lex_state = 199}, + [5010] = {.lex_state = 199}, + [5011] = {.lex_state = 199}, + [5012] = {.lex_state = 199}, + [5013] = {.lex_state = 199}, + [5014] = {.lex_state = 199}, + [5015] = {.lex_state = 199}, + [5016] = {.lex_state = 261}, + [5017] = {.lex_state = 199}, + [5018] = {.lex_state = 199}, + [5019] = {.lex_state = 199}, + [5020] = {.lex_state = 199}, + [5021] = {.lex_state = 199}, + [5022] = {.lex_state = 199}, + [5023] = {.lex_state = 199}, + [5024] = {.lex_state = 163}, + [5025] = {.lex_state = 163}, + [5026] = {.lex_state = 199}, + [5027] = {.lex_state = 141}, + [5028] = {.lex_state = 199}, + [5029] = {.lex_state = 199}, + [5030] = {.lex_state = 197}, + [5031] = {.lex_state = 163}, + [5032] = {.lex_state = 199}, + [5033] = {.lex_state = 197}, + [5034] = {.lex_state = 163}, + [5035] = {.lex_state = 203}, + [5036] = {.lex_state = 199}, + [5037] = {.lex_state = 197}, + [5038] = {.lex_state = 199}, + [5039] = {.lex_state = 197}, + [5040] = {.lex_state = 197}, + [5041] = {.lex_state = 163}, + [5042] = {.lex_state = 199}, + [5043] = {.lex_state = 197}, + [5044] = {.lex_state = 163}, + [5045] = {.lex_state = 199}, + [5046] = {.lex_state = 199}, + [5047] = {.lex_state = 199}, + [5048] = {.lex_state = 163}, + [5049] = {.lex_state = 199}, + [5050] = {.lex_state = 199}, + [5051] = {.lex_state = 163}, + [5052] = {.lex_state = 199}, + [5053] = {.lex_state = 199}, + [5054] = {.lex_state = 163}, + [5055] = {.lex_state = 198}, + [5056] = {.lex_state = 163}, + [5057] = {.lex_state = 199}, + [5058] = {.lex_state = 198}, + [5059] = {.lex_state = 199}, + [5060] = {.lex_state = 199}, + [5061] = {.lex_state = 163}, + [5062] = {.lex_state = 197}, + [5063] = {.lex_state = 163}, + [5064] = {.lex_state = 163}, + [5065] = {.lex_state = 163}, + [5066] = {.lex_state = 199}, + [5067] = {.lex_state = 199}, + [5068] = {.lex_state = 197}, + [5069] = {.lex_state = 163}, + [5070] = {.lex_state = 163}, + [5071] = {.lex_state = 199}, + [5072] = {.lex_state = 199}, + [5073] = {.lex_state = 163}, + [5074] = {.lex_state = 199}, + [5075] = {.lex_state = 199}, + [5076] = {.lex_state = 163}, + [5077] = {.lex_state = 163}, + [5078] = {.lex_state = 197}, + [5079] = {.lex_state = 199}, + [5080] = {.lex_state = 199}, + [5081] = {.lex_state = 199}, + [5082] = {.lex_state = 199}, + [5083] = {.lex_state = 199}, + [5084] = {.lex_state = 199}, + [5085] = {.lex_state = 197}, + [5086] = {.lex_state = 199}, + [5087] = {.lex_state = 199}, + [5088] = {.lex_state = 200}, + [5089] = {.lex_state = 199}, + [5090] = {.lex_state = 199}, + [5091] = {.lex_state = 199}, + [5092] = {.lex_state = 199}, + [5093] = {.lex_state = 199}, + [5094] = {.lex_state = 199}, + [5095] = {.lex_state = 197}, + [5096] = {.lex_state = 199}, + [5097] = {.lex_state = 198}, + [5098] = {.lex_state = 198}, + [5099] = {.lex_state = 199}, + [5100] = {.lex_state = 199}, + [5101] = {.lex_state = 163}, + [5102] = {.lex_state = 197}, + [5103] = {.lex_state = 199}, + [5104] = {.lex_state = 198}, + [5105] = {.lex_state = 199}, + [5106] = {.lex_state = 199}, + [5107] = {.lex_state = 198}, + [5108] = {.lex_state = 197}, + [5109] = {.lex_state = 200}, + [5110] = {.lex_state = 198}, + [5111] = {.lex_state = 199}, + [5112] = {.lex_state = 197}, + [5113] = {.lex_state = 199}, + [5114] = {.lex_state = 199}, + [5115] = {.lex_state = 200}, + [5116] = {.lex_state = 199}, + [5117] = {.lex_state = 199}, + [5118] = {.lex_state = 197}, + [5119] = {.lex_state = 163}, + [5120] = {.lex_state = 199}, + [5121] = {.lex_state = 179}, + [5122] = {.lex_state = 199}, + [5123] = {.lex_state = 199}, + [5124] = {.lex_state = 198}, + [5125] = {.lex_state = 198}, + [5126] = {.lex_state = 199}, + [5127] = {.lex_state = 199}, + [5128] = {.lex_state = 198}, + [5129] = {.lex_state = 199}, + [5130] = {.lex_state = 198}, + [5131] = {.lex_state = 199}, + [5132] = {.lex_state = 199}, + [5133] = {.lex_state = 198}, + [5134] = {.lex_state = 199}, + [5135] = {.lex_state = 199}, + [5136] = {.lex_state = 199}, + [5137] = {.lex_state = 198}, + [5138] = {.lex_state = 198}, + [5139] = {.lex_state = 199}, + [5140] = {.lex_state = 200}, + [5141] = {.lex_state = 199}, + [5142] = {.lex_state = 199}, + [5143] = {.lex_state = 198}, + [5144] = {.lex_state = 199}, + [5145] = {.lex_state = 198}, + [5146] = {.lex_state = 198}, + [5147] = {.lex_state = 198}, + [5148] = {.lex_state = 198}, + [5149] = {.lex_state = 179}, + [5150] = {.lex_state = 199}, + [5151] = {.lex_state = 199}, + [5152] = {.lex_state = 199}, + [5153] = {.lex_state = 199}, + [5154] = {.lex_state = 198}, + [5155] = {.lex_state = 199}, + [5156] = {.lex_state = 198}, + [5157] = {.lex_state = 200}, + [5158] = {.lex_state = 200}, + [5159] = {.lex_state = 199}, + [5160] = {.lex_state = 163}, + [5161] = {.lex_state = 261}, + [5162] = {.lex_state = 261}, + [5163] = {.lex_state = 163}, + [5164] = {.lex_state = 163}, + [5165] = {.lex_state = 163}, + [5166] = {.lex_state = 163}, + [5167] = {.lex_state = 261}, + [5168] = {.lex_state = 261}, + [5169] = {.lex_state = 163}, + [5170] = {.lex_state = 199}, + [5171] = {.lex_state = 197}, + [5172] = {.lex_state = 199}, + [5173] = {.lex_state = 199}, + [5174] = {.lex_state = 199}, + [5175] = {.lex_state = 199}, + [5176] = {.lex_state = 163}, + [5177] = {.lex_state = 184}, + [5178] = {.lex_state = 199}, + [5179] = {.lex_state = 163}, + [5180] = {.lex_state = 261}, + [5181] = {.lex_state = 163}, + [5182] = {.lex_state = 163}, + [5183] = {.lex_state = 163}, + [5184] = {.lex_state = 163}, + [5185] = {.lex_state = 163}, + [5186] = {.lex_state = 163}, + [5187] = {.lex_state = 197}, + [5188] = {.lex_state = 163}, + [5189] = {.lex_state = 163}, + [5190] = {.lex_state = 199}, + [5191] = {.lex_state = 200}, + [5192] = {.lex_state = 163}, + [5193] = {.lex_state = 163}, + [5194] = {.lex_state = 197}, + [5195] = {.lex_state = 184}, + [5196] = {.lex_state = 163}, + [5197] = {.lex_state = 163}, + [5198] = {.lex_state = 197}, + [5199] = {.lex_state = 163}, + [5200] = {.lex_state = 163}, + [5201] = {.lex_state = 163}, + [5202] = {.lex_state = 197}, + [5203] = {.lex_state = 163}, + [5204] = {.lex_state = 199}, + [5205] = {.lex_state = 197}, + [5206] = {.lex_state = 199}, + [5207] = {.lex_state = 197}, + [5208] = {.lex_state = 163}, + [5209] = {.lex_state = 163}, + [5210] = {.lex_state = 163}, + [5211] = {.lex_state = 199}, + [5212] = {.lex_state = 163}, + [5213] = {.lex_state = 163}, + [5214] = {.lex_state = 163}, + [5215] = {.lex_state = 199}, + [5216] = {.lex_state = 261}, + [5217] = {.lex_state = 163}, + [5218] = {.lex_state = 163}, + [5219] = {.lex_state = 198}, + [5220] = {.lex_state = 197}, + [5221] = {.lex_state = 197}, + [5222] = {.lex_state = 261}, + [5223] = {.lex_state = 261}, + [5224] = {.lex_state = 192}, + [5225] = {.lex_state = 198}, + [5226] = {.lex_state = 198}, + [5227] = {.lex_state = 198}, + [5228] = {.lex_state = 197}, + [5229] = {.lex_state = 198}, + [5230] = {.lex_state = 163}, + [5231] = {.lex_state = 197}, + [5232] = {.lex_state = 141}, + [5233] = {.lex_state = 163}, + [5234] = {.lex_state = 163}, + [5235] = {.lex_state = 261}, + [5236] = {.lex_state = 197}, + [5237] = {.lex_state = 197}, + [5238] = {.lex_state = 163}, + [5239] = {.lex_state = 197}, + [5240] = {.lex_state = 261}, + [5241] = {.lex_state = 261}, + [5242] = {.lex_state = 261}, + [5243] = {.lex_state = 163}, + [5244] = {.lex_state = 163}, + [5245] = {.lex_state = 163}, + [5246] = {.lex_state = 261}, + [5247] = {.lex_state = 163}, + [5248] = {.lex_state = 198}, + [5249] = {.lex_state = 261}, + [5250] = {.lex_state = 198}, + [5251] = {.lex_state = 198}, + [5252] = {.lex_state = 261}, + [5253] = {.lex_state = 155}, + [5254] = {.lex_state = 261}, + [5255] = {.lex_state = 198}, + [5256] = {.lex_state = 198}, + [5257] = {.lex_state = 198}, + [5258] = {.lex_state = 192}, + [5259] = {.lex_state = 198}, + [5260] = {.lex_state = 261}, + [5261] = {.lex_state = 198}, + [5262] = {.lex_state = 261}, + [5263] = {.lex_state = 163}, + [5264] = {.lex_state = 198}, + [5265] = {.lex_state = 261}, + [5266] = {.lex_state = 163}, + [5267] = {.lex_state = 198}, + [5268] = {.lex_state = 163}, + [5269] = {.lex_state = 261}, + [5270] = {.lex_state = 261}, + [5271] = {.lex_state = 163}, + [5272] = {.lex_state = 163}, + [5273] = {.lex_state = 198}, + [5274] = {.lex_state = 261}, + [5275] = {.lex_state = 261}, + [5276] = {.lex_state = 192}, + [5277] = {.lex_state = 261}, + [5278] = {.lex_state = 261}, + [5279] = {.lex_state = 261}, + [5280] = {.lex_state = 163}, + [5281] = {.lex_state = 261}, + [5282] = {.lex_state = 261}, + [5283] = {.lex_state = 192}, + [5284] = {.lex_state = 199}, + [5285] = {.lex_state = 261}, + [5286] = {.lex_state = 261}, + [5287] = {.lex_state = 199}, + [5288] = {.lex_state = 198}, + [5289] = {.lex_state = 199}, + [5290] = {.lex_state = 198}, + [5291] = {.lex_state = 199}, + [5292] = {.lex_state = 155}, + [5293] = {.lex_state = 261}, + [5294] = {.lex_state = 198}, + [5295] = {.lex_state = 199}, + [5296] = {.lex_state = 163}, + [5297] = {.lex_state = 261}, + [5298] = {.lex_state = 199}, + [5299] = {.lex_state = 163}, + [5300] = {.lex_state = 261}, + [5301] = {.lex_state = 163}, + [5302] = {.lex_state = 163}, + [5303] = {.lex_state = 163}, + [5304] = {.lex_state = 261}, + [5305] = {.lex_state = 163}, + [5306] = {.lex_state = 163}, + [5307] = {.lex_state = 261}, + [5308] = {.lex_state = 200}, + [5309] = {.lex_state = 165}, + [5310] = {.lex_state = 155}, + [5311] = {.lex_state = 163}, + [5312] = {.lex_state = 197}, + [5313] = {.lex_state = 261}, + [5314] = {.lex_state = 198}, + [5315] = {.lex_state = 198}, + [5316] = {.lex_state = 165}, + [5317] = {.lex_state = 163}, + [5318] = {.lex_state = 198}, + [5319] = {.lex_state = 261}, + [5320] = {.lex_state = 155}, + [5321] = {.lex_state = 261}, + [5322] = {.lex_state = 198}, + [5323] = {.lex_state = 197}, + [5324] = {.lex_state = 261}, + [5325] = {.lex_state = 198}, + [5326] = {.lex_state = 200}, + [5327] = {.lex_state = 155}, + [5328] = {.lex_state = 198}, + [5329] = {.lex_state = 198}, + [5330] = {.lex_state = 198}, + [5331] = {.lex_state = 155}, + [5332] = {.lex_state = 198}, + [5333] = {.lex_state = 200}, + [5334] = {.lex_state = 198}, + [5335] = {.lex_state = 198}, + [5336] = {.lex_state = 163}, + [5337] = {.lex_state = 155}, + [5338] = {.lex_state = 141}, + [5339] = {.lex_state = 165}, + [5340] = {.lex_state = 165}, + [5341] = {.lex_state = 163}, + [5342] = {.lex_state = 166}, + [5343] = {.lex_state = 165}, + [5344] = {.lex_state = 261}, + [5345] = {.lex_state = 163}, + [5346] = {.lex_state = 163}, + [5347] = {.lex_state = 163}, + [5348] = {.lex_state = 165}, + [5349] = {.lex_state = 163}, + [5350] = {.lex_state = 155}, + [5351] = {.lex_state = 163}, + [5352] = {.lex_state = 163}, + [5353] = {.lex_state = 163}, + [5354] = {.lex_state = 163}, + [5355] = {.lex_state = 166}, + [5356] = {.lex_state = 163}, + [5357] = {.lex_state = 166}, + [5358] = {.lex_state = 155}, + [5359] = {.lex_state = 166}, + [5360] = {.lex_state = 166}, + [5361] = {.lex_state = 261}, + [5362] = {.lex_state = 163}, + [5363] = {.lex_state = 166}, + [5364] = {.lex_state = 163}, + [5365] = {.lex_state = 163}, + [5366] = {.lex_state = 166}, + [5367] = {.lex_state = 261}, + [5368] = {.lex_state = 163}, + [5369] = {.lex_state = 163}, + [5370] = {.lex_state = 261}, + [5371] = {.lex_state = 163}, + [5372] = {.lex_state = 163}, + [5373] = {.lex_state = 163}, + [5374] = {.lex_state = 163}, + [5375] = {.lex_state = 165}, + [5376] = {.lex_state = 166}, + [5377] = {.lex_state = 198}, + [5378] = {.lex_state = 166}, + [5379] = {.lex_state = 166}, + [5380] = {.lex_state = 261}, + [5381] = {.lex_state = 163}, + [5382] = {.lex_state = 184}, + [5383] = {.lex_state = 163}, + [5384] = {.lex_state = 184}, + [5385] = {.lex_state = 163}, + [5386] = {.lex_state = 163}, + [5387] = {.lex_state = 261}, + [5388] = {.lex_state = 155}, + [5389] = {.lex_state = 163}, + [5390] = {.lex_state = 163}, + [5391] = {.lex_state = 141}, + [5392] = {.lex_state = 141}, + [5393] = {.lex_state = 166}, + [5394] = {.lex_state = 141}, + [5395] = {.lex_state = 163}, + [5396] = {.lex_state = 163}, + [5397] = {.lex_state = 155}, + [5398] = {.lex_state = 163}, + [5399] = {.lex_state = 184}, + [5400] = {.lex_state = 166}, + [5401] = {.lex_state = 163}, + [5402] = {.lex_state = 155}, + [5403] = {.lex_state = 141}, + [5404] = {.lex_state = 163}, + [5405] = {.lex_state = 155}, + [5406] = {.lex_state = 163}, + [5407] = {.lex_state = 261}, + [5408] = {.lex_state = 163}, + [5409] = {.lex_state = 165}, + [5410] = {.lex_state = 261}, + [5411] = {.lex_state = 261}, + [5412] = {.lex_state = 163}, + [5413] = {.lex_state = 261}, + [5414] = {.lex_state = 163}, + [5415] = {.lex_state = 163}, + [5416] = {.lex_state = 261}, + [5417] = {.lex_state = 163}, + [5418] = {.lex_state = 165}, + [5419] = {.lex_state = 141}, + [5420] = {.lex_state = 163}, + [5421] = {.lex_state = 166}, + [5422] = {.lex_state = 261}, + [5423] = {.lex_state = 165}, + [5424] = {.lex_state = 163}, + [5425] = {.lex_state = 163}, + [5426] = {.lex_state = 163}, + [5427] = {.lex_state = 163}, + [5428] = {.lex_state = 163}, + [5429] = {.lex_state = 165}, + [5430] = {.lex_state = 261}, + [5431] = {.lex_state = 163}, + [5432] = {.lex_state = 163}, + [5433] = {.lex_state = 141}, + [5434] = {.lex_state = 165}, + [5435] = {.lex_state = 163}, + [5436] = {.lex_state = 165}, + [5437] = {.lex_state = 163}, + [5438] = {.lex_state = 163}, + [5439] = {.lex_state = 163}, + [5440] = {.lex_state = 163}, + [5441] = {.lex_state = 261}, + [5442] = {.lex_state = 163}, + [5443] = {.lex_state = 261}, + [5444] = {.lex_state = 261}, + [5445] = {.lex_state = 163}, + [5446] = {.lex_state = 261}, + [5447] = {.lex_state = 200}, + [5448] = {.lex_state = 197}, + [5449] = {.lex_state = 261}, + [5450] = {.lex_state = 163}, + [5451] = {.lex_state = 261}, + [5452] = {.lex_state = 197}, + [5453] = {.lex_state = 166}, + [5454] = {.lex_state = 197}, + [5455] = {.lex_state = 166}, + [5456] = {.lex_state = 197}, + [5457] = {.lex_state = 197}, + [5458] = {.lex_state = 166}, + [5459] = {.lex_state = 197}, + [5460] = {.lex_state = 166}, + [5461] = {.lex_state = 166}, + [5462] = {.lex_state = 197}, + [5463] = {.lex_state = 166}, + [5464] = {.lex_state = 166}, + [5465] = {.lex_state = 261}, + [5466] = {.lex_state = 166}, + [5467] = {.lex_state = 166}, + [5468] = {.lex_state = 166}, + [5469] = {.lex_state = 141}, + [5470] = {.lex_state = 261}, + [5471] = {.lex_state = 261}, + [5472] = {.lex_state = 197}, + [5473] = {.lex_state = 261}, + [5474] = {.lex_state = 261}, + [5475] = {.lex_state = 261}, + [5476] = {.lex_state = 261}, + [5477] = {.lex_state = 163}, + [5478] = {.lex_state = 163}, + [5479] = {.lex_state = 163}, + [5480] = {.lex_state = 197}, + [5481] = {.lex_state = 166}, + [5482] = {.lex_state = 166}, + [5483] = {.lex_state = 197}, + [5484] = {.lex_state = 166}, + [5485] = {.lex_state = 166}, + [5486] = {.lex_state = 197}, + [5487] = {.lex_state = 197}, + [5488] = {.lex_state = 197}, + [5489] = {.lex_state = 141}, + [5490] = {.lex_state = 163}, + [5491] = {.lex_state = 261}, + [5492] = {.lex_state = 163}, + [5493] = {.lex_state = 261}, + [5494] = {.lex_state = 197}, + [5495] = {.lex_state = 261}, + [5496] = {.lex_state = 261}, + [5497] = {.lex_state = 155}, + [5498] = {.lex_state = 261}, + [5499] = {.lex_state = 155}, + [5500] = {.lex_state = 261}, + [5501] = {.lex_state = 155}, + [5502] = {.lex_state = 155}, + [5503] = {.lex_state = 155}, + [5504] = {.lex_state = 261}, + [5505] = {.lex_state = 197}, + [5506] = {.lex_state = 165}, + [5507] = {.lex_state = 261}, + [5508] = {.lex_state = 155}, + [5509] = {.lex_state = 155}, + [5510] = {.lex_state = 165}, + [5511] = {.lex_state = 163}, + [5512] = {.lex_state = 163}, + [5513] = {.lex_state = 141}, + [5514] = {.lex_state = 261}, + [5515] = {.lex_state = 261}, + [5516] = {.lex_state = 261}, + [5517] = {.lex_state = 141}, + [5518] = {.lex_state = 163}, + [5519] = {.lex_state = 146}, + [5520] = {.lex_state = 141}, + [5521] = {.lex_state = 146}, + [5522] = {.lex_state = 78}, + [5523] = {.lex_state = 146}, + [5524] = {.lex_state = 146}, + [5525] = {.lex_state = 0}, + [5526] = {.lex_state = 141}, + [5527] = {.lex_state = 146}, + [5528] = {.lex_state = 146}, + [5529] = {.lex_state = 146}, + [5530] = {.lex_state = 146}, + [5531] = {.lex_state = 146}, + [5532] = {.lex_state = 78}, + [5533] = {.lex_state = 146}, + [5534] = {.lex_state = 146}, + [5535] = {.lex_state = 146}, + [5536] = {.lex_state = 261}, + [5537] = {.lex_state = 146}, + [5538] = {.lex_state = 146}, + [5539] = {.lex_state = 146}, + [5540] = {.lex_state = 146}, + [5541] = {.lex_state = 163}, + [5542] = {.lex_state = 261}, + [5543] = {.lex_state = 146}, + [5544] = {.lex_state = 261}, + [5545] = {.lex_state = 141}, + [5546] = {.lex_state = 80}, + [5547] = {.lex_state = 146}, + [5548] = {.lex_state = 197}, + [5549] = {.lex_state = 146}, + [5550] = {.lex_state = 146}, + [5551] = {.lex_state = 163}, + [5552] = {.lex_state = 141}, + [5553] = {.lex_state = 78}, + [5554] = {.lex_state = 146}, + [5555] = {.lex_state = 141}, + [5556] = {.lex_state = 261}, + [5557] = {.lex_state = 146}, + [5558] = {.lex_state = 146}, + [5559] = {.lex_state = 163}, + [5560] = {.lex_state = 146}, + [5561] = {.lex_state = 146}, + [5562] = {.lex_state = 146}, + [5563] = {.lex_state = 163}, + [5564] = {.lex_state = 78}, + [5565] = {.lex_state = 261}, + [5566] = {.lex_state = 0}, + [5567] = {.lex_state = 261}, + [5568] = {.lex_state = 146}, + [5569] = {.lex_state = 146}, + [5570] = {.lex_state = 146}, + [5571] = {.lex_state = 146}, + [5572] = {.lex_state = 261}, + [5573] = {.lex_state = 261}, + [5574] = {.lex_state = 141}, + [5575] = {.lex_state = 146}, + [5576] = {.lex_state = 78}, + [5577] = {.lex_state = 80}, + [5578] = {.lex_state = 78}, + [5579] = {.lex_state = 261}, + [5580] = {.lex_state = 146}, + [5581] = {.lex_state = 146}, + [5582] = {.lex_state = 146}, + [5583] = {.lex_state = 146}, + [5584] = {.lex_state = 146}, + [5585] = {.lex_state = 141}, + [5586] = {.lex_state = 146}, + [5587] = {.lex_state = 80}, + [5588] = {.lex_state = 0}, + [5589] = {.lex_state = 146}, + [5590] = {.lex_state = 197}, + [5591] = {.lex_state = 146}, + [5592] = {.lex_state = 146}, + [5593] = {.lex_state = 146}, + [5594] = {.lex_state = 141}, + [5595] = {.lex_state = 146}, + [5596] = {.lex_state = 146}, + [5597] = {.lex_state = 146}, + [5598] = {.lex_state = 146}, + [5599] = {.lex_state = 146}, + [5600] = {.lex_state = 146}, + [5601] = {.lex_state = 163}, + [5602] = {.lex_state = 146}, + [5603] = {.lex_state = 163}, + [5604] = {.lex_state = 146}, + [5605] = {.lex_state = 146}, + [5606] = {.lex_state = 146}, + [5607] = {.lex_state = 261}, + [5608] = {.lex_state = 146}, + [5609] = {.lex_state = 197}, + [5610] = {.lex_state = 261}, + [5611] = {.lex_state = 146}, + [5612] = {.lex_state = 78}, + [5613] = {.lex_state = 78}, + [5614] = {.lex_state = 0}, + [5615] = {.lex_state = 146}, + [5616] = {.lex_state = 141}, + [5617] = {.lex_state = 146}, + [5618] = {.lex_state = 146}, + [5619] = {.lex_state = 146}, + [5620] = {.lex_state = 146}, + [5621] = {.lex_state = 146}, + [5622] = {.lex_state = 146}, + [5623] = {.lex_state = 261}, + [5624] = {.lex_state = 146}, + [5625] = {.lex_state = 141}, + [5626] = {.lex_state = 146}, + [5627] = {.lex_state = 146}, + [5628] = {.lex_state = 141}, + [5629] = {.lex_state = 163}, + [5630] = {.lex_state = 146}, + [5631] = {.lex_state = 261}, + [5632] = {.lex_state = 146}, + [5633] = {.lex_state = 146}, + [5634] = {.lex_state = 146}, + [5635] = {.lex_state = 0}, + [5636] = {.lex_state = 146}, + [5637] = {.lex_state = 0}, + [5638] = {.lex_state = 80}, + [5639] = {.lex_state = 141}, + [5640] = {.lex_state = 165}, + [5641] = {.lex_state = 261}, + [5642] = {.lex_state = 261}, + [5643] = {.lex_state = 0}, + [5644] = {.lex_state = 146}, + [5645] = {.lex_state = 0}, + [5646] = {.lex_state = 146}, + [5647] = {.lex_state = 141}, + [5648] = {.lex_state = 146}, + [5649] = {.lex_state = 146}, + [5650] = {.lex_state = 146}, + [5651] = {.lex_state = 146}, + [5652] = {.lex_state = 146}, + [5653] = {.lex_state = 261}, + [5654] = {.lex_state = 146}, + [5655] = {.lex_state = 197}, + [5656] = {.lex_state = 146}, + [5657] = {.lex_state = 146}, + [5658] = {.lex_state = 146}, + [5659] = {.lex_state = 0}, + [5660] = {.lex_state = 146}, + [5661] = {.lex_state = 0}, + [5662] = {.lex_state = 146}, + [5663] = {.lex_state = 0}, + [5664] = {.lex_state = 146}, + [5665] = {.lex_state = 141}, + [5666] = {.lex_state = 141}, + [5667] = {.lex_state = 261}, + [5668] = {.lex_state = 146}, + [5669] = {.lex_state = 146}, + [5670] = {.lex_state = 78}, + [5671] = {.lex_state = 141}, + [5672] = {.lex_state = 261}, + [5673] = {.lex_state = 78}, + [5674] = {.lex_state = 78}, + [5675] = {.lex_state = 141}, + [5676] = {.lex_state = 261}, + [5677] = {.lex_state = 146}, + [5678] = {.lex_state = 146}, + [5679] = {.lex_state = 146}, + [5680] = {.lex_state = 141}, + [5681] = {.lex_state = 146}, + [5682] = {.lex_state = 146}, + [5683] = {.lex_state = 141}, + [5684] = {.lex_state = 146}, + [5685] = {.lex_state = 141}, + [5686] = {.lex_state = 146}, + [5687] = {.lex_state = 146}, + [5688] = {.lex_state = 163}, + [5689] = {.lex_state = 146}, + [5690] = {.lex_state = 146}, + [5691] = {.lex_state = 146}, + [5692] = {.lex_state = 146}, + [5693] = {.lex_state = 146}, + [5694] = {.lex_state = 146}, + [5695] = {.lex_state = 0}, + [5696] = {.lex_state = 146}, + [5697] = {.lex_state = 146}, + [5698] = {.lex_state = 78}, + [5699] = {.lex_state = 146}, + [5700] = {.lex_state = 146}, + [5701] = {.lex_state = 146}, + [5702] = {.lex_state = 197}, + [5703] = {.lex_state = 146}, + [5704] = {.lex_state = 146}, + [5705] = {.lex_state = 146}, + [5706] = {.lex_state = 197}, + [5707] = {.lex_state = 80}, + [5708] = {.lex_state = 197}, + [5709] = {.lex_state = 146}, + [5710] = {.lex_state = 146}, + [5711] = {.lex_state = 146}, + [5712] = {.lex_state = 146}, + [5713] = {.lex_state = 261}, + [5714] = {.lex_state = 78}, + [5715] = {.lex_state = 146}, + [5716] = {.lex_state = 146}, + [5717] = {.lex_state = 146}, + [5718] = {.lex_state = 261}, + [5719] = {.lex_state = 141}, + [5720] = {.lex_state = 146}, + [5721] = {.lex_state = 0}, + [5722] = {.lex_state = 146}, + [5723] = {.lex_state = 0}, + [5724] = {.lex_state = 146}, + [5725] = {.lex_state = 146}, + [5726] = {.lex_state = 141}, + [5727] = {.lex_state = 141}, + [5728] = {.lex_state = 146}, + [5729] = {.lex_state = 146}, + [5730] = {.lex_state = 261}, + [5731] = {.lex_state = 146}, + [5732] = {.lex_state = 146}, + [5733] = {.lex_state = 197}, + [5734] = {.lex_state = 146}, + [5735] = {.lex_state = 146}, + [5736] = {.lex_state = 141}, + [5737] = {.lex_state = 146}, + [5738] = {.lex_state = 141}, + [5739] = {.lex_state = 261}, + [5740] = {.lex_state = 163}, + [5741] = {.lex_state = 141}, + [5742] = {.lex_state = 78}, + [5743] = {.lex_state = 141}, + [5744] = {.lex_state = 146}, + [5745] = {.lex_state = 146}, + [5746] = {.lex_state = 146}, + [5747] = {.lex_state = 146}, + [5748] = {.lex_state = 0}, + [5749] = {.lex_state = 146}, + [5750] = {.lex_state = 146}, + [5751] = {.lex_state = 146}, + [5752] = {.lex_state = 146}, + [5753] = {.lex_state = 197}, + [5754] = {.lex_state = 163}, + [5755] = {.lex_state = 146}, + [5756] = {.lex_state = 78}, + [5757] = {.lex_state = 163}, + [5758] = {.lex_state = 146}, + [5759] = {.lex_state = 146}, + [5760] = {.lex_state = 80}, + [5761] = {.lex_state = 197}, + [5762] = {.lex_state = 146}, + [5763] = {.lex_state = 163}, + [5764] = {.lex_state = 0}, + [5765] = {.lex_state = 146}, + [5766] = {.lex_state = 146}, + [5767] = {.lex_state = 0}, + [5768] = {.lex_state = 146}, + [5769] = {.lex_state = 146}, + [5770] = {.lex_state = 163}, + [5771] = {.lex_state = 80}, + [5772] = {.lex_state = 146}, + [5773] = {.lex_state = 146}, + [5774] = {.lex_state = 146}, + [5775] = {.lex_state = 146}, + [5776] = {.lex_state = 146}, + [5777] = {.lex_state = 146}, + [5778] = {.lex_state = 141}, + [5779] = {.lex_state = 146}, + [5780] = {.lex_state = 78}, + [5781] = {.lex_state = 146}, + [5782] = {.lex_state = 146}, + [5783] = {.lex_state = 146}, + [5784] = {.lex_state = 146}, + [5785] = {.lex_state = 163}, + [5786] = {.lex_state = 146}, + [5787] = {.lex_state = 261}, + [5788] = {.lex_state = 146}, + [5789] = {.lex_state = 146}, + [5790] = {.lex_state = 261}, + [5791] = {.lex_state = 78}, + [5792] = {.lex_state = 141}, + [5793] = {.lex_state = 261}, + [5794] = {.lex_state = 141}, + [5795] = {.lex_state = 146}, + [5796] = {.lex_state = 146}, + [5797] = {.lex_state = 146}, + [5798] = {.lex_state = 146}, + [5799] = {.lex_state = 146}, + [5800] = {.lex_state = 261}, + [5801] = {.lex_state = 146}, + [5802] = {.lex_state = 146}, + [5803] = {.lex_state = 146}, + [5804] = {.lex_state = 0}, + [5805] = {.lex_state = 146}, + [5806] = {.lex_state = 146}, + [5807] = {.lex_state = 146}, + [5808] = {.lex_state = 146}, + [5809] = {.lex_state = 141}, + [5810] = {.lex_state = 146}, + [5811] = {.lex_state = 146}, + [5812] = {.lex_state = 146}, + [5813] = {.lex_state = 141}, + [5814] = {.lex_state = 0}, + [5815] = {.lex_state = 163}, + [5816] = {.lex_state = 0}, + [5817] = {.lex_state = 0}, + [5818] = {.lex_state = 0}, + [5819] = {.lex_state = 0}, + [5820] = {.lex_state = 0}, + [5821] = {.lex_state = 0}, + [5822] = {.lex_state = 0}, + [5823] = {.lex_state = 0}, + [5824] = {.lex_state = 163}, + [5825] = {.lex_state = 0}, + [5826] = {.lex_state = 0}, + [5827] = {.lex_state = 0}, + [5828] = {.lex_state = 0}, + [5829] = {.lex_state = 0}, + [5830] = {.lex_state = 0}, + [5831] = {.lex_state = 0}, + [5832] = {.lex_state = 0}, + [5833] = {.lex_state = 163}, + [5834] = {.lex_state = 163}, + [5835] = {.lex_state = 163}, + [5836] = {.lex_state = 0}, + [5837] = {.lex_state = 0}, + [5838] = {.lex_state = 163}, + [5839] = {.lex_state = 0}, + [5840] = {.lex_state = 163}, + [5841] = {.lex_state = 0}, + [5842] = {.lex_state = 0}, + [5843] = {.lex_state = 163}, + [5844] = {.lex_state = 0}, + [5845] = {.lex_state = 163}, + [5846] = {.lex_state = 0}, + [5847] = {.lex_state = 163}, + [5848] = {.lex_state = 261}, + [5849] = {.lex_state = 0}, + [5850] = {.lex_state = 0}, + [5851] = {.lex_state = 73}, + [5852] = {.lex_state = 261}, + [5853] = {.lex_state = 163}, + [5854] = {.lex_state = 0}, + [5855] = {.lex_state = 0}, + [5856] = {.lex_state = 0}, + [5857] = {.lex_state = 0}, + [5858] = {.lex_state = 0}, + [5859] = {.lex_state = 0}, + [5860] = {.lex_state = 163}, + [5861] = {.lex_state = 261}, + [5862] = {.lex_state = 0}, + [5863] = {.lex_state = 0}, + [5864] = {.lex_state = 0}, + [5865] = {.lex_state = 0}, + [5866] = {.lex_state = 0}, + [5867] = {.lex_state = 163}, + [5868] = {.lex_state = 0}, + [5869] = {.lex_state = 0}, + [5870] = {.lex_state = 163}, + [5871] = {.lex_state = 163}, + [5872] = {.lex_state = 0}, + [5873] = {.lex_state = 0}, + [5874] = {.lex_state = 163}, + [5875] = {.lex_state = 163}, + [5876] = {.lex_state = 0}, + [5877] = {.lex_state = 163}, + [5878] = {.lex_state = 163}, + [5879] = {.lex_state = 163}, + [5880] = {.lex_state = 0}, + [5881] = {.lex_state = 0}, + [5882] = {.lex_state = 163}, + [5883] = {.lex_state = 141}, + [5884] = {.lex_state = 0}, + [5885] = {.lex_state = 73}, + [5886] = {.lex_state = 0}, + [5887] = {.lex_state = 0}, + [5888] = {.lex_state = 0}, + [5889] = {.lex_state = 0}, + [5890] = {.lex_state = 0}, + [5891] = {.lex_state = 141}, + [5892] = {.lex_state = 0}, + [5893] = {.lex_state = 0}, + [5894] = {.lex_state = 0}, + [5895] = {.lex_state = 0}, + [5896] = {.lex_state = 261}, + [5897] = {.lex_state = 0}, + [5898] = {.lex_state = 132}, + [5899] = {.lex_state = 0}, + [5900] = {.lex_state = 0}, + [5901] = {.lex_state = 0}, + [5902] = {.lex_state = 0}, + [5903] = {.lex_state = 163}, + [5904] = {.lex_state = 73}, + [5905] = {.lex_state = 163}, + [5906] = {.lex_state = 261}, + [5907] = {.lex_state = 0}, + [5908] = {.lex_state = 0}, + [5909] = {.lex_state = 163}, + [5910] = {.lex_state = 0}, + [5911] = {.lex_state = 0}, + [5912] = {.lex_state = 163}, + [5913] = {.lex_state = 0}, + [5914] = {.lex_state = 0}, + [5915] = {.lex_state = 0}, + [5916] = {.lex_state = 0}, + [5917] = {.lex_state = 163}, + [5918] = {.lex_state = 0}, + [5919] = {.lex_state = 0}, + [5920] = {.lex_state = 163}, + [5921] = {.lex_state = 0}, + [5922] = {.lex_state = 0}, + [5923] = {.lex_state = 163}, + [5924] = {.lex_state = 0}, + [5925] = {.lex_state = 0}, + [5926] = {.lex_state = 163}, + [5927] = {.lex_state = 141}, + [5928] = {.lex_state = 0}, + [5929] = {.lex_state = 0}, + [5930] = {.lex_state = 0}, + [5931] = {.lex_state = 0}, + [5932] = {.lex_state = 163}, + [5933] = {.lex_state = 163}, + [5934] = {.lex_state = 0}, + [5935] = {.lex_state = 0}, + [5936] = {.lex_state = 0}, + [5937] = {.lex_state = 0}, + [5938] = {.lex_state = 0}, + [5939] = {.lex_state = 0}, + [5940] = {.lex_state = 0}, + [5941] = {.lex_state = 0}, + [5942] = {.lex_state = 0}, + [5943] = {.lex_state = 0}, + [5944] = {.lex_state = 163}, + [5945] = {.lex_state = 165}, + [5946] = {.lex_state = 0}, + [5947] = {.lex_state = 0}, + [5948] = {.lex_state = 0}, + [5949] = {.lex_state = 0}, + [5950] = {.lex_state = 0}, + [5951] = {.lex_state = 0}, + [5952] = {.lex_state = 0}, + [5953] = {.lex_state = 0}, + [5954] = {.lex_state = 261}, + [5955] = {.lex_state = 0}, + [5956] = {.lex_state = 163}, + [5957] = {.lex_state = 0}, + [5958] = {.lex_state = 0}, + [5959] = {.lex_state = 0}, + [5960] = {.lex_state = 0}, + [5961] = {.lex_state = 0}, + [5962] = {.lex_state = 0}, + [5963] = {.lex_state = 0}, + [5964] = {.lex_state = 0}, + [5965] = {.lex_state = 0}, + [5966] = {.lex_state = 0}, + [5967] = {.lex_state = 163}, + [5968] = {.lex_state = 0}, + [5969] = {.lex_state = 163}, + [5970] = {.lex_state = 0}, + [5971] = {.lex_state = 261}, + [5972] = {.lex_state = 0}, + [5973] = {.lex_state = 0}, + [5974] = {.lex_state = 0}, + [5975] = {.lex_state = 0}, + [5976] = {.lex_state = 163}, + [5977] = {.lex_state = 0}, + [5978] = {.lex_state = 0}, + [5979] = {.lex_state = 0}, + [5980] = {.lex_state = 0}, + [5981] = {.lex_state = 0}, + [5982] = {.lex_state = 0}, + [5983] = {.lex_state = 0}, + [5984] = {.lex_state = 0}, + [5985] = {.lex_state = 0}, + [5986] = {.lex_state = 0}, + [5987] = {.lex_state = 0}, + [5988] = {.lex_state = 0}, + [5989] = {.lex_state = 0}, + [5990] = {.lex_state = 0}, + [5991] = {.lex_state = 163}, + [5992] = {.lex_state = 0}, + [5993] = {.lex_state = 0}, + [5994] = {.lex_state = 261}, + [5995] = {.lex_state = 163}, + [5996] = {.lex_state = 0}, + [5997] = {.lex_state = 0}, + [5998] = {.lex_state = 163}, + [5999] = {.lex_state = 0}, + [6000] = {.lex_state = 0}, + [6001] = {.lex_state = 0}, + [6002] = {.lex_state = 163}, + [6003] = {.lex_state = 0}, + [6004] = {.lex_state = 0}, + [6005] = {.lex_state = 0}, + [6006] = {.lex_state = 0}, + [6007] = {.lex_state = 0}, + [6008] = {.lex_state = 261}, + [6009] = {.lex_state = 0}, + [6010] = {.lex_state = 0}, + [6011] = {.lex_state = 0}, + [6012] = {.lex_state = 163}, + [6013] = {.lex_state = 261}, + [6014] = {.lex_state = 0}, + [6015] = {.lex_state = 163}, + [6016] = {.lex_state = 0}, + [6017] = {.lex_state = 0}, + [6018] = {.lex_state = 0}, + [6019] = {.lex_state = 163}, + [6020] = {.lex_state = 163}, + [6021] = {.lex_state = 0}, + [6022] = {.lex_state = 0}, + [6023] = {.lex_state = 0}, + [6024] = {.lex_state = 0}, + [6025] = {.lex_state = 163}, + [6026] = {.lex_state = 163}, + [6027] = {.lex_state = 0}, + [6028] = {.lex_state = 0}, + [6029] = {.lex_state = 0}, + [6030] = {.lex_state = 0}, + [6031] = {.lex_state = 0}, + [6032] = {.lex_state = 0}, + [6033] = {.lex_state = 0}, + [6034] = {.lex_state = 163}, + [6035] = {.lex_state = 0}, + [6036] = {.lex_state = 261}, + [6037] = {.lex_state = 0}, + [6038] = {.lex_state = 163}, + [6039] = {.lex_state = 163}, + [6040] = {.lex_state = 0}, + [6041] = {.lex_state = 163}, + [6042] = {.lex_state = 0}, + [6043] = {.lex_state = 0}, + [6044] = {.lex_state = 163}, + [6045] = {.lex_state = 0}, + [6046] = {.lex_state = 261}, + [6047] = {.lex_state = 0}, + [6048] = {.lex_state = 0}, + [6049] = {.lex_state = 0}, + [6050] = {.lex_state = 163}, + [6051] = {.lex_state = 0}, + [6052] = {.lex_state = 261}, + [6053] = {.lex_state = 0}, + [6054] = {.lex_state = 0}, + [6055] = {.lex_state = 0}, + [6056] = {.lex_state = 0}, + [6057] = {.lex_state = 0}, + [6058] = {.lex_state = 163}, + [6059] = {.lex_state = 0}, + [6060] = {.lex_state = 163}, + [6061] = {.lex_state = 0}, + [6062] = {.lex_state = 163}, + [6063] = {.lex_state = 0}, + [6064] = {.lex_state = 0}, + [6065] = {.lex_state = 73}, + [6066] = {.lex_state = 0}, + [6067] = {.lex_state = 0}, + [6068] = {.lex_state = 0}, + [6069] = {.lex_state = 163}, + [6070] = {.lex_state = 0}, + [6071] = {.lex_state = 0}, + [6072] = {.lex_state = 0}, + [6073] = {.lex_state = 0}, + [6074] = {.lex_state = 0}, + [6075] = {.lex_state = 163}, + [6076] = {.lex_state = 0}, + [6077] = {.lex_state = 163}, + [6078] = {.lex_state = 163}, + [6079] = {.lex_state = 163}, + [6080] = {.lex_state = 0}, + [6081] = {.lex_state = 163}, + [6082] = {.lex_state = 163}, + [6083] = {.lex_state = 0}, + [6084] = {.lex_state = 0}, + [6085] = {.lex_state = 0}, + [6086] = {.lex_state = 0}, + [6087] = {.lex_state = 0}, + [6088] = {.lex_state = 163}, + [6089] = {.lex_state = 163}, + [6090] = {.lex_state = 0}, + [6091] = {.lex_state = 0}, + [6092] = {.lex_state = 163}, + [6093] = {.lex_state = 0}, + [6094] = {.lex_state = 0}, + [6095] = {.lex_state = 0}, + [6096] = {.lex_state = 163}, + [6097] = {.lex_state = 163}, + [6098] = {.lex_state = 0}, + [6099] = {.lex_state = 0}, + [6100] = {.lex_state = 0}, + [6101] = {.lex_state = 0}, + [6102] = {.lex_state = 0}, + [6103] = {.lex_state = 163}, + [6104] = {.lex_state = 0}, + [6105] = {.lex_state = 0}, + [6106] = {.lex_state = 261}, + [6107] = {.lex_state = 0}, + [6108] = {.lex_state = 0}, + [6109] = {.lex_state = 0}, + [6110] = {.lex_state = 0}, + [6111] = {.lex_state = 0}, + [6112] = {.lex_state = 0}, + [6113] = {.lex_state = 0}, + [6114] = {.lex_state = 0}, + [6115] = {.lex_state = 0}, + [6116] = {.lex_state = 0}, + [6117] = {.lex_state = 0}, + [6118] = {.lex_state = 81}, + [6119] = {.lex_state = 0}, + [6120] = {.lex_state = 163}, + [6121] = {.lex_state = 0}, + [6122] = {.lex_state = 0}, + [6123] = {.lex_state = 0}, + [6124] = {.lex_state = 0}, + [6125] = {.lex_state = 0}, + [6126] = {.lex_state = 0}, + [6127] = {.lex_state = 0}, + [6128] = {.lex_state = 261}, + [6129] = {.lex_state = 81}, + [6130] = {.lex_state = 0}, + [6131] = {.lex_state = 0}, + [6132] = {.lex_state = 0}, + [6133] = {.lex_state = 0}, + [6134] = {.lex_state = 261}, + [6135] = {.lex_state = 0}, + [6136] = {.lex_state = 0}, + [6137] = {.lex_state = 0}, + [6138] = {.lex_state = 0}, + [6139] = {.lex_state = 0}, + [6140] = {.lex_state = 0}, + [6141] = {.lex_state = 0}, + [6142] = {.lex_state = 0}, + [6143] = {.lex_state = 0}, + [6144] = {.lex_state = 163}, + [6145] = {.lex_state = 261}, + [6146] = {.lex_state = 261, .external_lex_state = 2}, + [6147] = {.lex_state = 261, .external_lex_state = 2}, + [6148] = {.lex_state = 81}, + [6149] = {.lex_state = 261}, + [6150] = {.lex_state = 261, .external_lex_state = 2}, + [6151] = {.lex_state = 0}, + [6152] = {.lex_state = 0}, + [6153] = {.lex_state = 261}, + [6154] = {.lex_state = 0}, + [6155] = {.lex_state = 0}, + [6156] = {.lex_state = 0}, + [6157] = {.lex_state = 0}, + [6158] = {.lex_state = 0}, + [6159] = {.lex_state = 261}, + [6160] = {.lex_state = 261}, + [6161] = {.lex_state = 0}, + [6162] = {.lex_state = 0}, + [6163] = {.lex_state = 0}, + [6164] = {.lex_state = 0}, + [6165] = {.lex_state = 0}, + [6166] = {.lex_state = 0}, + [6167] = {.lex_state = 261}, + [6168] = {.lex_state = 0}, + [6169] = {.lex_state = 261, .external_lex_state = 2}, + [6170] = {.lex_state = 163}, + [6171] = {.lex_state = 261}, + [6172] = {.lex_state = 0}, + [6173] = {.lex_state = 0}, + [6174] = {.lex_state = 0}, + [6175] = {.lex_state = 0}, + [6176] = {.lex_state = 0}, + [6177] = {.lex_state = 0}, + [6178] = {.lex_state = 0}, + [6179] = {.lex_state = 0}, + [6180] = {.lex_state = 0}, + [6181] = {.lex_state = 0}, + [6182] = {.lex_state = 0}, + [6183] = {.lex_state = 0}, + [6184] = {.lex_state = 0}, + [6185] = {.lex_state = 261}, + [6186] = {.lex_state = 0}, + [6187] = {.lex_state = 0}, + [6188] = {.lex_state = 0}, + [6189] = {.lex_state = 261}, + [6190] = {.lex_state = 0}, + [6191] = {.lex_state = 0}, + [6192] = {.lex_state = 0}, + [6193] = {.lex_state = 0}, + [6194] = {.lex_state = 0}, + [6195] = {.lex_state = 0}, + [6196] = {.lex_state = 0}, + [6197] = {.lex_state = 0}, + [6198] = {.lex_state = 0}, + [6199] = {.lex_state = 261}, + [6200] = {.lex_state = 0}, + [6201] = {.lex_state = 81}, + [6202] = {.lex_state = 261}, + [6203] = {.lex_state = 0}, + [6204] = {.lex_state = 0}, + [6205] = {.lex_state = 261}, + [6206] = {.lex_state = 163}, + [6207] = {.lex_state = 261}, + [6208] = {.lex_state = 261, .external_lex_state = 2}, + [6209] = {.lex_state = 261}, + [6210] = {.lex_state = 0}, + [6211] = {.lex_state = 163}, + [6212] = {.lex_state = 0}, + [6213] = {.lex_state = 0}, + [6214] = {.lex_state = 0}, + [6215] = {.lex_state = 0}, + [6216] = {.lex_state = 0}, + [6217] = {.lex_state = 0}, + [6218] = {.lex_state = 261}, + [6219] = {.lex_state = 163}, + [6220] = {.lex_state = 261}, + [6221] = {.lex_state = 0}, + [6222] = {.lex_state = 261}, + [6223] = {.lex_state = 0}, + [6224] = {.lex_state = 0}, + [6225] = {.lex_state = 261}, + [6226] = {.lex_state = 261}, + [6227] = {.lex_state = 261}, + [6228] = {.lex_state = 0}, + [6229] = {.lex_state = 0}, + [6230] = {.lex_state = 0}, + [6231] = {.lex_state = 261}, + [6232] = {.lex_state = 0}, + [6233] = {.lex_state = 261}, + [6234] = {.lex_state = 0}, + [6235] = {.lex_state = 0}, + [6236] = {.lex_state = 0}, + [6237] = {.lex_state = 0}, + [6238] = {.lex_state = 0}, + [6239] = {.lex_state = 0}, + [6240] = {.lex_state = 261}, + [6241] = {.lex_state = 0}, + [6242] = {.lex_state = 0}, + [6243] = {.lex_state = 261}, + [6244] = {.lex_state = 0}, + [6245] = {.lex_state = 0}, + [6246] = {.lex_state = 261}, + [6247] = {.lex_state = 261}, + [6248] = {.lex_state = 0}, + [6249] = {.lex_state = 0}, + [6250] = {.lex_state = 0}, + [6251] = {.lex_state = 0}, + [6252] = {.lex_state = 0}, + [6253] = {.lex_state = 0}, + [6254] = {.lex_state = 163}, + [6255] = {.lex_state = 0}, + [6256] = {.lex_state = 261}, + [6257] = {.lex_state = 0}, + [6258] = {.lex_state = 261}, + [6259] = {.lex_state = 81}, + [6260] = {.lex_state = 82}, + [6261] = {.lex_state = 0}, + [6262] = {.lex_state = 0}, + [6263] = {.lex_state = 0}, + [6264] = {.lex_state = 0}, + [6265] = {.lex_state = 0}, + [6266] = {.lex_state = 0}, + [6267] = {.lex_state = 261}, + [6268] = {.lex_state = 0}, + [6269] = {.lex_state = 0}, + [6270] = {.lex_state = 0}, + [6271] = {.lex_state = 163}, + [6272] = {.lex_state = 0}, + [6273] = {.lex_state = 0}, + [6274] = {.lex_state = 0}, + [6275] = {.lex_state = 0}, + [6276] = {.lex_state = 0}, + [6277] = {.lex_state = 0}, + [6278] = {.lex_state = 0}, + [6279] = {.lex_state = 0}, + [6280] = {.lex_state = 261}, + [6281] = {.lex_state = 0}, + [6282] = {.lex_state = 0}, + [6283] = {.lex_state = 0}, + [6284] = {.lex_state = 261}, + [6285] = {.lex_state = 0}, + [6286] = {.lex_state = 0}, + [6287] = {.lex_state = 0}, + [6288] = {.lex_state = 261}, + [6289] = {.lex_state = 0}, + [6290] = {.lex_state = 82}, + [6291] = {.lex_state = 0}, + [6292] = {.lex_state = 261}, + [6293] = {.lex_state = 0}, + [6294] = {.lex_state = 0}, + [6295] = {.lex_state = 0}, + [6296] = {.lex_state = 0}, + [6297] = {.lex_state = 0}, + [6298] = {.lex_state = 0}, + [6299] = {.lex_state = 0}, + [6300] = {.lex_state = 0}, + [6301] = {.lex_state = 163}, + [6302] = {.lex_state = 0}, + [6303] = {.lex_state = 0}, + [6304] = {.lex_state = 261}, + [6305] = {.lex_state = 81}, + [6306] = {.lex_state = 0}, + [6307] = {.lex_state = 0}, + [6308] = {.lex_state = 0}, + [6309] = {.lex_state = 81}, + [6310] = {.lex_state = 0}, + [6311] = {.lex_state = 0}, + [6312] = {.lex_state = 0}, + [6313] = {.lex_state = 0}, + [6314] = {.lex_state = 261}, + [6315] = {.lex_state = 163}, + [6316] = {.lex_state = 261, .external_lex_state = 2}, + [6317] = {.lex_state = 0}, + [6318] = {.lex_state = 0}, + [6319] = {.lex_state = 0}, + [6320] = {.lex_state = 0}, + [6321] = {.lex_state = 0}, + [6322] = {.lex_state = 163}, + [6323] = {.lex_state = 0}, + [6324] = {.lex_state = 261}, + [6325] = {.lex_state = 0}, + [6326] = {.lex_state = 0}, + [6327] = {.lex_state = 0}, + [6328] = {.lex_state = 0}, + [6329] = {.lex_state = 163}, + [6330] = {.lex_state = 0}, + [6331] = {.lex_state = 81}, + [6332] = {.lex_state = 0}, + [6333] = {.lex_state = 0}, + [6334] = {.lex_state = 163}, + [6335] = {.lex_state = 261}, + [6336] = {.lex_state = 0}, + [6337] = {.lex_state = 0}, + [6338] = {.lex_state = 0}, + [6339] = {.lex_state = 0}, + [6340] = {.lex_state = 261}, + [6341] = {.lex_state = 0}, + [6342] = {.lex_state = 0}, + [6343] = {.lex_state = 0}, + [6344] = {.lex_state = 163}, + [6345] = {.lex_state = 0}, + [6346] = {.lex_state = 0}, + [6347] = {.lex_state = 0}, + [6348] = {.lex_state = 0}, + [6349] = {.lex_state = 163}, + [6350] = {.lex_state = 0}, + [6351] = {.lex_state = 261}, + [6352] = {.lex_state = 0}, + [6353] = {.lex_state = 0}, + [6354] = {.lex_state = 0}, + [6355] = {.lex_state = 0}, + [6356] = {.lex_state = 0}, + [6357] = {.lex_state = 0}, + [6358] = {.lex_state = 0}, + [6359] = {.lex_state = 0}, + [6360] = {.lex_state = 0}, + [6361] = {.lex_state = 261}, + [6362] = {.lex_state = 0}, + [6363] = {.lex_state = 0}, + [6364] = {.lex_state = 0}, + [6365] = {.lex_state = 261}, + [6366] = {.lex_state = 0}, + [6367] = {.lex_state = 0}, + [6368] = {.lex_state = 0}, + [6369] = {.lex_state = 0}, + [6370] = {.lex_state = 0}, + [6371] = {.lex_state = 0}, + [6372] = {.lex_state = 0}, + [6373] = {.lex_state = 0}, + [6374] = {.lex_state = 0}, + [6375] = {.lex_state = 0}, + [6376] = {.lex_state = 163}, + [6377] = {.lex_state = 0}, + [6378] = {.lex_state = 0}, + [6379] = {.lex_state = 0}, + [6380] = {.lex_state = 0}, + [6381] = {.lex_state = 0}, + [6382] = {.lex_state = 0}, + [6383] = {.lex_state = 0}, + [6384] = {.lex_state = 0}, + [6385] = {.lex_state = 0}, + [6386] = {.lex_state = 261}, + [6387] = {.lex_state = 163}, + [6388] = {.lex_state = 0}, + [6389] = {.lex_state = 0}, + [6390] = {.lex_state = 261}, + [6391] = {.lex_state = 163}, + [6392] = {.lex_state = 163}, + [6393] = {.lex_state = 163}, + [6394] = {.lex_state = 81}, + [6395] = {.lex_state = 0}, + [6396] = {.lex_state = 0}, + [6397] = {.lex_state = 0}, + [6398] = {.lex_state = 163}, + [6399] = {.lex_state = 0}, + [6400] = {.lex_state = 261}, + [6401] = {.lex_state = 261}, + [6402] = {.lex_state = 0}, + [6403] = {.lex_state = 0}, + [6404] = {.lex_state = 0}, + [6405] = {.lex_state = 0}, + [6406] = {.lex_state = 0}, + [6407] = {.lex_state = 0}, + [6408] = {.lex_state = 0}, + [6409] = {.lex_state = 0}, + [6410] = {.lex_state = 0}, + [6411] = {.lex_state = 81}, + [6412] = {.lex_state = 0}, + [6413] = {.lex_state = 0}, + [6414] = {.lex_state = 0}, + [6415] = {.lex_state = 0}, + [6416] = {.lex_state = 261}, + [6417] = {.lex_state = 261}, + [6418] = {.lex_state = 81}, + [6419] = {.lex_state = 261}, + [6420] = {.lex_state = 81}, + [6421] = {.lex_state = 0}, + [6422] = {.lex_state = 82}, + [6423] = {.lex_state = 0}, + [6424] = {.lex_state = 0}, + [6425] = {.lex_state = 0}, + [6426] = {.lex_state = 0}, + [6427] = {.lex_state = 0}, + [6428] = {.lex_state = 0}, + [6429] = {.lex_state = 0}, + [6430] = {.lex_state = 261}, + [6431] = {.lex_state = 163}, + [6432] = {.lex_state = 0}, + [6433] = {.lex_state = 163}, + [6434] = {.lex_state = 0}, + [6435] = {.lex_state = 82}, + [6436] = {.lex_state = 0}, + [6437] = {.lex_state = 0}, + [6438] = {.lex_state = 0}, + [6439] = {.lex_state = 261}, + [6440] = {.lex_state = 0}, + [6441] = {.lex_state = 0}, + [6442] = {.lex_state = 0}, + [6443] = {.lex_state = 0}, + [6444] = {.lex_state = 0}, + [6445] = {.lex_state = 0}, + [6446] = {.lex_state = 261}, + [6447] = {.lex_state = 261}, + [6448] = {.lex_state = 0}, + [6449] = {.lex_state = 163}, + [6450] = {.lex_state = 0}, + [6451] = {.lex_state = 0}, + [6452] = {.lex_state = 0}, + [6453] = {.lex_state = 82}, + [6454] = {.lex_state = 163}, + [6455] = {.lex_state = 163}, + [6456] = {.lex_state = 0}, + [6457] = {.lex_state = 0}, + [6458] = {.lex_state = 261}, + [6459] = {.lex_state = 163}, + [6460] = {.lex_state = 0}, + [6461] = {.lex_state = 0}, + [6462] = {.lex_state = 0}, + [6463] = {.lex_state = 0}, + [6464] = {.lex_state = 0}, + [6465] = {.lex_state = 0}, + [6466] = {.lex_state = 0}, + [6467] = {.lex_state = 0}, + [6468] = {.lex_state = 163}, + [6469] = {.lex_state = 0}, + [6470] = {.lex_state = 261}, + [6471] = {.lex_state = 0}, + [6472] = {.lex_state = 0}, + [6473] = {.lex_state = 0}, + [6474] = {.lex_state = 0}, + [6475] = {.lex_state = 0}, + [6476] = {.lex_state = 81}, + [6477] = {.lex_state = 0}, + [6478] = {.lex_state = 0}, + [6479] = {.lex_state = 0}, + [6480] = {.lex_state = 0}, + [6481] = {.lex_state = 0}, + [6482] = {.lex_state = 0}, + [6483] = {.lex_state = 0}, + [6484] = {.lex_state = 0}, + [6485] = {.lex_state = 0}, + [6486] = {.lex_state = 0}, + [6487] = {.lex_state = 0}, + [6488] = {.lex_state = 0}, + [6489] = {.lex_state = 0}, + [6490] = {.lex_state = 261}, + [6491] = {.lex_state = 261}, + [6492] = {.lex_state = 0}, + [6493] = {.lex_state = 0}, + [6494] = {.lex_state = 0}, + [6495] = {.lex_state = 0}, + [6496] = {.lex_state = 0}, + [6497] = {.lex_state = 0}, + [6498] = {.lex_state = 0}, + [6499] = {.lex_state = 0}, + [6500] = {.lex_state = 0}, + [6501] = {.lex_state = 0}, + [6502] = {.lex_state = 0}, + [6503] = {.lex_state = 0}, + [6504] = {.lex_state = 0}, + [6505] = {.lex_state = 0}, + [6506] = {.lex_state = 0}, + [6507] = {.lex_state = 261}, + [6508] = {.lex_state = 0}, + [6509] = {.lex_state = 261}, + [6510] = {.lex_state = 0}, + [6511] = {.lex_state = 163}, + [6512] = {.lex_state = 0}, + [6513] = {.lex_state = 0}, + [6514] = {.lex_state = 0}, + [6515] = {.lex_state = 0}, + [6516] = {.lex_state = 0}, + [6517] = {.lex_state = 163}, + [6518] = {.lex_state = 0}, + [6519] = {.lex_state = 0}, + [6520] = {.lex_state = 0}, + [6521] = {.lex_state = 82}, + [6522] = {.lex_state = 0}, + [6523] = {.lex_state = 0}, + [6524] = {.lex_state = 163}, + [6525] = {.lex_state = 261}, + [6526] = {.lex_state = 0}, + [6527] = {.lex_state = 261}, + [6528] = {.lex_state = 82}, + [6529] = {.lex_state = 0}, + [6530] = {.lex_state = 0}, + [6531] = {.lex_state = 0}, + [6532] = {.lex_state = 0}, + [6533] = {.lex_state = 0}, + [6534] = {.lex_state = 261}, + [6535] = {.lex_state = 163}, + [6536] = {.lex_state = 163}, + [6537] = {.lex_state = 0}, + [6538] = {.lex_state = 261}, + [6539] = {.lex_state = 81}, + [6540] = {.lex_state = 261}, + [6541] = {.lex_state = 0}, + [6542] = {.lex_state = 0}, + [6543] = {.lex_state = 261}, + [6544] = {.lex_state = 0}, + [6545] = {.lex_state = 261}, + [6546] = {.lex_state = 0}, + [6547] = {.lex_state = 261}, + [6548] = {.lex_state = 261}, + [6549] = {.lex_state = 0}, + [6550] = {.lex_state = 0}, + [6551] = {.lex_state = 261}, + [6552] = {.lex_state = 0}, + [6553] = {.lex_state = 261}, + [6554] = {.lex_state = 163}, + [6555] = {.lex_state = 0}, + [6556] = {.lex_state = 0}, + [6557] = {.lex_state = 0}, + [6558] = {.lex_state = 0}, + [6559] = {.lex_state = 0}, + [6560] = {.lex_state = 0}, + [6561] = {.lex_state = 0}, + [6562] = {.lex_state = 261}, + [6563] = {.lex_state = 0}, + [6564] = {.lex_state = 0}, + [6565] = {.lex_state = 0}, + [6566] = {.lex_state = 0}, + [6567] = {.lex_state = 0}, + [6568] = {.lex_state = 0}, + [6569] = {.lex_state = 261}, + [6570] = {.lex_state = 0}, + [6571] = {.lex_state = 0}, + [6572] = {.lex_state = 261}, + [6573] = {.lex_state = 0}, + [6574] = {.lex_state = 0}, + [6575] = {.lex_state = 0}, + [6576] = {.lex_state = 0}, + [6577] = {.lex_state = 163}, + [6578] = {.lex_state = 0}, + [6579] = {.lex_state = 163}, + [6580] = {.lex_state = 0}, + [6581] = {.lex_state = 261}, + [6582] = {.lex_state = 0}, + [6583] = {.lex_state = 0}, + [6584] = {.lex_state = 0}, + [6585] = {.lex_state = 0}, + [6586] = {.lex_state = 261}, + [6587] = {.lex_state = 0}, + [6588] = {.lex_state = 0}, + [6589] = {.lex_state = 0}, + [6590] = {.lex_state = 81}, + [6591] = {.lex_state = 0}, + [6592] = {.lex_state = 0}, + [6593] = {.lex_state = 0}, + [6594] = {.lex_state = 261}, + [6595] = {.lex_state = 0}, + [6596] = {.lex_state = 82}, + [6597] = {.lex_state = 261}, + [6598] = {.lex_state = 163}, + [6599] = {.lex_state = 261}, + [6600] = {.lex_state = 0}, + [6601] = {.lex_state = 0}, + [6602] = {.lex_state = 81}, + [6603] = {.lex_state = 261}, + [6604] = {.lex_state = 0}, + [6605] = {.lex_state = 0}, + [6606] = {.lex_state = 0}, + [6607] = {.lex_state = 0}, + [6608] = {.lex_state = 0}, + [6609] = {.lex_state = 81}, + [6610] = {.lex_state = 0}, + [6611] = {.lex_state = 0}, + [6612] = {.lex_state = 0}, + [6613] = {.lex_state = 0}, + [6614] = {.lex_state = 0}, + [6615] = {.lex_state = 0}, + [6616] = {.lex_state = 261}, + [6617] = {.lex_state = 0}, + [6618] = {.lex_state = 0}, + [6619] = {.lex_state = 0}, + [6620] = {.lex_state = 0}, + [6621] = {.lex_state = 139}, + [6622] = {.lex_state = 0}, + [6623] = {.lex_state = 163}, + [6624] = {.lex_state = 0}, + [6625] = {.lex_state = 0}, + [6626] = {.lex_state = 0}, + [6627] = {.lex_state = 0}, + [6628] = {.lex_state = 0}, + [6629] = {.lex_state = 0}, + [6630] = {.lex_state = 0, .external_lex_state = 2}, + [6631] = {.lex_state = 0}, + [6632] = {.lex_state = 139}, + [6633] = {.lex_state = 0}, + [6634] = {.lex_state = 163}, + [6635] = {.lex_state = 0}, + [6636] = {.lex_state = 0}, + [6637] = {.lex_state = 0}, + [6638] = {.lex_state = 0}, + [6639] = {.lex_state = 0}, + [6640] = {.lex_state = 0}, + [6641] = {.lex_state = 0}, + [6642] = {.lex_state = 0}, + [6643] = {.lex_state = 73}, + [6644] = {.lex_state = 163}, + [6645] = {.lex_state = 0}, + [6646] = {.lex_state = 0}, + [6647] = {.lex_state = 0}, + [6648] = {.lex_state = 0}, + [6649] = {.lex_state = 146}, + [6650] = {.lex_state = 163}, + [6651] = {.lex_state = 163}, + [6652] = {.lex_state = 139}, + [6653] = {.lex_state = 0}, + [6654] = {.lex_state = 0}, + [6655] = {.lex_state = 0}, + [6656] = {.lex_state = 0}, + [6657] = {.lex_state = 0}, + [6658] = {.lex_state = 163}, + [6659] = {.lex_state = 139}, + [6660] = {.lex_state = 0}, + [6661] = {.lex_state = 0}, + [6662] = {.lex_state = 0}, + [6663] = {.lex_state = 0}, + [6664] = {.lex_state = 0}, + [6665] = {.lex_state = 261}, + [6666] = {.lex_state = 0}, + [6667] = {.lex_state = 0}, + [6668] = {.lex_state = 0}, + [6669] = {.lex_state = 0}, + [6670] = {.lex_state = 0}, + [6671] = {.lex_state = 0}, + [6672] = {.lex_state = 163}, + [6673] = {.lex_state = 0}, + [6674] = {.lex_state = 0}, + [6675] = {.lex_state = 73}, + [6676] = {.lex_state = 163}, + [6677] = {.lex_state = 261}, + [6678] = {.lex_state = 261}, + [6679] = {.lex_state = 0}, + [6680] = {.lex_state = 0}, + [6681] = {.lex_state = 261}, + [6682] = {.lex_state = 0}, + [6683] = {.lex_state = 0}, + [6684] = {.lex_state = 0}, + [6685] = {.lex_state = 0}, + [6686] = {.lex_state = 163}, + [6687] = {.lex_state = 163}, + [6688] = {.lex_state = 163}, + [6689] = {.lex_state = 261}, + [6690] = {.lex_state = 0, .external_lex_state = 3}, + [6691] = {.lex_state = 0}, + [6692] = {.lex_state = 163}, + [6693] = {.lex_state = 0}, + [6694] = {.lex_state = 0}, + [6695] = {.lex_state = 0}, + [6696] = {.lex_state = 0}, + [6697] = {.lex_state = 261}, + [6698] = {.lex_state = 0}, + [6699] = {.lex_state = 139}, + [6700] = {.lex_state = 0}, + [6701] = {.lex_state = 0}, + [6702] = {.lex_state = 163}, + [6703] = {.lex_state = 139}, + [6704] = {.lex_state = 0}, + [6705] = {.lex_state = 0}, + [6706] = {.lex_state = 0}, + [6707] = {.lex_state = 73}, + [6708] = {.lex_state = 0, .external_lex_state = 2}, + [6709] = {.lex_state = 163}, + [6710] = {.lex_state = 163}, + [6711] = {.lex_state = 73}, + [6712] = {.lex_state = 0}, + [6713] = {.lex_state = 0}, + [6714] = {.lex_state = 0}, + [6715] = {.lex_state = 163}, + [6716] = {.lex_state = 0}, + [6717] = {.lex_state = 0}, + [6718] = {.lex_state = 0}, + [6719] = {.lex_state = 146}, + [6720] = {.lex_state = 0}, + [6721] = {.lex_state = 0}, + [6722] = {.lex_state = 0}, + [6723] = {.lex_state = 163}, + [6724] = {.lex_state = 138}, + [6725] = {.lex_state = 261}, + [6726] = {.lex_state = 0}, + [6727] = {.lex_state = 163}, + [6728] = {.lex_state = 163}, + [6729] = {.lex_state = 0}, + [6730] = {.lex_state = 163}, + [6731] = {.lex_state = 0}, + [6732] = {.lex_state = 0}, + [6733] = {.lex_state = 0}, + [6734] = {.lex_state = 261}, + [6735] = {.lex_state = 163}, + [6736] = {.lex_state = 0}, + [6737] = {.lex_state = 0}, + [6738] = {.lex_state = 0}, + [6739] = {.lex_state = 0}, + [6740] = {.lex_state = 0}, + [6741] = {.lex_state = 0}, + [6742] = {.lex_state = 163}, + [6743] = {.lex_state = 261}, + [6744] = {.lex_state = 73}, + [6745] = {.lex_state = 0}, + [6746] = {.lex_state = 0}, + [6747] = {.lex_state = 0}, + [6748] = {.lex_state = 0}, + [6749] = {.lex_state = 139}, + [6750] = {.lex_state = 0}, + [6751] = {.lex_state = 0}, + [6752] = {.lex_state = 0}, + [6753] = {.lex_state = 163}, + [6754] = {.lex_state = 0}, + [6755] = {.lex_state = 73}, + [6756] = {.lex_state = 0}, + [6757] = {.lex_state = 0}, + [6758] = {.lex_state = 0}, + [6759] = {.lex_state = 0}, + [6760] = {.lex_state = 0}, + [6761] = {.lex_state = 0}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 0}, + [6764] = {.lex_state = 0}, + [6765] = {.lex_state = 0}, + [6766] = {.lex_state = 0}, + [6767] = {.lex_state = 0}, + [6768] = {.lex_state = 163}, + [6769] = {.lex_state = 163}, + [6770] = {.lex_state = 0}, + [6771] = {.lex_state = 0}, + [6772] = {.lex_state = 0}, + [6773] = {.lex_state = 0, .external_lex_state = 2}, + [6774] = {.lex_state = 73}, + [6775] = {.lex_state = 163}, + [6776] = {.lex_state = 0}, + [6777] = {.lex_state = 0}, + [6778] = {.lex_state = 0}, + [6779] = {.lex_state = 0}, + [6780] = {.lex_state = 0}, + [6781] = {.lex_state = 0}, + [6782] = {.lex_state = 0}, + [6783] = {.lex_state = 0}, + [6784] = {.lex_state = 0}, + [6785] = {.lex_state = 163}, + [6786] = {.lex_state = 261}, + [6787] = {.lex_state = 146}, + [6788] = {.lex_state = 0}, + [6789] = {.lex_state = 0}, + [6790] = {.lex_state = 163}, + [6791] = {.lex_state = 0}, + [6792] = {.lex_state = 0}, + [6793] = {.lex_state = 163}, + [6794] = {.lex_state = 0}, + [6795] = {.lex_state = 0, .external_lex_state = 2}, + [6796] = {.lex_state = 0}, + [6797] = {.lex_state = 0}, + [6798] = {.lex_state = 0}, + [6799] = {.lex_state = 0}, + [6800] = {.lex_state = 0}, + [6801] = {.lex_state = 0, .external_lex_state = 3}, + [6802] = {.lex_state = 0}, + [6803] = {.lex_state = 0}, + [6804] = {.lex_state = 0}, + [6805] = {.lex_state = 0, .external_lex_state = 2}, + [6806] = {.lex_state = 163}, + [6807] = {.lex_state = 163}, + [6808] = {.lex_state = 0}, + [6809] = {.lex_state = 0}, + [6810] = {.lex_state = 163}, + [6811] = {.lex_state = 0}, + [6812] = {.lex_state = 0}, + [6813] = {.lex_state = 0}, + [6814] = {.lex_state = 0}, + [6815] = {.lex_state = 0}, + [6816] = {.lex_state = 0}, + [6817] = {.lex_state = 261}, + [6818] = {.lex_state = 0}, + [6819] = {.lex_state = 0}, + [6820] = {.lex_state = 73}, + [6821] = {.lex_state = 0}, + [6822] = {.lex_state = 0}, + [6823] = {.lex_state = 73}, + [6824] = {.lex_state = 163}, + [6825] = {.lex_state = 0}, + [6826] = {.lex_state = 261}, + [6827] = {.lex_state = 163}, + [6828] = {.lex_state = 0}, + [6829] = {.lex_state = 0}, + [6830] = {.lex_state = 0}, + [6831] = {.lex_state = 73}, + [6832] = {.lex_state = 0}, + [6833] = {.lex_state = 0}, + [6834] = {.lex_state = 261}, + [6835] = {.lex_state = 0}, + [6836] = {.lex_state = 0}, + [6837] = {.lex_state = 0}, + [6838] = {.lex_state = 0}, + [6839] = {.lex_state = 0}, + [6840] = {.lex_state = 0}, + [6841] = {.lex_state = 0}, + [6842] = {.lex_state = 261}, + [6843] = {.lex_state = 146}, + [6844] = {.lex_state = 0}, + [6845] = {.lex_state = 0}, + [6846] = {.lex_state = 261}, + [6847] = {.lex_state = 0}, + [6848] = {.lex_state = 0}, + [6849] = {.lex_state = 261}, + [6850] = {.lex_state = 0}, + [6851] = {.lex_state = 261}, + [6852] = {.lex_state = 0, .external_lex_state = 2}, + [6853] = {.lex_state = 0}, + [6854] = {.lex_state = 0}, + [6855] = {.lex_state = 0}, + [6856] = {.lex_state = 0}, + [6857] = {.lex_state = 0}, + [6858] = {.lex_state = 261}, + [6859] = {.lex_state = 0}, + [6860] = {.lex_state = 0}, + [6861] = {.lex_state = 139}, + [6862] = {.lex_state = 0}, + [6863] = {.lex_state = 0}, + [6864] = {.lex_state = 0}, + [6865] = {.lex_state = 0}, + [6866] = {.lex_state = 0}, + [6867] = {.lex_state = 0}, + [6868] = {.lex_state = 163}, + [6869] = {.lex_state = 0}, + [6870] = {.lex_state = 0}, + [6871] = {.lex_state = 163}, + [6872] = {.lex_state = 0}, + [6873] = {.lex_state = 261}, + [6874] = {.lex_state = 0}, + [6875] = {.lex_state = 163}, + [6876] = {.lex_state = 0}, + [6877] = {.lex_state = 0}, + [6878] = {.lex_state = 261}, + [6879] = {.lex_state = 0, .external_lex_state = 3}, + [6880] = {.lex_state = 73}, + [6881] = {.lex_state = 0}, + [6882] = {.lex_state = 0}, + [6883] = {.lex_state = 0}, + [6884] = {.lex_state = 139}, + [6885] = {.lex_state = 0}, + [6886] = {.lex_state = 0}, + [6887] = {.lex_state = 139}, + [6888] = {.lex_state = 163}, + [6889] = {.lex_state = 139}, + [6890] = {.lex_state = 140}, + [6891] = {.lex_state = 0}, + [6892] = {.lex_state = 0}, + [6893] = {.lex_state = 0}, + [6894] = {.lex_state = 138}, + [6895] = {.lex_state = 139}, + [6896] = {.lex_state = 0}, + [6897] = {.lex_state = 0}, + [6898] = {.lex_state = 139}, + [6899] = {.lex_state = 261}, + [6900] = {.lex_state = 0}, + [6901] = {.lex_state = 0}, + [6902] = {.lex_state = 163}, + [6903] = {.lex_state = 73}, + [6904] = {.lex_state = 0}, + [6905] = {.lex_state = 261}, + [6906] = {.lex_state = 0}, + [6907] = {.lex_state = 0}, + [6908] = {.lex_state = 0}, + [6909] = {.lex_state = 0}, + [6910] = {.lex_state = 0}, + [6911] = {.lex_state = 261}, + [6912] = {.lex_state = 261}, + [6913] = {.lex_state = 0}, + [6914] = {.lex_state = 0}, + [6915] = {.lex_state = 0}, + [6916] = {.lex_state = 0}, + [6917] = {.lex_state = 0}, + [6918] = {.lex_state = 0}, + [6919] = {.lex_state = 0}, + [6920] = {.lex_state = 0}, + [6921] = {.lex_state = 0}, + [6922] = {.lex_state = 0}, + [6923] = {.lex_state = 0}, + [6924] = {.lex_state = 73}, + [6925] = {.lex_state = 0}, + [6926] = {.lex_state = 0}, + [6927] = {.lex_state = 0}, + [6928] = {.lex_state = 73}, + [6929] = {.lex_state = 0}, + [6930] = {.lex_state = 139}, + [6931] = {.lex_state = 139}, + [6932] = {.lex_state = 261}, + [6933] = {.lex_state = 139}, + [6934] = {.lex_state = 0}, + [6935] = {.lex_state = 0}, + [6936] = {.lex_state = 138}, + [6937] = {.lex_state = 0}, + [6938] = {.lex_state = 139}, + [6939] = {.lex_state = 0}, + [6940] = {.lex_state = 0}, + [6941] = {.lex_state = 0}, + [6942] = {.lex_state = 0}, + [6943] = {.lex_state = 0}, + [6944] = {.lex_state = 0}, + [6945] = {.lex_state = 0}, + [6946] = {.lex_state = 0}, + [6947] = {.lex_state = 0}, + [6948] = {.lex_state = 0}, + [6949] = {.lex_state = 0}, + [6950] = {.lex_state = 0}, + [6951] = {.lex_state = 261}, + [6952] = {.lex_state = 0}, + [6953] = {.lex_state = 73}, + [6954] = {.lex_state = 0}, + [6955] = {.lex_state = 0}, + [6956] = {.lex_state = 0}, + [6957] = {.lex_state = 163}, + [6958] = {.lex_state = 0}, + [6959] = {.lex_state = 0}, + [6960] = {.lex_state = 0}, + [6961] = {.lex_state = 261}, + [6962] = {.lex_state = 0}, + [6963] = {.lex_state = 163}, + [6964] = {.lex_state = 261}, + [6965] = {.lex_state = 0}, + [6966] = {.lex_state = 73}, + [6967] = {.lex_state = 139}, + [6968] = {.lex_state = 0}, + [6969] = {.lex_state = 73}, + [6970] = {.lex_state = 0}, + [6971] = {.lex_state = 163}, + [6972] = {.lex_state = 0}, + [6973] = {.lex_state = 0}, + [6974] = {.lex_state = 0}, + [6975] = {.lex_state = 163}, + [6976] = {.lex_state = 0}, + [6977] = {.lex_state = 139}, + [6978] = {.lex_state = 0}, + [6979] = {.lex_state = 139}, + [6980] = {.lex_state = 139}, + [6981] = {.lex_state = 73}, + [6982] = {.lex_state = 0}, + [6983] = {.lex_state = 0}, + [6984] = {.lex_state = 163}, + [6985] = {.lex_state = 261}, + [6986] = {.lex_state = 138}, + [6987] = {.lex_state = 0}, + [6988] = {.lex_state = 0}, + [6989] = {.lex_state = 163}, + [6990] = {.lex_state = 0}, + [6991] = {.lex_state = 0}, + [6992] = {.lex_state = 0}, + [6993] = {.lex_state = 0}, + [6994] = {.lex_state = 0}, + [6995] = {.lex_state = 0}, + [6996] = {.lex_state = 0}, + [6997] = {.lex_state = 0}, + [6998] = {.lex_state = 0}, + [6999] = {.lex_state = 0}, + [7000] = {.lex_state = 0}, + [7001] = {.lex_state = 0}, + [7002] = {.lex_state = 163}, + [7003] = {.lex_state = 261}, + [7004] = {.lex_state = 0}, + [7005] = {.lex_state = 0}, + [7006] = {.lex_state = 0}, + [7007] = {.lex_state = 0}, + [7008] = {.lex_state = 0}, + [7009] = {.lex_state = 0}, + [7010] = {.lex_state = 261}, + [7011] = {.lex_state = 163}, + [7012] = {.lex_state = 261}, + [7013] = {.lex_state = 73}, + [7014] = {.lex_state = 0}, + [7015] = {.lex_state = 261}, + [7016] = {.lex_state = 139}, + [7017] = {.lex_state = 163}, + [7018] = {.lex_state = 261}, + [7019] = {.lex_state = 73}, + [7020] = {.lex_state = 0}, + [7021] = {.lex_state = 261}, + [7022] = {.lex_state = 0}, + [7023] = {.lex_state = 139}, + [7024] = {.lex_state = 163}, + [7025] = {.lex_state = 0}, + [7026] = {.lex_state = 261}, + [7027] = {.lex_state = 0}, + [7028] = {.lex_state = 0}, + [7029] = {.lex_state = 0}, + [7030] = {.lex_state = 0}, + [7031] = {.lex_state = 261}, + [7032] = {.lex_state = 0, .external_lex_state = 3}, + [7033] = {.lex_state = 163}, + [7034] = {.lex_state = 0}, + [7035] = {.lex_state = 146}, + [7036] = {.lex_state = 0}, + [7037] = {.lex_state = 0}, + [7038] = {.lex_state = 0}, + [7039] = {.lex_state = 261}, + [7040] = {.lex_state = 163}, + [7041] = {.lex_state = 0}, + [7042] = {.lex_state = 0}, + [7043] = {.lex_state = 163}, + [7044] = {.lex_state = 0}, + [7045] = {.lex_state = 163}, + [7046] = {.lex_state = 73}, + [7047] = {.lex_state = 73}, + [7048] = {.lex_state = 261}, + [7049] = {.lex_state = 0}, + [7050] = {.lex_state = 139}, + [7051] = {.lex_state = 0}, + [7052] = {.lex_state = 163}, + [7053] = {.lex_state = 73}, + [7054] = {.lex_state = 0}, + [7055] = {.lex_state = 73}, + [7056] = {.lex_state = 0}, + [7057] = {.lex_state = 163}, + [7058] = {.lex_state = 261}, + [7059] = {.lex_state = 0}, + [7060] = {.lex_state = 163}, + [7061] = {.lex_state = 163}, + [7062] = {.lex_state = 0}, + [7063] = {.lex_state = 261}, + [7064] = {.lex_state = 261}, + [7065] = {.lex_state = 261}, + [7066] = {.lex_state = 0, .external_lex_state = 3}, + [7067] = {.lex_state = 139}, + [7068] = {.lex_state = 0}, + [7069] = {.lex_state = 261}, + [7070] = {.lex_state = 139}, + [7071] = {.lex_state = 0}, + [7072] = {.lex_state = 0}, + [7073] = {.lex_state = 0}, + [7074] = {.lex_state = 0}, + [7075] = {.lex_state = 0}, + [7076] = {.lex_state = 139}, + [7077] = {.lex_state = 163}, + [7078] = {.lex_state = 0}, + [7079] = {.lex_state = 0}, + [7080] = {.lex_state = 0}, + [7081] = {.lex_state = 0}, + [7082] = {.lex_state = 0}, + [7083] = {.lex_state = 0}, + [7084] = {.lex_state = 0}, + [7085] = {.lex_state = 0}, + [7086] = {.lex_state = 0}, + [7087] = {.lex_state = 261}, + [7088] = {.lex_state = 0}, + [7089] = {.lex_state = 0}, + [7090] = {.lex_state = 163}, + [7091] = {.lex_state = 146}, + [7092] = {.lex_state = 261}, + [7093] = {.lex_state = 261}, + [7094] = {.lex_state = 261}, + [7095] = {.lex_state = 0, .external_lex_state = 3}, + [7096] = {.lex_state = 138}, + [7097] = {.lex_state = 0}, + [7098] = {.lex_state = 261}, + [7099] = {.lex_state = 0}, + [7100] = {.lex_state = 163}, + [7101] = {.lex_state = 0}, + [7102] = {.lex_state = 261}, + [7103] = {.lex_state = 0}, + [7104] = {.lex_state = 261}, + [7105] = {.lex_state = 0}, + [7106] = {.lex_state = 0}, + [7107] = {.lex_state = 261}, + [7108] = {.lex_state = 0}, + [7109] = {.lex_state = 261}, + [7110] = {.lex_state = 0, .external_lex_state = 3}, + [7111] = {.lex_state = 261}, + [7112] = {.lex_state = 0}, + [7113] = {.lex_state = 0}, + [7114] = {.lex_state = 0}, + [7115] = {.lex_state = 261}, + [7116] = {.lex_state = 0}, + [7117] = {.lex_state = 0}, + [7118] = {.lex_state = 0}, + [7119] = {.lex_state = 261}, + [7120] = {.lex_state = 261}, + [7121] = {.lex_state = 0}, + [7122] = {.lex_state = 73}, + [7123] = {.lex_state = 261}, + [7124] = {.lex_state = 73}, + [7125] = {.lex_state = 261}, + [7126] = {.lex_state = 0}, + [7127] = {.lex_state = 261}, + [7128] = {.lex_state = 0}, + [7129] = {.lex_state = 0}, + [7130] = {.lex_state = 261}, + [7131] = {.lex_state = 261}, + [7132] = {.lex_state = 163}, + [7133] = {.lex_state = 163}, + [7134] = {.lex_state = 0}, + [7135] = {.lex_state = 0}, + [7136] = {.lex_state = 0}, + [7137] = {.lex_state = 0}, + [7138] = {.lex_state = 261}, + [7139] = {.lex_state = 0}, + [7140] = {.lex_state = 146}, + [7141] = {.lex_state = 261}, + [7142] = {.lex_state = 0}, + [7143] = {.lex_state = 0}, + [7144] = {.lex_state = 139}, + [7145] = {.lex_state = 261}, + [7146] = {.lex_state = 139}, + [7147] = {.lex_state = 195}, + [7148] = {.lex_state = 163}, + [7149] = {.lex_state = 0}, + [7150] = {.lex_state = 0}, + [7151] = {.lex_state = 0}, + [7152] = {.lex_state = 0, .external_lex_state = 3}, + [7153] = {.lex_state = 0}, + [7154] = {.lex_state = 0}, + [7155] = {.lex_state = 0}, + [7156] = {.lex_state = 0}, + [7157] = {.lex_state = 0}, + [7158] = {.lex_state = 0}, + [7159] = {.lex_state = 0}, + [7160] = {.lex_state = 261}, + [7161] = {.lex_state = 0}, + [7162] = {.lex_state = 261}, + [7163] = {.lex_state = 261}, + [7164] = {.lex_state = 163}, + [7165] = {.lex_state = 0}, + [7166] = {.lex_state = 261}, + [7167] = {.lex_state = 146}, + [7168] = {.lex_state = 0}, + [7169] = {.lex_state = 261}, + [7170] = {.lex_state = 154}, + [7171] = {.lex_state = 163}, + [7172] = {.lex_state = 0}, + [7173] = {.lex_state = 0, .external_lex_state = 3}, + [7174] = {.lex_state = 0}, + [7175] = {.lex_state = 0}, + [7176] = {.lex_state = 0}, + [7177] = {.lex_state = 0}, + [7178] = {.lex_state = 261}, + [7179] = {.lex_state = 261}, + [7180] = {.lex_state = 163}, + [7181] = {.lex_state = 0}, + [7182] = {.lex_state = 0}, + [7183] = {.lex_state = 0}, + [7184] = {.lex_state = 73}, + [7185] = {.lex_state = 163}, + [7186] = {.lex_state = 0}, + [7187] = {.lex_state = 0, .external_lex_state = 3}, + [7188] = {.lex_state = 139}, + [7189] = {.lex_state = 0}, + [7190] = {.lex_state = 139}, + [7191] = {.lex_state = 0}, + [7192] = {.lex_state = 261}, + [7193] = {.lex_state = 261}, + [7194] = {.lex_state = 163}, + [7195] = {.lex_state = 163}, + [7196] = {.lex_state = 163}, + [7197] = {.lex_state = 0}, + [7198] = {.lex_state = 0, .external_lex_state = 3}, + [7199] = {.lex_state = 0}, + [7200] = {.lex_state = 261}, + [7201] = {.lex_state = 163}, + [7202] = {.lex_state = 0}, + [7203] = {.lex_state = 163}, + [7204] = {.lex_state = 0, .external_lex_state = 3}, + [7205] = {.lex_state = 261}, + [7206] = {.lex_state = 163}, + [7207] = {.lex_state = 163}, + [7208] = {.lex_state = 163}, + [7209] = {.lex_state = 261}, + [7210] = {.lex_state = 261}, + [7211] = {.lex_state = 0}, + [7212] = {.lex_state = 0}, + [7213] = {.lex_state = 0}, + [7214] = {.lex_state = 0}, + [7215] = {.lex_state = 0}, + [7216] = {.lex_state = 0}, + [7217] = {.lex_state = 0}, + [7218] = {.lex_state = 0}, + [7219] = {.lex_state = 261}, + [7220] = {.lex_state = 0}, + [7221] = {.lex_state = 139}, + [7222] = {.lex_state = 139}, + [7223] = {.lex_state = 261}, + [7224] = {.lex_state = 0}, + [7225] = {.lex_state = 261}, + [7226] = {.lex_state = 163}, + [7227] = {.lex_state = 261}, + [7228] = {.lex_state = 139}, + [7229] = {.lex_state = 261}, + [7230] = {.lex_state = 163}, +}; + +enum { + ts_external_token_raw_string_delimiter = 0, + ts_external_token_raw_string_content = 1, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_raw_string_delimiter] = sym_raw_string_delimiter, + [ts_external_token_raw_string_content] = sym_raw_string_content, +}; + +static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_raw_string_delimiter] = true, + [ts_external_token_raw_string_content] = true, + }, + [2] = { + [ts_external_token_raw_string_delimiter] = true, + }, + [3] = { + [ts_external_token_raw_string_content] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [aux_sym_preproc_include_token1] = ACTIONS(1), + [aux_sym_preproc_def_token1] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_if_token1] = ACTIONS(1), + [aux_sym_preproc_if_token2] = ACTIONS(1), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1), + [aux_sym_preproc_else_token1] = ACTIONS(1), + [aux_sym_preproc_elif_token1] = ACTIONS(1), + [sym_preproc_directive] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), + [anon_sym_defined] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym___attribute__] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1), + [anon_sym___declspec] = ACTIONS(1), + [anon_sym___based] = ACTIONS(1), + [anon_sym___cdecl] = ACTIONS(1), + [anon_sym___clrcall] = ACTIONS(1), + [anon_sym___stdcall] = ACTIONS(1), + [anon_sym___fastcall] = ACTIONS(1), + [anon_sym___thiscall] = ACTIONS(1), + [anon_sym___vectorcall] = ACTIONS(1), + [sym_ms_restrict_modifier] = ACTIONS(1), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(1), + [sym_ms_signed_ptr_modifier] = ACTIONS(1), + [anon_sym__unaligned] = ACTIONS(1), + [anon_sym___unaligned] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_thread_local] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym_mutable] = ACTIONS(1), + [anon_sym_constexpr] = ACTIONS(1), + [anon_sym_constinit] = ACTIONS(1), + [anon_sym_consteval] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_goto] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_and_eq] = ACTIONS(1), + [anon_sym_or_eq] = ACTIONS(1), + [anon_sym_xor_eq] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_compl] = ACTIONS(1), + [anon_sym_LT_EQ_GT] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_bitor] = ACTIONS(1), + [anon_sym_xor] = ACTIONS(1), + [anon_sym_bitand] = ACTIONS(1), + [anon_sym_not_eq] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [anon_sym_L_SQUOTE] = ACTIONS(1), + [anon_sym_u_SQUOTE] = ACTIONS(1), + [anon_sym_U_SQUOTE] = ACTIONS(1), + [anon_sym_u8_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_L_DQUOTE] = ACTIONS(1), + [anon_sym_u_DQUOTE] = ACTIONS(1), + [anon_sym_U_DQUOTE] = ACTIONS(1), + [anon_sym_u8_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_null] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1), + [anon_sym_decltype] = ACTIONS(1), + [anon_sym_final] = ACTIONS(1), + [anon_sym_override] = ACTIONS(1), + [anon_sym_virtual] = ACTIONS(1), + [anon_sym_explicit] = ACTIONS(1), + [anon_sym_public] = ACTIONS(1), + [anon_sym_private] = ACTIONS(1), + [anon_sym_protected] = ACTIONS(1), + [anon_sym_typename] = ACTIONS(1), + [anon_sym_template] = ACTIONS(1), + [anon_sym_GT2] = ACTIONS(1), + [anon_sym_operator] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_delete] = ACTIONS(1), + [anon_sym_friend] = ACTIONS(1), + [anon_sym_noexcept] = ACTIONS(1), + [anon_sym_throw] = ACTIONS(1), + [anon_sym_namespace] = ACTIONS(1), + [anon_sym_using] = ACTIONS(1), + [anon_sym_static_assert] = ACTIONS(1), + [anon_sym_concept] = ACTIONS(1), + [anon_sym_co_return] = ACTIONS(1), + [anon_sym_co_yield] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_R_DQUOTE] = ACTIONS(1), + [anon_sym_LR_DQUOTE] = ACTIONS(1), + [anon_sym_uR_DQUOTE] = ACTIONS(1), + [anon_sym_UR_DQUOTE] = ACTIONS(1), + [anon_sym_u8R_DQUOTE] = ACTIONS(1), + [anon_sym_co_await] = ACTIONS(1), + [anon_sym_new] = ACTIONS(1), + [anon_sym_requires] = ACTIONS(1), + [anon_sym_DOT_STAR] = ACTIONS(1), + [anon_sym_DASH_GT_STAR] = ACTIONS(1), + [anon_sym_LBRACK_RBRACK] = ACTIONS(1), + [sym_this] = ACTIONS(1), + [sym_nullptr] = ACTIONS(1), + [sym_raw_string_delimiter] = ACTIONS(1), + [sym_raw_string_content] = ACTIONS(1), + }, + [1] = { + [sym_translation_unit] = STATE(6996), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4249), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2160), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5028), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1957), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(61), + [sym_co_return_statement] = STATE(61), + [sym_co_yield_statement] = STATE(61), + [sym_throw_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(37), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(115), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(125), + [anon_sym_using] = ACTIONS(127), + [anon_sym_static_assert] = ACTIONS(129), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [2] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(35), + [sym_namespace_alias_definition] = STATE(35), + [sym_using_declaration] = STATE(35), + [sym_alias_declaration] = STATE(35), + [sym_static_assert_declaration] = STATE(35), + [sym_concept_definition] = STATE(35), + [sym_for_range_loop] = STATE(35), + [sym_co_return_statement] = STATE(35), + [sym_co_yield_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [3] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [4] = { + [sym_preproc_include] = STATE(71), + [sym_preproc_def] = STATE(71), + [sym_preproc_function_def] = STATE(71), + [sym_preproc_call] = STATE(71), + [sym_preproc_if] = STATE(71), + [sym_preproc_ifdef] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(71), + [sym_namespace_alias_definition] = STATE(71), + [sym_using_declaration] = STATE(71), + [sym_alias_declaration] = STATE(71), + [sym_static_assert_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(71), + [sym_co_return_statement] = STATE(71), + [sym_co_yield_statement] = STATE(71), + [sym_throw_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [5] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(217), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [6] = { + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(48), + [sym_co_return_statement] = STATE(48), + [sym_co_yield_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(219), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [7] = { + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(39), + [sym_co_return_statement] = STATE(39), + [sym_co_yield_statement] = STATE(39), + [sym_throw_statement] = STATE(39), + [sym_try_statement] = STATE(39), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [8] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [9] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(3581), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [10] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7144), + [sym_preproc_elif] = STATE(7144), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [11] = { + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(7067), + [sym_preproc_elif] = STATE(7067), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(17), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(17), + [sym_template_instantiation] = STATE(17), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(17), + [sym_operator_cast_declaration] = STATE(17), + [sym_constructor_or_destructor_definition] = STATE(17), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(17), + [sym_namespace_alias_definition] = STATE(17), + [sym_using_declaration] = STATE(17), + [sym_alias_declaration] = STATE(17), + [sym_static_assert_declaration] = STATE(17), + [sym_concept_definition] = STATE(17), + [sym_for_range_loop] = STATE(17), + [sym_co_return_statement] = STATE(17), + [sym_co_yield_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [12] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6659), + [sym_preproc_elif] = STATE(6659), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [13] = { + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(7050), + [sym_preproc_elif] = STATE(7050), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(14), + [sym_labeled_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_switch_statement] = STATE(14), + [sym_case_statement] = STATE(14), + [sym_while_statement] = STATE(14), + [sym_do_statement] = STATE(14), + [sym_for_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_break_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_goto_statement] = STATE(14), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(14), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(14), + [sym_template_instantiation] = STATE(14), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(14), + [sym_operator_cast_declaration] = STATE(14), + [sym_constructor_or_destructor_definition] = STATE(14), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(14), + [sym_namespace_alias_definition] = STATE(14), + [sym_using_declaration] = STATE(14), + [sym_alias_declaration] = STATE(14), + [sym_static_assert_declaration] = STATE(14), + [sym_concept_definition] = STATE(14), + [sym_for_range_loop] = STATE(14), + [sym_co_return_statement] = STATE(14), + [sym_co_yield_statement] = STATE(14), + [sym_throw_statement] = STATE(14), + [sym_try_statement] = STATE(14), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [14] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6977), + [sym_preproc_elif] = STATE(6977), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(299), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [15] = { + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(6980), + [sym_preproc_elif] = STATE(6980), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(18), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(18), + [sym_template_instantiation] = STATE(18), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(18), + [sym_operator_cast_declaration] = STATE(18), + [sym_constructor_or_destructor_definition] = STATE(18), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(18), + [sym_namespace_alias_definition] = STATE(18), + [sym_using_declaration] = STATE(18), + [sym_alias_declaration] = STATE(18), + [sym_static_assert_declaration] = STATE(18), + [sym_concept_definition] = STATE(18), + [sym_for_range_loop] = STATE(18), + [sym_co_return_statement] = STATE(18), + [sym_co_yield_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [16] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6699), + [sym_preproc_elif] = STATE(6699), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [17] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7228), + [sym_preproc_elif] = STATE(7228), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [18] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6933), + [sym_preproc_elif] = STATE(6933), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [19] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6938), + [sym_preproc_elif] = STATE(6938), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [20] = { + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(6749), + [sym_preproc_elif] = STATE(6749), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(16), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(16), + [sym_template_instantiation] = STATE(16), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(16), + [sym_operator_cast_declaration] = STATE(16), + [sym_constructor_or_destructor_definition] = STATE(16), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(16), + [sym_namespace_alias_definition] = STATE(16), + [sym_using_declaration] = STATE(16), + [sym_alias_declaration] = STATE(16), + [sym_static_assert_declaration] = STATE(16), + [sym_concept_definition] = STATE(16), + [sym_for_range_loop] = STATE(16), + [sym_co_return_statement] = STATE(16), + [sym_co_yield_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [21] = { + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(6884), + [sym_preproc_elif] = STATE(6884), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(25), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(25), + [sym_namespace_alias_definition] = STATE(25), + [sym_using_declaration] = STATE(25), + [sym_alias_declaration] = STATE(25), + [sym_static_assert_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(25), + [sym_co_return_statement] = STATE(25), + [sym_co_yield_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [22] = { + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_call] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(6930), + [sym_preproc_elif] = STATE(6930), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_case_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(10), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(10), + [sym_template_instantiation] = STATE(10), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(10), + [sym_operator_cast_declaration] = STATE(10), + [sym_constructor_or_destructor_definition] = STATE(10), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(10), + [sym_namespace_alias_definition] = STATE(10), + [sym_using_declaration] = STATE(10), + [sym_alias_declaration] = STATE(10), + [sym_static_assert_declaration] = STATE(10), + [sym_concept_definition] = STATE(10), + [sym_for_range_loop] = STATE(10), + [sym_co_return_statement] = STATE(10), + [sym_co_yield_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [23] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6652), + [sym_preproc_elif] = STATE(6652), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [24] = { + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(6621), + [sym_preproc_elif] = STATE(6621), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(19), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(19), + [sym_template_instantiation] = STATE(19), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(19), + [sym_operator_cast_declaration] = STATE(19), + [sym_constructor_or_destructor_definition] = STATE(19), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(19), + [sym_namespace_alias_definition] = STATE(19), + [sym_using_declaration] = STATE(19), + [sym_alias_declaration] = STATE(19), + [sym_static_assert_declaration] = STATE(19), + [sym_concept_definition] = STATE(19), + [sym_for_range_loop] = STATE(19), + [sym_co_return_statement] = STATE(19), + [sym_co_yield_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(319), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [25] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6967), + [sym_preproc_elif] = STATE(6967), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [26] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(6703), + [sym_preproc_elif] = STATE(6703), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(23), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(23), + [sym_template_instantiation] = STATE(23), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(23), + [sym_operator_cast_declaration] = STATE(23), + [sym_constructor_or_destructor_definition] = STATE(23), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(23), + [sym_namespace_alias_definition] = STATE(23), + [sym_using_declaration] = STATE(23), + [sym_alias_declaration] = STATE(23), + [sym_static_assert_declaration] = STATE(23), + [sym_concept_definition] = STATE(23), + [sym_for_range_loop] = STATE(23), + [sym_co_return_statement] = STATE(23), + [sym_co_yield_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [27] = { + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(7188), + [sym_preproc_elif] = STATE(7188), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(12), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(12), + [sym_template_instantiation] = STATE(12), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(12), + [sym_operator_cast_declaration] = STATE(12), + [sym_constructor_or_destructor_definition] = STATE(12), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(12), + [sym_namespace_alias_definition] = STATE(12), + [sym_using_declaration] = STATE(12), + [sym_alias_declaration] = STATE(12), + [sym_static_assert_declaration] = STATE(12), + [sym_concept_definition] = STATE(12), + [sym_for_range_loop] = STATE(12), + [sym_co_return_statement] = STATE(12), + [sym_co_yield_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [28] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5053), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1979), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1979), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1979), + [sym_identifier] = ACTIONS(327), + [aux_sym_preproc_include_token1] = ACTIONS(330), + [aux_sym_preproc_def_token1] = ACTIONS(333), + [aux_sym_preproc_if_token1] = ACTIONS(336), + [aux_sym_preproc_if_token2] = ACTIONS(339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(339), + [aux_sym_preproc_elif_token1] = ACTIONS(339), + [sym_preproc_directive] = ACTIONS(344), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(368), + [anon_sym_typedef] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(374), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(425), + [anon_sym_switch] = ACTIONS(428), + [anon_sym_case] = ACTIONS(431), + [anon_sym_default] = ACTIONS(434), + [anon_sym_while] = ACTIONS(437), + [anon_sym_do] = ACTIONS(440), + [anon_sym_for] = ACTIONS(443), + [anon_sym_return] = ACTIONS(446), + [anon_sym_break] = ACTIONS(449), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_goto] = ACTIONS(455), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(491), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(503), + [anon_sym_namespace] = ACTIONS(506), + [anon_sym_using] = ACTIONS(509), + [anon_sym_static_assert] = ACTIONS(512), + [anon_sym_concept] = ACTIONS(515), + [anon_sym_co_return] = ACTIONS(518), + [anon_sym_co_yield] = ACTIONS(521), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + }, + [29] = { + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(43), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(43), + [sym_template_instantiation] = STATE(43), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(43), + [sym_operator_cast_declaration] = STATE(43), + [sym_constructor_or_destructor_definition] = STATE(43), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(43), + [sym_namespace_alias_definition] = STATE(43), + [sym_using_declaration] = STATE(43), + [sym_alias_declaration] = STATE(43), + [sym_static_assert_declaration] = STATE(43), + [sym_concept_definition] = STATE(43), + [sym_for_range_loop] = STATE(43), + [sym_co_return_statement] = STATE(43), + [sym_co_yield_statement] = STATE(43), + [sym_throw_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [30] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [31] = { + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(39), + [sym_co_return_statement] = STATE(39), + [sym_co_yield_statement] = STATE(39), + [sym_throw_statement] = STATE(39), + [sym_try_statement] = STATE(39), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [32] = { + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(76), + [sym_namespace_alias_definition] = STATE(76), + [sym_using_declaration] = STATE(76), + [sym_alias_declaration] = STATE(76), + [sym_static_assert_declaration] = STATE(76), + [sym_concept_definition] = STATE(76), + [sym_for_range_loop] = STATE(76), + [sym_co_return_statement] = STATE(76), + [sym_co_yield_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_try_statement] = STATE(76), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(76), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [33] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [34] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(33), + [sym_co_return_statement] = STATE(33), + [sym_co_yield_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [35] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [36] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(35), + [sym_namespace_alias_definition] = STATE(35), + [sym_using_declaration] = STATE(35), + [sym_alias_declaration] = STATE(35), + [sym_static_assert_declaration] = STATE(35), + [sym_concept_definition] = STATE(35), + [sym_for_range_loop] = STATE(35), + [sym_co_return_statement] = STATE(35), + [sym_co_yield_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [37] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [38] = { + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4248), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2166), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5083), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3412), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(49), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1980), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1980), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(49), + [sym_namespace_alias_definition] = STATE(49), + [sym_using_declaration] = STATE(49), + [sym_alias_declaration] = STATE(49), + [sym_static_assert_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(49), + [sym_co_return_statement] = STATE(49), + [sym_co_yield_statement] = STATE(49), + [sym_throw_statement] = STATE(49), + [sym_try_statement] = STATE(49), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1980), + [sym_identifier] = ACTIONS(556), + [aux_sym_preproc_include_token1] = ACTIONS(558), + [aux_sym_preproc_def_token1] = ACTIONS(560), + [aux_sym_preproc_if_token1] = ACTIONS(562), + [aux_sym_preproc_if_token2] = ACTIONS(564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(566), + [sym_preproc_directive] = ACTIONS(568), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(574), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(600), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_namespace] = ACTIONS(606), + [anon_sym_using] = ACTIONS(608), + [anon_sym_static_assert] = ACTIONS(610), + [anon_sym_concept] = ACTIONS(612), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [39] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [40] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [41] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [42] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [43] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [44] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(46), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(46), + [sym_template_instantiation] = STATE(46), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(46), + [sym_operator_cast_declaration] = STATE(46), + [sym_constructor_or_destructor_definition] = STATE(46), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(46), + [sym_namespace_alias_definition] = STATE(46), + [sym_using_declaration] = STATE(46), + [sym_alias_declaration] = STATE(46), + [sym_static_assert_declaration] = STATE(46), + [sym_concept_definition] = STATE(46), + [sym_for_range_loop] = STATE(46), + [sym_co_return_statement] = STATE(46), + [sym_co_yield_statement] = STATE(46), + [sym_throw_statement] = STATE(46), + [sym_try_statement] = STATE(46), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [45] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [46] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [47] = { + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(45), + [sym_co_return_statement] = STATE(45), + [sym_co_yield_statement] = STATE(45), + [sym_throw_statement] = STATE(45), + [sym_try_statement] = STATE(45), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [48] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [49] = { + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_preproc_if] = STATE(55), + [sym_preproc_ifdef] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4248), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2166), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5083), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3412), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_case_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1980), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1980), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(55), + [sym_namespace_alias_definition] = STATE(55), + [sym_using_declaration] = STATE(55), + [sym_alias_declaration] = STATE(55), + [sym_static_assert_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(55), + [sym_co_return_statement] = STATE(55), + [sym_co_yield_statement] = STATE(55), + [sym_throw_statement] = STATE(55), + [sym_try_statement] = STATE(55), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1980), + [sym_identifier] = ACTIONS(556), + [aux_sym_preproc_include_token1] = ACTIONS(558), + [aux_sym_preproc_def_token1] = ACTIONS(560), + [aux_sym_preproc_if_token1] = ACTIONS(562), + [aux_sym_preproc_if_token2] = ACTIONS(638), + [aux_sym_preproc_ifdef_token1] = ACTIONS(566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(566), + [sym_preproc_directive] = ACTIONS(568), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(574), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(600), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_namespace] = ACTIONS(606), + [anon_sym_using] = ACTIONS(608), + [anon_sym_static_assert] = ACTIONS(610), + [anon_sym_concept] = ACTIONS(612), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [50] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(640), + [aux_sym_preproc_include_token1] = ACTIONS(643), + [aux_sym_preproc_def_token1] = ACTIONS(646), + [aux_sym_preproc_if_token1] = ACTIONS(649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(652), + [sym_preproc_directive] = ACTIONS(655), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(658), + [anon_sym_typedef] = ACTIONS(661), + [anon_sym_extern] = ACTIONS(664), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(675), + [anon_sym_case] = ACTIONS(678), + [anon_sym_default] = ACTIONS(681), + [anon_sym_while] = ACTIONS(684), + [anon_sym_do] = ACTIONS(687), + [anon_sym_for] = ACTIONS(690), + [anon_sym_return] = ACTIONS(693), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(699), + [anon_sym_goto] = ACTIONS(702), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(705), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(708), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(711), + [anon_sym_namespace] = ACTIONS(714), + [anon_sym_using] = ACTIONS(717), + [anon_sym_static_assert] = ACTIONS(720), + [anon_sym_concept] = ACTIONS(723), + [anon_sym_co_return] = ACTIONS(726), + [anon_sym_co_yield] = ACTIONS(729), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + }, + [51] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [52] = { + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(48), + [sym_co_return_statement] = STATE(48), + [sym_co_yield_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [53] = { + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [54] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [55] = { + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_preproc_if] = STATE(55), + [sym_preproc_ifdef] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4248), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2166), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5083), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3412), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_case_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1980), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1980), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(55), + [sym_namespace_alias_definition] = STATE(55), + [sym_using_declaration] = STATE(55), + [sym_alias_declaration] = STATE(55), + [sym_static_assert_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(55), + [sym_co_return_statement] = STATE(55), + [sym_co_yield_statement] = STATE(55), + [sym_throw_statement] = STATE(55), + [sym_try_statement] = STATE(55), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1980), + [sym_identifier] = ACTIONS(740), + [aux_sym_preproc_include_token1] = ACTIONS(743), + [aux_sym_preproc_def_token1] = ACTIONS(746), + [aux_sym_preproc_if_token1] = ACTIONS(749), + [aux_sym_preproc_if_token2] = ACTIONS(339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(752), + [sym_preproc_directive] = ACTIONS(755), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_typedef] = ACTIONS(761), + [anon_sym_extern] = ACTIONS(764), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(770), + [anon_sym_switch] = ACTIONS(773), + [anon_sym_case] = ACTIONS(776), + [anon_sym_default] = ACTIONS(779), + [anon_sym_while] = ACTIONS(782), + [anon_sym_do] = ACTIONS(785), + [anon_sym_for] = ACTIONS(788), + [anon_sym_return] = ACTIONS(791), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(797), + [anon_sym_goto] = ACTIONS(800), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(803), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(806), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(809), + [anon_sym_namespace] = ACTIONS(812), + [anon_sym_using] = ACTIONS(815), + [anon_sym_static_assert] = ACTIONS(818), + [anon_sym_concept] = ACTIONS(821), + [anon_sym_co_return] = ACTIONS(824), + [anon_sym_co_yield] = ACTIONS(827), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + }, + [56] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [57] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [58] = { + [sym_preproc_include] = STATE(57), + [sym_preproc_def] = STATE(57), + [sym_preproc_function_def] = STATE(57), + [sym_preproc_call] = STATE(57), + [sym_preproc_if] = STATE(57), + [sym_preproc_ifdef] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_case_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(57), + [sym_co_return_statement] = STATE(57), + [sym_co_yield_statement] = STATE(57), + [sym_throw_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [59] = { + [sym_preproc_include] = STATE(56), + [sym_preproc_def] = STATE(56), + [sym_preproc_function_def] = STATE(56), + [sym_preproc_call] = STATE(56), + [sym_preproc_if] = STATE(56), + [sym_preproc_ifdef] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_case_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(56), + [sym_namespace_alias_definition] = STATE(56), + [sym_using_declaration] = STATE(56), + [sym_alias_declaration] = STATE(56), + [sym_static_assert_declaration] = STATE(56), + [sym_concept_definition] = STATE(56), + [sym_for_range_loop] = STATE(56), + [sym_co_return_statement] = STATE(56), + [sym_co_yield_statement] = STATE(56), + [sym_throw_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [60] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [61] = { + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4249), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2160), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5028), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1957), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(72), + [sym_namespace_alias_definition] = STATE(72), + [sym_using_declaration] = STATE(72), + [sym_alias_declaration] = STATE(72), + [sym_static_assert_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(72), + [sym_co_return_statement] = STATE(72), + [sym_co_yield_statement] = STATE(72), + [sym_throw_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [ts_builtin_sym_end] = ACTIONS(840), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(37), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(115), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(125), + [anon_sym_using] = ACTIONS(127), + [anon_sym_static_assert] = ACTIONS(129), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [62] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [63] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(30), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(30), + [sym_template_instantiation] = STATE(30), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(30), + [sym_operator_cast_declaration] = STATE(30), + [sym_constructor_or_destructor_definition] = STATE(30), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(30), + [sym_namespace_alias_definition] = STATE(30), + [sym_using_declaration] = STATE(30), + [sym_alias_declaration] = STATE(30), + [sym_static_assert_declaration] = STATE(30), + [sym_concept_definition] = STATE(30), + [sym_for_range_loop] = STATE(30), + [sym_co_return_statement] = STATE(30), + [sym_co_yield_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [64] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [65] = { + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_preproc_if] = STATE(70), + [sym_preproc_ifdef] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(70), + [sym_namespace_alias_definition] = STATE(70), + [sym_using_declaration] = STATE(70), + [sym_alias_declaration] = STATE(70), + [sym_static_assert_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(70), + [sym_co_return_statement] = STATE(70), + [sym_co_yield_statement] = STATE(70), + [sym_throw_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [66] = { + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(60), + [sym_co_return_statement] = STATE(60), + [sym_co_yield_statement] = STATE(60), + [sym_throw_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [67] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [68] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [69] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [70] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [71] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [72] = { + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4249), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2160), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5028), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1957), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1957), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(72), + [sym_namespace_alias_definition] = STATE(72), + [sym_using_declaration] = STATE(72), + [sym_alias_declaration] = STATE(72), + [sym_static_assert_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(72), + [sym_co_return_statement] = STATE(72), + [sym_co_yield_statement] = STATE(72), + [sym_throw_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1957), + [ts_builtin_sym_end] = ACTIONS(670), + [sym_identifier] = ACTIONS(862), + [aux_sym_preproc_include_token1] = ACTIONS(865), + [aux_sym_preproc_def_token1] = ACTIONS(868), + [aux_sym_preproc_if_token1] = ACTIONS(871), + [aux_sym_preproc_ifdef_token1] = ACTIONS(874), + [aux_sym_preproc_ifdef_token2] = ACTIONS(874), + [sym_preproc_directive] = ACTIONS(877), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_typedef] = ACTIONS(883), + [anon_sym_extern] = ACTIONS(886), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(895), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(901), + [anon_sym_while] = ACTIONS(904), + [anon_sym_do] = ACTIONS(907), + [anon_sym_for] = ACTIONS(910), + [anon_sym_return] = ACTIONS(913), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_goto] = ACTIONS(922), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(925), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(928), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(931), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_using] = ACTIONS(937), + [anon_sym_static_assert] = ACTIONS(940), + [anon_sym_concept] = ACTIONS(943), + [anon_sym_co_return] = ACTIONS(946), + [anon_sym_co_yield] = ACTIONS(949), + [anon_sym_R_DQUOTE] = ACTIONS(524), + [anon_sym_LR_DQUOTE] = ACTIONS(524), + [anon_sym_uR_DQUOTE] = ACTIONS(524), + [anon_sym_UR_DQUOTE] = ACTIONS(524), + [anon_sym_u8R_DQUOTE] = ACTIONS(524), + [anon_sym_co_await] = ACTIONS(527), + [anon_sym_new] = ACTIONS(530), + [anon_sym_requires] = ACTIONS(533), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + }, + [73] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [74] = { + [sym_preproc_include] = STATE(71), + [sym_preproc_def] = STATE(71), + [sym_preproc_function_def] = STATE(71), + [sym_preproc_call] = STATE(71), + [sym_preproc_if] = STATE(71), + [sym_preproc_ifdef] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(71), + [sym_namespace_alias_definition] = STATE(71), + [sym_using_declaration] = STATE(71), + [sym_alias_declaration] = STATE(71), + [sym_static_assert_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(71), + [sym_co_return_statement] = STATE(71), + [sym_co_yield_statement] = STATE(71), + [sym_throw_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [75] = { + [sym_preproc_include] = STATE(73), + [sym_preproc_def] = STATE(73), + [sym_preproc_function_def] = STATE(73), + [sym_preproc_call] = STATE(73), + [sym_preproc_if] = STATE(73), + [sym_preproc_ifdef] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_case_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(73), + [sym_namespace_alias_definition] = STATE(73), + [sym_using_declaration] = STATE(73), + [sym_alias_declaration] = STATE(73), + [sym_static_assert_declaration] = STATE(73), + [sym_concept_definition] = STATE(73), + [sym_for_range_loop] = STATE(73), + [sym_co_return_statement] = STATE(73), + [sym_co_yield_statement] = STATE(73), + [sym_throw_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [76] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5014), + [sym_array_declarator] = STATE(5152), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3637), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4781), + [sym_qualified_identifier] = STATE(2769), + [sym_qualified_type_identifier] = STATE(3656), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [77] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4227), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(79), + [sym_co_return_statement] = STATE(79), + [sym_co_yield_statement] = STATE(79), + [sym_throw_statement] = STATE(79), + [sym_try_statement] = STATE(79), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_if_token2] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [aux_sym_preproc_else_token1] = ACTIONS(962), + [aux_sym_preproc_elif_token1] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(962), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [78] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4227), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(80), + [sym_co_return_statement] = STATE(80), + [sym_co_yield_statement] = STATE(80), + [sym_throw_statement] = STATE(80), + [sym_try_statement] = STATE(80), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_if_token2] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [aux_sym_preproc_else_token1] = ACTIONS(978), + [aux_sym_preproc_elif_token1] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(978), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [79] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4227), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [aux_sym_preproc_else_token1] = ACTIONS(982), + [aux_sym_preproc_elif_token1] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(982), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [80] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4227), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [aux_sym_preproc_else_token1] = ACTIONS(986), + [aux_sym_preproc_elif_token1] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(986), + [anon_sym___clrcall] = ACTIONS(986), + [anon_sym___stdcall] = ACTIONS(986), + [anon_sym___fastcall] = ACTIONS(986), + [anon_sym___thiscall] = ACTIONS(986), + [anon_sym___vectorcall] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(986), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_static_assert] = ACTIONS(986), + [anon_sym_concept] = ACTIONS(986), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [81] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4227), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(990), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token2] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [aux_sym_preproc_else_token1] = ACTIONS(993), + [aux_sym_preproc_elif_token1] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_typedef] = ACTIONS(1015), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), + [anon_sym___declspec] = ACTIONS(1030), + [anon_sym___based] = ACTIONS(993), + [anon_sym___cdecl] = ACTIONS(993), + [anon_sym___clrcall] = ACTIONS(993), + [anon_sym___stdcall] = ACTIONS(993), + [anon_sym___fastcall] = ACTIONS(993), + [anon_sym___thiscall] = ACTIONS(993), + [anon_sym___vectorcall] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_mutable] = ACTIONS(1039), + [anon_sym_constexpr] = ACTIONS(1039), + [anon_sym_constinit] = ACTIONS(1039), + [anon_sym_consteval] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(1063), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1069), + [anon_sym_for] = ACTIONS(1072), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1081), + [anon_sym_goto] = ACTIONS(1084), + [anon_sym_not] = ACTIONS(1001), + [anon_sym_compl] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1093), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_u_DQUOTE] = ACTIONS(1099), + [anon_sym_U_DQUOTE] = ACTIONS(1099), + [anon_sym_u8_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1105), + [anon_sym_decltype] = ACTIONS(1108), + [anon_sym_virtual] = ACTIONS(1111), + [anon_sym_explicit] = ACTIONS(993), + [anon_sym_typename] = ACTIONS(1114), + [anon_sym_template] = ACTIONS(1117), + [anon_sym_operator] = ACTIONS(993), + [anon_sym_try] = ACTIONS(1120), + [anon_sym_delete] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1126), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_static_assert] = ACTIONS(993), + [anon_sym_concept] = ACTIONS(993), + [anon_sym_co_return] = ACTIONS(1129), + [anon_sym_co_yield] = ACTIONS(1132), + [anon_sym_R_DQUOTE] = ACTIONS(1135), + [anon_sym_LR_DQUOTE] = ACTIONS(1135), + [anon_sym_uR_DQUOTE] = ACTIONS(1135), + [anon_sym_UR_DQUOTE] = ACTIONS(1135), + [anon_sym_u8R_DQUOTE] = ACTIONS(1135), + [anon_sym_co_await] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_requires] = ACTIONS(1144), + [sym_this] = ACTIONS(1102), + [sym_nullptr] = ACTIONS(1102), + }, + [82] = { + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_if_token2] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(978), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [83] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_if_token2] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(962), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [84] = { + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(84), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(84), + [sym_co_return_statement] = STATE(84), + [sym_co_yield_statement] = STATE(84), + [sym_throw_statement] = STATE(84), + [sym_try_statement] = STATE(84), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(84), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_typedef] = ACTIONS(1155), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), + [anon_sym___declspec] = ACTIONS(1030), + [anon_sym___based] = ACTIONS(993), + [anon_sym___cdecl] = ACTIONS(993), + [anon_sym___clrcall] = ACTIONS(993), + [anon_sym___stdcall] = ACTIONS(993), + [anon_sym___fastcall] = ACTIONS(993), + [anon_sym___thiscall] = ACTIONS(993), + [anon_sym___vectorcall] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_mutable] = ACTIONS(1039), + [anon_sym_constexpr] = ACTIONS(1039), + [anon_sym_constinit] = ACTIONS(1039), + [anon_sym_consteval] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1161), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_goto] = ACTIONS(1185), + [anon_sym_not] = ACTIONS(1001), + [anon_sym_compl] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1093), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_u_DQUOTE] = ACTIONS(1099), + [anon_sym_U_DQUOTE] = ACTIONS(1099), + [anon_sym_u8_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1105), + [anon_sym_decltype] = ACTIONS(1108), + [anon_sym_virtual] = ACTIONS(1111), + [anon_sym_explicit] = ACTIONS(993), + [anon_sym_typename] = ACTIONS(1114), + [anon_sym_template] = ACTIONS(1117), + [anon_sym_operator] = ACTIONS(993), + [anon_sym_try] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1191), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_static_assert] = ACTIONS(993), + [anon_sym_concept] = ACTIONS(993), + [anon_sym_co_return] = ACTIONS(1194), + [anon_sym_co_yield] = ACTIONS(1197), + [anon_sym_R_DQUOTE] = ACTIONS(1135), + [anon_sym_LR_DQUOTE] = ACTIONS(1135), + [anon_sym_uR_DQUOTE] = ACTIONS(1135), + [anon_sym_UR_DQUOTE] = ACTIONS(1135), + [anon_sym_u8R_DQUOTE] = ACTIONS(1135), + [anon_sym_co_await] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_requires] = ACTIONS(1144), + [sym_this] = ACTIONS(1102), + [sym_nullptr] = ACTIONS(1102), + }, + [85] = { + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(84), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(84), + [sym_co_return_statement] = STATE(84), + [sym_co_yield_statement] = STATE(84), + [sym_throw_statement] = STATE(84), + [sym_try_statement] = STATE(84), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(84), + [ts_builtin_sym_end] = ACTIONS(984), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(982), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [86] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4223), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(962), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [87] = { + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(84), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(84), + [sym_co_return_statement] = STATE(84), + [sym_co_yield_statement] = STATE(84), + [sym_throw_statement] = STATE(84), + [sym_try_statement] = STATE(84), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(84), + [ts_builtin_sym_end] = ACTIONS(988), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(986), + [anon_sym___clrcall] = ACTIONS(986), + [anon_sym___stdcall] = ACTIONS(986), + [anon_sym___fastcall] = ACTIONS(986), + [anon_sym___thiscall] = ACTIONS(986), + [anon_sym___vectorcall] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(986), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_static_assert] = ACTIONS(986), + [anon_sym_concept] = ACTIONS(986), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [88] = { + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(85), + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(962), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [89] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4235), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(87), + [ts_builtin_sym_end] = ACTIONS(980), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(978), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [90] = { + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(91), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(91), + [sym_co_return_statement] = STATE(91), + [sym_co_yield_statement] = STATE(91), + [sym_throw_statement] = STATE(91), + [sym_try_statement] = STATE(91), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(986), + [anon_sym___clrcall] = ACTIONS(986), + [anon_sym___stdcall] = ACTIONS(986), + [anon_sym___fastcall] = ACTIONS(986), + [anon_sym___thiscall] = ACTIONS(986), + [anon_sym___vectorcall] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(986), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_static_assert] = ACTIONS(986), + [anon_sym_concept] = ACTIONS(986), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [91] = { + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(91), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(91), + [sym_co_return_statement] = STATE(91), + [sym_co_yield_statement] = STATE(91), + [sym_throw_statement] = STATE(91), + [sym_try_statement] = STATE(91), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_if_token2] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), + [anon_sym___declspec] = ACTIONS(1030), + [anon_sym___based] = ACTIONS(993), + [anon_sym___cdecl] = ACTIONS(993), + [anon_sym___clrcall] = ACTIONS(993), + [anon_sym___stdcall] = ACTIONS(993), + [anon_sym___fastcall] = ACTIONS(993), + [anon_sym___thiscall] = ACTIONS(993), + [anon_sym___vectorcall] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_mutable] = ACTIONS(1039), + [anon_sym_constexpr] = ACTIONS(1039), + [anon_sym_constinit] = ACTIONS(1039), + [anon_sym_consteval] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_not] = ACTIONS(1001), + [anon_sym_compl] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1093), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_u_DQUOTE] = ACTIONS(1099), + [anon_sym_U_DQUOTE] = ACTIONS(1099), + [anon_sym_u8_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1105), + [anon_sym_decltype] = ACTIONS(1108), + [anon_sym_virtual] = ACTIONS(1111), + [anon_sym_explicit] = ACTIONS(993), + [anon_sym_typename] = ACTIONS(1114), + [anon_sym_template] = ACTIONS(1117), + [anon_sym_operator] = ACTIONS(993), + [anon_sym_try] = ACTIONS(1243), + [anon_sym_delete] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1246), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_static_assert] = ACTIONS(993), + [anon_sym_concept] = ACTIONS(993), + [anon_sym_co_return] = ACTIONS(1249), + [anon_sym_co_yield] = ACTIONS(1252), + [anon_sym_R_DQUOTE] = ACTIONS(1135), + [anon_sym_LR_DQUOTE] = ACTIONS(1135), + [anon_sym_uR_DQUOTE] = ACTIONS(1135), + [anon_sym_UR_DQUOTE] = ACTIONS(1135), + [anon_sym_u8R_DQUOTE] = ACTIONS(1135), + [anon_sym_co_await] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_requires] = ACTIONS(1144), + [sym_this] = ACTIONS(1102), + [sym_nullptr] = ACTIONS(1102), + }, + [92] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4223), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(993), + [aux_sym_preproc_def_token1] = ACTIONS(993), + [aux_sym_preproc_if_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(993), + [sym_preproc_directive] = ACTIONS(993), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), + [anon_sym___declspec] = ACTIONS(1030), + [anon_sym___based] = ACTIONS(993), + [anon_sym___cdecl] = ACTIONS(993), + [anon_sym___clrcall] = ACTIONS(993), + [anon_sym___stdcall] = ACTIONS(993), + [anon_sym___fastcall] = ACTIONS(993), + [anon_sym___thiscall] = ACTIONS(993), + [anon_sym___vectorcall] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_mutable] = ACTIONS(1039), + [anon_sym_constexpr] = ACTIONS(1039), + [anon_sym_constinit] = ACTIONS(1039), + [anon_sym_consteval] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_not] = ACTIONS(1001), + [anon_sym_compl] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1093), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_u_DQUOTE] = ACTIONS(1099), + [anon_sym_U_DQUOTE] = ACTIONS(1099), + [anon_sym_u8_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1105), + [anon_sym_decltype] = ACTIONS(1108), + [anon_sym_virtual] = ACTIONS(1111), + [anon_sym_explicit] = ACTIONS(993), + [anon_sym_typename] = ACTIONS(1114), + [anon_sym_template] = ACTIONS(1117), + [anon_sym_operator] = ACTIONS(993), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_delete] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1297), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_static_assert] = ACTIONS(993), + [anon_sym_concept] = ACTIONS(993), + [anon_sym_co_return] = ACTIONS(1300), + [anon_sym_co_yield] = ACTIONS(1303), + [anon_sym_R_DQUOTE] = ACTIONS(1135), + [anon_sym_LR_DQUOTE] = ACTIONS(1135), + [anon_sym_uR_DQUOTE] = ACTIONS(1135), + [anon_sym_UR_DQUOTE] = ACTIONS(1135), + [anon_sym_u8R_DQUOTE] = ACTIONS(1135), + [anon_sym_co_await] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_requires] = ACTIONS(1144), + [sym_this] = ACTIONS(1102), + [sym_nullptr] = ACTIONS(1102), + }, + [93] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4223), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(982), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [94] = { + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4246), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(91), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(91), + [sym_co_return_statement] = STATE(91), + [sym_co_yield_statement] = STATE(91), + [sym_throw_statement] = STATE(91), + [sym_try_statement] = STATE(91), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_typedef] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(982), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [95] = { + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4223), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(978), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [96] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4223), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1202), + [aux_sym_preproc_include_token1] = ACTIONS(986), + [aux_sym_preproc_def_token1] = ACTIONS(986), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(986), + [sym_preproc_directive] = ACTIONS(986), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(986), + [anon_sym___cdecl] = ACTIONS(986), + [anon_sym___clrcall] = ACTIONS(986), + [anon_sym___stdcall] = ACTIONS(986), + [anon_sym___fastcall] = ACTIONS(986), + [anon_sym___thiscall] = ACTIONS(986), + [anon_sym___vectorcall] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(986), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_static_assert] = ACTIONS(986), + [anon_sym_concept] = ACTIONS(986), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [97] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4236), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym___attribute__] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1027), + [anon_sym___declspec] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_inline] = ACTIONS(1018), + [anon_sym_thread_local] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_restrict] = ACTIONS(1039), + [anon_sym__Atomic] = ACTIONS(1039), + [anon_sym_mutable] = ACTIONS(1039), + [anon_sym_constexpr] = ACTIONS(1039), + [anon_sym_constinit] = ACTIONS(1039), + [anon_sym_consteval] = ACTIONS(1039), + [anon_sym_signed] = ACTIONS(1042), + [anon_sym_unsigned] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1057), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(993), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym_not] = ACTIONS(1001), + [anon_sym_compl] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1087), + [anon_sym_sizeof] = ACTIONS(1090), + [sym_number_literal] = ACTIONS(1093), + [anon_sym_L_SQUOTE] = ACTIONS(1096), + [anon_sym_u_SQUOTE] = ACTIONS(1096), + [anon_sym_U_SQUOTE] = ACTIONS(1096), + [anon_sym_u8_SQUOTE] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_L_DQUOTE] = ACTIONS(1099), + [anon_sym_u_DQUOTE] = ACTIONS(1099), + [anon_sym_U_DQUOTE] = ACTIONS(1099), + [anon_sym_u8_DQUOTE] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(1102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1105), + [anon_sym_decltype] = ACTIONS(1108), + [anon_sym_virtual] = ACTIONS(1111), + [anon_sym_typename] = ACTIONS(1114), + [anon_sym_template] = ACTIONS(1117), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_delete] = ACTIONS(1123), + [anon_sym_throw] = ACTIONS(1348), + [anon_sym_co_return] = ACTIONS(1351), + [anon_sym_co_yield] = ACTIONS(1354), + [anon_sym_R_DQUOTE] = ACTIONS(1135), + [anon_sym_LR_DQUOTE] = ACTIONS(1135), + [anon_sym_uR_DQUOTE] = ACTIONS(1135), + [anon_sym_UR_DQUOTE] = ACTIONS(1135), + [anon_sym_u8R_DQUOTE] = ACTIONS(1135), + [anon_sym_co_await] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_requires] = ACTIONS(1144), + [sym_this] = ACTIONS(1102), + [sym_nullptr] = ACTIONS(1102), + }, + [98] = { + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4236), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(100), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(100), + [sym_co_return_statement] = STATE(100), + [sym_co_yield_statement] = STATE(100), + [sym_throw_statement] = STATE(100), + [sym_try_statement] = STATE(100), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [99] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4236), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [100] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4236), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(986), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [101] = { + [sym_declaration] = STATE(99), + [sym_type_definition] = STATE(99), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4236), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(1244), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_compound_statement] = STATE(99), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_attributed_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(99), + [sym_co_return_statement] = STATE(99), + [sym_co_yield_statement] = STATE(99), + [sym_throw_statement] = STATE(99), + [sym_try_statement] = STATE(99), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_case_statement_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [102] = { + [sym_declaration] = STATE(1766), + [sym_type_definition] = STATE(1766), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(1766), + [sym__expression] = STATE(3627), + [sym_comma_expression] = STATE(6588), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(1766), + [sym_init_statement] = STATE(120), + [sym_condition_declaration] = STATE(6691), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1395), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [103] = { + [sym_declaration] = STATE(1069), + [sym_type_definition] = STATE(4110), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4245), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(4110), + [sym__expression] = STATE(3798), + [sym_comma_expression] = STATE(7068), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(4110), + [sym_init_statement] = STATE(2044), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1401), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [104] = { + [sym_declaration] = STATE(1061), + [sym_type_definition] = STATE(4110), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(4110), + [sym__expression] = STATE(3712), + [sym_comma_expression] = STATE(6648), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(4110), + [sym_init_statement] = STATE(2059), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_typedef] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1401), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [105] = { + [sym_declaration] = STATE(1067), + [sym_type_definition] = STATE(4110), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(4110), + [sym__expression] = STATE(3741), + [sym_comma_expression] = STATE(7036), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(4110), + [sym_init_statement] = STATE(2045), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_typedef] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1401), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [106] = { + [sym_declaration] = STATE(1073), + [sym_type_definition] = STATE(4110), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4232), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(4110), + [sym__expression] = STATE(3732), + [sym_comma_expression] = STATE(6892), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(4110), + [sym_init_statement] = STATE(2075), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1401), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [107] = { + [sym_declaration] = STATE(1076), + [sym_type_definition] = STATE(4110), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(4110), + [sym__expression] = STATE(3767), + [sym_comma_expression] = STATE(7097), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(4110), + [sym_init_statement] = STATE(2043), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1401), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [108] = { + [sym_declaration] = STATE(1064), + [sym_type_definition] = STATE(4110), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_expression_statement] = STATE(4110), + [sym__expression] = STATE(3740), + [sym_comma_expression] = STATE(7151), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_alias_declaration] = STATE(4110), + [sym_init_statement] = STATE(2110), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_using] = ACTIONS(1401), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [109] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5841), + [sym__expression] = STATE(2783), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6294), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5841), + [sym_variadic_parameter_declaration] = STATE(5841), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3098), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [110] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5841), + [sym__expression] = STATE(2773), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6294), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5841), + [sym_variadic_parameter_declaration] = STATE(5841), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3098), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [111] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5841), + [sym__expression] = STATE(2785), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6294), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5841), + [sym_variadic_parameter_declaration] = STATE(5841), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3098), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [112] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5841), + [sym__expression] = STATE(2787), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6294), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5841), + [sym_variadic_parameter_declaration] = STATE(5841), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3098), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [113] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5841), + [sym__expression] = STATE(2790), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6294), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5841), + [sym_variadic_parameter_declaration] = STATE(5841), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3098), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [114] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5841), + [sym__expression] = STATE(2786), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6294), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5841), + [sym_variadic_parameter_declaration] = STATE(5841), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3098), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [115] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5829), + [sym__expression] = STATE(3633), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5862), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5829), + [sym_variadic_parameter_declaration] = STATE(5829), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4891), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [116] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5344), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2789), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6965), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(2991), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4906), + [sym_qualified_identifier] = STATE(2668), + [sym_qualified_type_identifier] = STATE(4485), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [117] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5344), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6947), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(2991), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4906), + [sym_qualified_identifier] = STATE(2668), + [sym_qualified_type_identifier] = STATE(4485), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [118] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5344), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2789), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6816), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(2991), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4906), + [sym_qualified_identifier] = STATE(2668), + [sym_qualified_type_identifier] = STATE(4485), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [119] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5344), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7114), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(2991), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4906), + [sym_qualified_identifier] = STATE(2668), + [sym_qualified_type_identifier] = STATE(4485), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [120] = { + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4291), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__expression] = STATE(3646), + [sym_comma_expression] = STATE(6960), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6367), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3663), + [sym_template_function] = STATE(3521), + [sym_condition_declaration] = STATE(6960), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4930), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(3656), + [sym_user_defined_literal] = STATE(3521), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [121] = { + [sym__expression] = STATE(2527), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_initializer_list] = STATE(2526), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_and_eq] = ACTIONS(1513), + [anon_sym_or_eq] = ACTIONS(1513), + [anon_sym_xor_eq] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [122] = { + [sym__expression] = STATE(2689), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_initializer_list] = STATE(2768), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_and_eq] = ACTIONS(1513), + [anon_sym_or_eq] = ACTIONS(1513), + [anon_sym_xor_eq] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1513), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [anon_sym_DOT_STAR] = ACTIONS(1505), + [anon_sym_DASH_GT_STAR] = ACTIONS(1505), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [123] = { + [sym_preproc_def] = STATE(133), + [sym_preproc_function_def] = STATE(133), + [sym_preproc_call] = STATE(133), + [sym_preproc_if_in_field_declaration_list] = STATE(133), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), + [sym_preproc_else_in_field_declaration_list] = STATE(6632), + [sym_preproc_elif_in_field_declaration_list] = STATE(6632), + [sym_type_definition] = STATE(133), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(133), + [sym_field_declaration] = STATE(133), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(133), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(133), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(133), + [sym_operator_cast_declaration] = STATE(133), + [sym_constructor_or_destructor_definition] = STATE(133), + [sym_constructor_or_destructor_declaration] = STATE(133), + [sym_friend_declaration] = STATE(133), + [sym_access_specifier] = STATE(133), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(133), + [sym_alias_declaration] = STATE(133), + [sym_static_assert_declaration] = STATE(133), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [124] = { + [sym_preproc_def] = STATE(134), + [sym_preproc_function_def] = STATE(134), + [sym_preproc_call] = STATE(134), + [sym_preproc_if_in_field_declaration_list] = STATE(134), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(134), + [sym_preproc_else_in_field_declaration_list] = STATE(6895), + [sym_preproc_elif_in_field_declaration_list] = STATE(6895), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(134), + [sym_field_declaration] = STATE(134), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(134), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(134), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(134), + [sym_operator_cast_declaration] = STATE(134), + [sym_constructor_or_destructor_definition] = STATE(134), + [sym_constructor_or_destructor_declaration] = STATE(134), + [sym_friend_declaration] = STATE(134), + [sym_access_specifier] = STATE(134), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(134), + [sym_alias_declaration] = STATE(134), + [sym_static_assert_declaration] = STATE(134), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(134), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [125] = { + [sym_preproc_def] = STATE(129), + [sym_preproc_function_def] = STATE(129), + [sym_preproc_call] = STATE(129), + [sym_preproc_if_in_field_declaration_list] = STATE(129), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(129), + [sym_preproc_else_in_field_declaration_list] = STATE(7146), + [sym_preproc_elif_in_field_declaration_list] = STATE(7146), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(129), + [sym_field_declaration] = STATE(129), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(129), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(129), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(129), + [sym_operator_cast_declaration] = STATE(129), + [sym_constructor_or_destructor_definition] = STATE(129), + [sym_constructor_or_destructor_declaration] = STATE(129), + [sym_friend_declaration] = STATE(129), + [sym_access_specifier] = STATE(129), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(129), + [sym_alias_declaration] = STATE(129), + [sym_static_assert_declaration] = STATE(129), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(129), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [126] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(7023), + [sym_preproc_elif_in_field_declaration_list] = STATE(7023), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [127] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(7190), + [sym_preproc_elif_in_field_declaration_list] = STATE(7190), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [128] = { + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if_in_field_declaration_list] = STATE(127), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(127), + [sym_preproc_else_in_field_declaration_list] = STATE(7222), + [sym_preproc_elif_in_field_declaration_list] = STATE(7222), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(127), + [sym_field_declaration] = STATE(127), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(127), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(127), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(127), + [sym_operator_cast_declaration] = STATE(127), + [sym_constructor_or_destructor_definition] = STATE(127), + [sym_constructor_or_destructor_declaration] = STATE(127), + [sym_friend_declaration] = STATE(127), + [sym_access_specifier] = STATE(127), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(127), + [sym_alias_declaration] = STATE(127), + [sym_static_assert_declaration] = STATE(127), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(127), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [129] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(7221), + [sym_preproc_elif_in_field_declaration_list] = STATE(7221), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [130] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(6861), + [sym_preproc_elif_in_field_declaration_list] = STATE(6861), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [131] = { + [sym_preproc_def] = STATE(126), + [sym_preproc_function_def] = STATE(126), + [sym_preproc_call] = STATE(126), + [sym_preproc_if_in_field_declaration_list] = STATE(126), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(126), + [sym_preproc_else_in_field_declaration_list] = STATE(7016), + [sym_preproc_elif_in_field_declaration_list] = STATE(7016), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(126), + [sym_field_declaration] = STATE(126), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(126), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(126), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(126), + [sym_operator_cast_declaration] = STATE(126), + [sym_constructor_or_destructor_definition] = STATE(126), + [sym_constructor_or_destructor_declaration] = STATE(126), + [sym_friend_declaration] = STATE(126), + [sym_access_specifier] = STATE(126), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(126), + [sym_alias_declaration] = STATE(126), + [sym_static_assert_declaration] = STATE(126), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(126), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [132] = { + [sym__expression] = STATE(2932), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_initializer_list] = STATE(3077), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_and_eq] = ACTIONS(1513), + [anon_sym_or_eq] = ACTIONS(1513), + [anon_sym_xor_eq] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [133] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(6898), + [sym_preproc_elif_in_field_declaration_list] = STATE(6898), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1695), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [134] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(6979), + [sym_preproc_elif_in_field_declaration_list] = STATE(6979), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [135] = { + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(6931), + [sym_preproc_elif_in_field_declaration_list] = STATE(6931), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1699), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [136] = { + [sym_preproc_def] = STATE(130), + [sym_preproc_function_def] = STATE(130), + [sym_preproc_call] = STATE(130), + [sym_preproc_if_in_field_declaration_list] = STATE(130), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(130), + [sym_preproc_else_in_field_declaration_list] = STATE(6889), + [sym_preproc_elif_in_field_declaration_list] = STATE(6889), + [sym_type_definition] = STATE(130), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(130), + [sym_field_declaration] = STATE(130), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(130), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(130), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(130), + [sym_operator_cast_declaration] = STATE(130), + [sym_constructor_or_destructor_definition] = STATE(130), + [sym_constructor_or_destructor_declaration] = STATE(130), + [sym_friend_declaration] = STATE(130), + [sym_access_specifier] = STATE(130), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(130), + [sym_alias_declaration] = STATE(130), + [sym_static_assert_declaration] = STATE(130), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [137] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_preproc_else_in_field_declaration_list] = STATE(6887), + [sym_preproc_elif_in_field_declaration_list] = STATE(6887), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token2] = ACTIONS(1703), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1595), + [sym_preproc_directive] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_private] = ACTIONS(1629), + [anon_sym_protected] = ACTIONS(1629), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1635), + [anon_sym_using] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1639), + }, + [138] = { + [sym__expression] = STATE(3087), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_initializer_list] = STATE(2526), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_COLON] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_and_eq] = ACTIONS(1513), + [anon_sym_or_eq] = ACTIONS(1513), + [anon_sym_xor_eq] = ACTIONS(1513), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [139] = { + [sym__expression] = STATE(3078), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_initializer_list] = STATE(3118), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1513), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [anon_sym_DOT_STAR] = ACTIONS(1505), + [anon_sym_DASH_GT_STAR] = ACTIONS(1505), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [140] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4415), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5486), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(1729), + [aux_sym_preproc_def_token1] = ACTIONS(1732), + [aux_sym_preproc_if_token1] = ACTIONS(1735), + [aux_sym_preproc_if_token2] = ACTIONS(1738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1740), + [aux_sym_preproc_else_token1] = ACTIONS(1738), + [aux_sym_preproc_elif_token1] = ACTIONS(1738), + [sym_preproc_directive] = ACTIONS(1743), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym___attribute__] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), + [anon_sym___declspec] = ACTIONS(1776), + [anon_sym___based] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_register] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1764), + [anon_sym_thread_local] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_volatile] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(1785), + [anon_sym__Atomic] = ACTIONS(1785), + [anon_sym_mutable] = ACTIONS(1785), + [anon_sym_constexpr] = ACTIONS(1785), + [anon_sym_constinit] = ACTIONS(1785), + [anon_sym_consteval] = ACTIONS(1785), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1806), + [anon_sym_decltype] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1812), + [anon_sym_explicit] = ACTIONS(1815), + [anon_sym_public] = ACTIONS(1818), + [anon_sym_private] = ACTIONS(1818), + [anon_sym_protected] = ACTIONS(1818), + [anon_sym_typename] = ACTIONS(1821), + [anon_sym_template] = ACTIONS(1824), + [anon_sym_operator] = ACTIONS(1827), + [anon_sym_friend] = ACTIONS(1830), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_static_assert] = ACTIONS(1836), + }, + [141] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(568), + [sym_attributed_statement] = STATE(568), + [sym_labeled_statement] = STATE(568), + [sym_expression_statement] = STATE(568), + [sym_if_statement] = STATE(568), + [sym_switch_statement] = STATE(568), + [sym_case_statement] = STATE(568), + [sym_while_statement] = STATE(568), + [sym_do_statement] = STATE(568), + [sym_for_statement] = STATE(568), + [sym_return_statement] = STATE(568), + [sym_break_statement] = STATE(568), + [sym_continue_statement] = STATE(568), + [sym_goto_statement] = STATE(568), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(568), + [sym_co_return_statement] = STATE(568), + [sym_co_yield_statement] = STATE(568), + [sym_throw_statement] = STATE(568), + [sym_try_statement] = STATE(568), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [142] = { + [sym_attribute_declaration] = STATE(289), + [sym_compound_statement] = STATE(901), + [sym_attributed_statement] = STATE(901), + [sym_labeled_statement] = STATE(901), + [sym_expression_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_switch_statement] = STATE(901), + [sym_case_statement] = STATE(901), + [sym_while_statement] = STATE(901), + [sym_do_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(901), + [sym_co_return_statement] = STATE(901), + [sym_co_yield_statement] = STATE(901), + [sym_throw_statement] = STATE(901), + [sym_try_statement] = STATE(901), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [143] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(780), + [sym_attributed_statement] = STATE(780), + [sym_labeled_statement] = STATE(780), + [sym_expression_statement] = STATE(780), + [sym_if_statement] = STATE(780), + [sym_switch_statement] = STATE(780), + [sym_case_statement] = STATE(780), + [sym_while_statement] = STATE(780), + [sym_do_statement] = STATE(780), + [sym_for_statement] = STATE(780), + [sym_return_statement] = STATE(780), + [sym_break_statement] = STATE(780), + [sym_continue_statement] = STATE(780), + [sym_goto_statement] = STATE(780), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(780), + [sym_co_return_statement] = STATE(780), + [sym_co_yield_statement] = STATE(780), + [sym_throw_statement] = STATE(780), + [sym_try_statement] = STATE(780), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [144] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(781), + [sym_attributed_statement] = STATE(781), + [sym_labeled_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_if_statement] = STATE(781), + [sym_switch_statement] = STATE(781), + [sym_case_statement] = STATE(781), + [sym_while_statement] = STATE(781), + [sym_do_statement] = STATE(781), + [sym_for_statement] = STATE(781), + [sym_return_statement] = STATE(781), + [sym_break_statement] = STATE(781), + [sym_continue_statement] = STATE(781), + [sym_goto_statement] = STATE(781), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(781), + [sym_co_return_statement] = STATE(781), + [sym_co_yield_statement] = STATE(781), + [sym_throw_statement] = STATE(781), + [sym_try_statement] = STATE(781), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [145] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(782), + [sym_attributed_statement] = STATE(782), + [sym_labeled_statement] = STATE(782), + [sym_expression_statement] = STATE(782), + [sym_if_statement] = STATE(782), + [sym_switch_statement] = STATE(782), + [sym_case_statement] = STATE(782), + [sym_while_statement] = STATE(782), + [sym_do_statement] = STATE(782), + [sym_for_statement] = STATE(782), + [sym_return_statement] = STATE(782), + [sym_break_statement] = STATE(782), + [sym_continue_statement] = STATE(782), + [sym_goto_statement] = STATE(782), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(782), + [sym_co_return_statement] = STATE(782), + [sym_co_yield_statement] = STATE(782), + [sym_throw_statement] = STATE(782), + [sym_try_statement] = STATE(782), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [146] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1207), + [sym_attributed_statement] = STATE(1207), + [sym_labeled_statement] = STATE(1207), + [sym_expression_statement] = STATE(1207), + [sym_if_statement] = STATE(1207), + [sym_switch_statement] = STATE(1207), + [sym_case_statement] = STATE(1207), + [sym_while_statement] = STATE(1207), + [sym_do_statement] = STATE(1207), + [sym_for_statement] = STATE(1207), + [sym_return_statement] = STATE(1207), + [sym_break_statement] = STATE(1207), + [sym_continue_statement] = STATE(1207), + [sym_goto_statement] = STATE(1207), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1207), + [sym_co_return_statement] = STATE(1207), + [sym_co_yield_statement] = STATE(1207), + [sym_throw_statement] = STATE(1207), + [sym_try_statement] = STATE(1207), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [147] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(783), + [sym_attributed_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(783), + [sym_co_return_statement] = STATE(783), + [sym_co_yield_statement] = STATE(783), + [sym_throw_statement] = STATE(783), + [sym_try_statement] = STATE(783), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [148] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(798), + [sym_attributed_statement] = STATE(798), + [sym_labeled_statement] = STATE(798), + [sym_expression_statement] = STATE(798), + [sym_if_statement] = STATE(798), + [sym_switch_statement] = STATE(798), + [sym_case_statement] = STATE(798), + [sym_while_statement] = STATE(798), + [sym_do_statement] = STATE(798), + [sym_for_statement] = STATE(798), + [sym_return_statement] = STATE(798), + [sym_break_statement] = STATE(798), + [sym_continue_statement] = STATE(798), + [sym_goto_statement] = STATE(798), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(798), + [sym_co_return_statement] = STATE(798), + [sym_co_yield_statement] = STATE(798), + [sym_throw_statement] = STATE(798), + [sym_try_statement] = STATE(798), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [149] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(800), + [sym_attributed_statement] = STATE(800), + [sym_labeled_statement] = STATE(800), + [sym_expression_statement] = STATE(800), + [sym_if_statement] = STATE(800), + [sym_switch_statement] = STATE(800), + [sym_case_statement] = STATE(800), + [sym_while_statement] = STATE(800), + [sym_do_statement] = STATE(800), + [sym_for_statement] = STATE(800), + [sym_return_statement] = STATE(800), + [sym_break_statement] = STATE(800), + [sym_continue_statement] = STATE(800), + [sym_goto_statement] = STATE(800), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(800), + [sym_co_return_statement] = STATE(800), + [sym_co_yield_statement] = STATE(800), + [sym_throw_statement] = STATE(800), + [sym_try_statement] = STATE(800), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [150] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(801), + [sym_attributed_statement] = STATE(802), + [sym_labeled_statement] = STATE(804), + [sym_expression_statement] = STATE(805), + [sym_if_statement] = STATE(806), + [sym_switch_statement] = STATE(807), + [sym_case_statement] = STATE(808), + [sym_while_statement] = STATE(809), + [sym_do_statement] = STATE(810), + [sym_for_statement] = STATE(811), + [sym_return_statement] = STATE(812), + [sym_break_statement] = STATE(815), + [sym_continue_statement] = STATE(816), + [sym_goto_statement] = STATE(818), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(819), + [sym_co_return_statement] = STATE(820), + [sym_co_yield_statement] = STATE(821), + [sym_throw_statement] = STATE(822), + [sym_try_statement] = STATE(823), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [151] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(824), + [sym_attributed_statement] = STATE(825), + [sym_labeled_statement] = STATE(827), + [sym_expression_statement] = STATE(830), + [sym_if_statement] = STATE(831), + [sym_switch_statement] = STATE(832), + [sym_case_statement] = STATE(833), + [sym_while_statement] = STATE(834), + [sym_do_statement] = STATE(835), + [sym_for_statement] = STATE(836), + [sym_return_statement] = STATE(837), + [sym_break_statement] = STATE(838), + [sym_continue_statement] = STATE(839), + [sym_goto_statement] = STATE(841), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(842), + [sym_co_return_statement] = STATE(843), + [sym_co_yield_statement] = STATE(844), + [sym_throw_statement] = STATE(845), + [sym_try_statement] = STATE(846), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [152] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(847), + [sym_attributed_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_expression_statement] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_case_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_goto_statement] = STATE(847), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(847), + [sym_co_return_statement] = STATE(847), + [sym_co_yield_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [153] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(848), + [sym_attributed_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_expression_statement] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_case_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_goto_statement] = STATE(848), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(848), + [sym_co_return_statement] = STATE(848), + [sym_co_yield_statement] = STATE(848), + [sym_throw_statement] = STATE(848), + [sym_try_statement] = STATE(848), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [154] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(788), + [sym_attributed_statement] = STATE(788), + [sym_labeled_statement] = STATE(788), + [sym_expression_statement] = STATE(788), + [sym_if_statement] = STATE(788), + [sym_switch_statement] = STATE(788), + [sym_case_statement] = STATE(788), + [sym_while_statement] = STATE(788), + [sym_do_statement] = STATE(788), + [sym_for_statement] = STATE(788), + [sym_return_statement] = STATE(788), + [sym_break_statement] = STATE(788), + [sym_continue_statement] = STATE(788), + [sym_goto_statement] = STATE(788), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(788), + [sym_co_return_statement] = STATE(788), + [sym_co_yield_statement] = STATE(788), + [sym_throw_statement] = STATE(788), + [sym_try_statement] = STATE(788), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [155] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(791), + [sym_attributed_statement] = STATE(791), + [sym_labeled_statement] = STATE(791), + [sym_expression_statement] = STATE(791), + [sym_if_statement] = STATE(791), + [sym_switch_statement] = STATE(791), + [sym_case_statement] = STATE(791), + [sym_while_statement] = STATE(791), + [sym_do_statement] = STATE(791), + [sym_for_statement] = STATE(791), + [sym_return_statement] = STATE(791), + [sym_break_statement] = STATE(791), + [sym_continue_statement] = STATE(791), + [sym_goto_statement] = STATE(791), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(791), + [sym_co_return_statement] = STATE(791), + [sym_co_yield_statement] = STATE(791), + [sym_throw_statement] = STATE(791), + [sym_try_statement] = STATE(791), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [156] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(792), + [sym_attributed_statement] = STATE(792), + [sym_labeled_statement] = STATE(792), + [sym_expression_statement] = STATE(792), + [sym_if_statement] = STATE(792), + [sym_switch_statement] = STATE(792), + [sym_case_statement] = STATE(792), + [sym_while_statement] = STATE(792), + [sym_do_statement] = STATE(792), + [sym_for_statement] = STATE(792), + [sym_return_statement] = STATE(792), + [sym_break_statement] = STATE(792), + [sym_continue_statement] = STATE(792), + [sym_goto_statement] = STATE(792), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(792), + [sym_co_return_statement] = STATE(792), + [sym_co_yield_statement] = STATE(792), + [sym_throw_statement] = STATE(792), + [sym_try_statement] = STATE(792), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [157] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(849), + [sym_attributed_statement] = STATE(849), + [sym_labeled_statement] = STATE(849), + [sym_expression_statement] = STATE(849), + [sym_if_statement] = STATE(849), + [sym_switch_statement] = STATE(849), + [sym_case_statement] = STATE(849), + [sym_while_statement] = STATE(849), + [sym_do_statement] = STATE(849), + [sym_for_statement] = STATE(849), + [sym_return_statement] = STATE(849), + [sym_break_statement] = STATE(849), + [sym_continue_statement] = STATE(849), + [sym_goto_statement] = STATE(849), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(849), + [sym_co_return_statement] = STATE(849), + [sym_co_yield_statement] = STATE(849), + [sym_throw_statement] = STATE(849), + [sym_try_statement] = STATE(849), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [158] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(851), + [sym_attributed_statement] = STATE(853), + [sym_labeled_statement] = STATE(854), + [sym_expression_statement] = STATE(855), + [sym_if_statement] = STATE(860), + [sym_switch_statement] = STATE(861), + [sym_case_statement] = STATE(862), + [sym_while_statement] = STATE(863), + [sym_do_statement] = STATE(864), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(866), + [sym_break_statement] = STATE(867), + [sym_continue_statement] = STATE(868), + [sym_goto_statement] = STATE(869), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(870), + [sym_co_return_statement] = STATE(871), + [sym_co_yield_statement] = STATE(872), + [sym_throw_statement] = STATE(873), + [sym_try_statement] = STATE(875), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [159] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(877), + [sym_attributed_statement] = STATE(879), + [sym_labeled_statement] = STATE(880), + [sym_expression_statement] = STATE(881), + [sym_if_statement] = STATE(882), + [sym_switch_statement] = STATE(883), + [sym_case_statement] = STATE(884), + [sym_while_statement] = STATE(885), + [sym_do_statement] = STATE(886), + [sym_for_statement] = STATE(887), + [sym_return_statement] = STATE(889), + [sym_break_statement] = STATE(890), + [sym_continue_statement] = STATE(891), + [sym_goto_statement] = STATE(892), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(893), + [sym_co_return_statement] = STATE(894), + [sym_co_yield_statement] = STATE(898), + [sym_throw_statement] = STATE(899), + [sym_try_statement] = STATE(900), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [160] = { + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1195), + [sym_attributed_statement] = STATE(1195), + [sym_labeled_statement] = STATE(1195), + [sym_expression_statement] = STATE(1195), + [sym_if_statement] = STATE(1195), + [sym_switch_statement] = STATE(1195), + [sym_case_statement] = STATE(1195), + [sym_while_statement] = STATE(1195), + [sym_do_statement] = STATE(1195), + [sym_for_statement] = STATE(1195), + [sym_return_statement] = STATE(1195), + [sym_break_statement] = STATE(1195), + [sym_continue_statement] = STATE(1195), + [sym_goto_statement] = STATE(1195), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1195), + [sym_co_return_statement] = STATE(1195), + [sym_co_yield_statement] = STATE(1195), + [sym_throw_statement] = STATE(1195), + [sym_try_statement] = STATE(1195), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [161] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(789), + [sym_attributed_statement] = STATE(789), + [sym_labeled_statement] = STATE(789), + [sym_expression_statement] = STATE(789), + [sym_if_statement] = STATE(789), + [sym_switch_statement] = STATE(789), + [sym_case_statement] = STATE(789), + [sym_while_statement] = STATE(789), + [sym_do_statement] = STATE(789), + [sym_for_statement] = STATE(789), + [sym_return_statement] = STATE(789), + [sym_break_statement] = STATE(789), + [sym_continue_statement] = STATE(789), + [sym_goto_statement] = STATE(789), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(789), + [sym_co_return_statement] = STATE(789), + [sym_co_yield_statement] = STATE(789), + [sym_throw_statement] = STATE(789), + [sym_try_statement] = STATE(789), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [162] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(796), + [sym_attributed_statement] = STATE(796), + [sym_labeled_statement] = STATE(796), + [sym_expression_statement] = STATE(796), + [sym_if_statement] = STATE(796), + [sym_switch_statement] = STATE(796), + [sym_case_statement] = STATE(796), + [sym_while_statement] = STATE(796), + [sym_do_statement] = STATE(796), + [sym_for_statement] = STATE(796), + [sym_return_statement] = STATE(796), + [sym_break_statement] = STATE(796), + [sym_continue_statement] = STATE(796), + [sym_goto_statement] = STATE(796), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(796), + [sym_co_return_statement] = STATE(796), + [sym_co_yield_statement] = STATE(796), + [sym_throw_statement] = STATE(796), + [sym_try_statement] = STATE(796), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [163] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(794), + [sym_attributed_statement] = STATE(794), + [sym_labeled_statement] = STATE(794), + [sym_expression_statement] = STATE(794), + [sym_if_statement] = STATE(794), + [sym_switch_statement] = STATE(794), + [sym_case_statement] = STATE(794), + [sym_while_statement] = STATE(794), + [sym_do_statement] = STATE(794), + [sym_for_statement] = STATE(794), + [sym_return_statement] = STATE(794), + [sym_break_statement] = STATE(794), + [sym_continue_statement] = STATE(794), + [sym_goto_statement] = STATE(794), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(794), + [sym_co_return_statement] = STATE(794), + [sym_co_yield_statement] = STATE(794), + [sym_throw_statement] = STATE(794), + [sym_try_statement] = STATE(794), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [164] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(828), + [sym_attributed_statement] = STATE(828), + [sym_labeled_statement] = STATE(828), + [sym_expression_statement] = STATE(828), + [sym_if_statement] = STATE(828), + [sym_switch_statement] = STATE(828), + [sym_case_statement] = STATE(828), + [sym_while_statement] = STATE(828), + [sym_do_statement] = STATE(828), + [sym_for_statement] = STATE(828), + [sym_return_statement] = STATE(828), + [sym_break_statement] = STATE(828), + [sym_continue_statement] = STATE(828), + [sym_goto_statement] = STATE(828), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(828), + [sym_co_return_statement] = STATE(828), + [sym_co_yield_statement] = STATE(828), + [sym_throw_statement] = STATE(828), + [sym_try_statement] = STATE(828), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [165] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1170), + [sym_attributed_statement] = STATE(1170), + [sym_labeled_statement] = STATE(1170), + [sym_expression_statement] = STATE(1170), + [sym_if_statement] = STATE(1170), + [sym_switch_statement] = STATE(1170), + [sym_case_statement] = STATE(1170), + [sym_while_statement] = STATE(1170), + [sym_do_statement] = STATE(1170), + [sym_for_statement] = STATE(1170), + [sym_return_statement] = STATE(1170), + [sym_break_statement] = STATE(1170), + [sym_continue_statement] = STATE(1170), + [sym_goto_statement] = STATE(1170), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1170), + [sym_co_return_statement] = STATE(1170), + [sym_co_yield_statement] = STATE(1170), + [sym_throw_statement] = STATE(1170), + [sym_try_statement] = STATE(1170), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [166] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(793), + [sym_attributed_statement] = STATE(793), + [sym_labeled_statement] = STATE(793), + [sym_expression_statement] = STATE(793), + [sym_if_statement] = STATE(793), + [sym_switch_statement] = STATE(793), + [sym_case_statement] = STATE(793), + [sym_while_statement] = STATE(793), + [sym_do_statement] = STATE(793), + [sym_for_statement] = STATE(793), + [sym_return_statement] = STATE(793), + [sym_break_statement] = STATE(793), + [sym_continue_statement] = STATE(793), + [sym_goto_statement] = STATE(793), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(793), + [sym_co_return_statement] = STATE(793), + [sym_co_yield_statement] = STATE(793), + [sym_throw_statement] = STATE(793), + [sym_try_statement] = STATE(793), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [167] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(456), + [sym_attributed_statement] = STATE(451), + [sym_labeled_statement] = STATE(440), + [sym_expression_statement] = STATE(438), + [sym_if_statement] = STATE(436), + [sym_switch_statement] = STATE(431), + [sym_case_statement] = STATE(428), + [sym_while_statement] = STATE(425), + [sym_do_statement] = STATE(423), + [sym_for_statement] = STATE(418), + [sym_return_statement] = STATE(417), + [sym_break_statement] = STATE(415), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(403), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(400), + [sym_co_return_statement] = STATE(399), + [sym_co_yield_statement] = STATE(398), + [sym_throw_statement] = STATE(397), + [sym_try_statement] = STATE(419), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [168] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(787), + [sym_attributed_statement] = STATE(787), + [sym_labeled_statement] = STATE(787), + [sym_expression_statement] = STATE(787), + [sym_if_statement] = STATE(787), + [sym_switch_statement] = STATE(787), + [sym_case_statement] = STATE(787), + [sym_while_statement] = STATE(787), + [sym_do_statement] = STATE(787), + [sym_for_statement] = STATE(787), + [sym_return_statement] = STATE(787), + [sym_break_statement] = STATE(787), + [sym_continue_statement] = STATE(787), + [sym_goto_statement] = STATE(787), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(787), + [sym_co_return_statement] = STATE(787), + [sym_co_yield_statement] = STATE(787), + [sym_throw_statement] = STATE(787), + [sym_try_statement] = STATE(787), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [169] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(901), + [sym_attributed_statement] = STATE(901), + [sym_labeled_statement] = STATE(901), + [sym_expression_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_switch_statement] = STATE(901), + [sym_case_statement] = STATE(901), + [sym_while_statement] = STATE(901), + [sym_do_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(901), + [sym_co_return_statement] = STATE(901), + [sym_co_yield_statement] = STATE(901), + [sym_throw_statement] = STATE(901), + [sym_try_statement] = STATE(901), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [170] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(776), + [sym_attributed_statement] = STATE(776), + [sym_labeled_statement] = STATE(776), + [sym_expression_statement] = STATE(776), + [sym_if_statement] = STATE(776), + [sym_switch_statement] = STATE(776), + [sym_case_statement] = STATE(776), + [sym_while_statement] = STATE(776), + [sym_do_statement] = STATE(776), + [sym_for_statement] = STATE(776), + [sym_return_statement] = STATE(776), + [sym_break_statement] = STATE(776), + [sym_continue_statement] = STATE(776), + [sym_goto_statement] = STATE(776), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(776), + [sym_co_return_statement] = STATE(776), + [sym_co_yield_statement] = STATE(776), + [sym_throw_statement] = STATE(776), + [sym_try_statement] = STATE(776), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [171] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1135), + [sym_attributed_statement] = STATE(1135), + [sym_labeled_statement] = STATE(1135), + [sym_expression_statement] = STATE(1135), + [sym_if_statement] = STATE(1135), + [sym_switch_statement] = STATE(1135), + [sym_case_statement] = STATE(1135), + [sym_while_statement] = STATE(1135), + [sym_do_statement] = STATE(1135), + [sym_for_statement] = STATE(1135), + [sym_return_statement] = STATE(1135), + [sym_break_statement] = STATE(1135), + [sym_continue_statement] = STATE(1135), + [sym_goto_statement] = STATE(1135), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1135), + [sym_co_return_statement] = STATE(1135), + [sym_co_yield_statement] = STATE(1135), + [sym_throw_statement] = STATE(1135), + [sym_try_statement] = STATE(1135), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [172] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(775), + [sym_attributed_statement] = STATE(775), + [sym_labeled_statement] = STATE(775), + [sym_expression_statement] = STATE(775), + [sym_if_statement] = STATE(775), + [sym_switch_statement] = STATE(775), + [sym_case_statement] = STATE(775), + [sym_while_statement] = STATE(775), + [sym_do_statement] = STATE(775), + [sym_for_statement] = STATE(775), + [sym_return_statement] = STATE(775), + [sym_break_statement] = STATE(775), + [sym_continue_statement] = STATE(775), + [sym_goto_statement] = STATE(775), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(775), + [sym_co_return_statement] = STATE(775), + [sym_co_yield_statement] = STATE(775), + [sym_throw_statement] = STATE(775), + [sym_try_statement] = STATE(775), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [173] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(6334), + [sym_attributed_statement] = STATE(6334), + [sym_labeled_statement] = STATE(6334), + [sym_expression_statement] = STATE(6334), + [sym_if_statement] = STATE(6334), + [sym_switch_statement] = STATE(6334), + [sym_case_statement] = STATE(6334), + [sym_while_statement] = STATE(6334), + [sym_do_statement] = STATE(6334), + [sym_for_statement] = STATE(6334), + [sym_return_statement] = STATE(6334), + [sym_break_statement] = STATE(6334), + [sym_continue_statement] = STATE(6334), + [sym_goto_statement] = STATE(6334), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(6334), + [sym_co_return_statement] = STATE(6334), + [sym_co_yield_statement] = STATE(6334), + [sym_throw_statement] = STATE(6334), + [sym_try_statement] = STATE(6334), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [174] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(751), + [sym_attributed_statement] = STATE(751), + [sym_labeled_statement] = STATE(751), + [sym_expression_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_switch_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_do_statement] = STATE(751), + [sym_for_statement] = STATE(751), + [sym_return_statement] = STATE(751), + [sym_break_statement] = STATE(751), + [sym_continue_statement] = STATE(751), + [sym_goto_statement] = STATE(751), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(751), + [sym_co_return_statement] = STATE(751), + [sym_co_yield_statement] = STATE(751), + [sym_throw_statement] = STATE(751), + [sym_try_statement] = STATE(751), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [175] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(562), + [sym_attributed_statement] = STATE(562), + [sym_labeled_statement] = STATE(562), + [sym_expression_statement] = STATE(562), + [sym_if_statement] = STATE(562), + [sym_switch_statement] = STATE(562), + [sym_case_statement] = STATE(562), + [sym_while_statement] = STATE(562), + [sym_do_statement] = STATE(562), + [sym_for_statement] = STATE(562), + [sym_return_statement] = STATE(562), + [sym_break_statement] = STATE(562), + [sym_continue_statement] = STATE(562), + [sym_goto_statement] = STATE(562), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(562), + [sym_co_return_statement] = STATE(562), + [sym_co_yield_statement] = STATE(562), + [sym_throw_statement] = STATE(562), + [sym_try_statement] = STATE(562), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [176] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(774), + [sym_attributed_statement] = STATE(773), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(771), + [sym_if_statement] = STATE(770), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(768), + [sym_while_statement] = STATE(767), + [sym_do_statement] = STATE(765), + [sym_for_statement] = STATE(764), + [sym_return_statement] = STATE(763), + [sym_break_statement] = STATE(762), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(760), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(757), + [sym_co_return_statement] = STATE(756), + [sym_co_yield_statement] = STATE(754), + [sym_throw_statement] = STATE(753), + [sym_try_statement] = STATE(750), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [177] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(749), + [sym_attributed_statement] = STATE(748), + [sym_labeled_statement] = STATE(747), + [sym_expression_statement] = STATE(746), + [sym_if_statement] = STATE(744), + [sym_switch_statement] = STATE(743), + [sym_case_statement] = STATE(742), + [sym_while_statement] = STATE(741), + [sym_do_statement] = STATE(740), + [sym_for_statement] = STATE(739), + [sym_return_statement] = STATE(738), + [sym_break_statement] = STATE(737), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(734), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(733), + [sym_co_return_statement] = STATE(732), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(730), + [sym_try_statement] = STATE(729), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [178] = { + [sym_attribute_declaration] = STATE(178), + [sym_compound_statement] = STATE(901), + [sym_attributed_statement] = STATE(901), + [sym_labeled_statement] = STATE(901), + [sym_expression_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_switch_statement] = STATE(901), + [sym_case_statement] = STATE(901), + [sym_while_statement] = STATE(901), + [sym_do_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(901), + [sym_co_return_statement] = STATE(901), + [sym_co_yield_statement] = STATE(901), + [sym_throw_statement] = STATE(901), + [sym_try_statement] = STATE(901), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(1861), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1930), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1936), + [anon_sym_u_SQUOTE] = ACTIONS(1936), + [anon_sym_U_SQUOTE] = ACTIONS(1936), + [anon_sym_u8_SQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_L_DQUOTE] = ACTIONS(1939), + [anon_sym_u_DQUOTE] = ACTIONS(1939), + [anon_sym_U_DQUOTE] = ACTIONS(1939), + [anon_sym_u8_DQUOTE] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym_true] = ACTIONS(1942), + [sym_false] = ACTIONS(1942), + [sym_null] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_delete] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1960), + [anon_sym_R_DQUOTE] = ACTIONS(1963), + [anon_sym_LR_DQUOTE] = ACTIONS(1963), + [anon_sym_uR_DQUOTE] = ACTIONS(1963), + [anon_sym_UR_DQUOTE] = ACTIONS(1963), + [anon_sym_u8R_DQUOTE] = ACTIONS(1963), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_requires] = ACTIONS(1972), + [sym_this] = ACTIONS(1942), + [sym_nullptr] = ACTIONS(1942), + }, + [179] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(728), + [sym_attributed_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(728), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(728), + [sym_co_return_statement] = STATE(728), + [sym_co_yield_statement] = STATE(728), + [sym_throw_statement] = STATE(728), + [sym_try_statement] = STATE(728), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [180] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(727), + [sym_attributed_statement] = STATE(727), + [sym_labeled_statement] = STATE(727), + [sym_expression_statement] = STATE(727), + [sym_if_statement] = STATE(727), + [sym_switch_statement] = STATE(727), + [sym_case_statement] = STATE(727), + [sym_while_statement] = STATE(727), + [sym_do_statement] = STATE(727), + [sym_for_statement] = STATE(727), + [sym_return_statement] = STATE(727), + [sym_break_statement] = STATE(727), + [sym_continue_statement] = STATE(727), + [sym_goto_statement] = STATE(727), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(727), + [sym_co_return_statement] = STATE(727), + [sym_co_yield_statement] = STATE(727), + [sym_throw_statement] = STATE(727), + [sym_try_statement] = STATE(727), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [181] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(6376), + [sym_attributed_statement] = STATE(6376), + [sym_labeled_statement] = STATE(6376), + [sym_expression_statement] = STATE(6376), + [sym_if_statement] = STATE(6376), + [sym_switch_statement] = STATE(6376), + [sym_case_statement] = STATE(6376), + [sym_while_statement] = STATE(6376), + [sym_do_statement] = STATE(6376), + [sym_for_statement] = STATE(6376), + [sym_return_statement] = STATE(6376), + [sym_break_statement] = STATE(6376), + [sym_continue_statement] = STATE(6376), + [sym_goto_statement] = STATE(6376), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(6376), + [sym_co_return_statement] = STATE(6376), + [sym_co_yield_statement] = STATE(6376), + [sym_throw_statement] = STATE(6376), + [sym_try_statement] = STATE(6376), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [182] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(726), + [sym_attributed_statement] = STATE(726), + [sym_labeled_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_if_statement] = STATE(726), + [sym_switch_statement] = STATE(726), + [sym_case_statement] = STATE(726), + [sym_while_statement] = STATE(726), + [sym_do_statement] = STATE(726), + [sym_for_statement] = STATE(726), + [sym_return_statement] = STATE(726), + [sym_break_statement] = STATE(726), + [sym_continue_statement] = STATE(726), + [sym_goto_statement] = STATE(726), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(726), + [sym_co_return_statement] = STATE(726), + [sym_co_yield_statement] = STATE(726), + [sym_throw_statement] = STATE(726), + [sym_try_statement] = STATE(726), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [183] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(725), + [sym_attributed_statement] = STATE(546), + [sym_labeled_statement] = STATE(723), + [sym_expression_statement] = STATE(722), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(817), + [sym_case_statement] = STATE(668), + [sym_while_statement] = STATE(720), + [sym_do_statement] = STATE(719), + [sym_for_statement] = STATE(718), + [sym_return_statement] = STATE(717), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(714), + [sym_goto_statement] = STATE(713), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(712), + [sym_co_return_statement] = STATE(711), + [sym_co_yield_statement] = STATE(710), + [sym_throw_statement] = STATE(709), + [sym_try_statement] = STATE(708), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [184] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(707), + [sym_attributed_statement] = STATE(706), + [sym_labeled_statement] = STATE(705), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(703), + [sym_switch_statement] = STATE(702), + [sym_case_statement] = STATE(701), + [sym_while_statement] = STATE(700), + [sym_do_statement] = STATE(699), + [sym_for_statement] = STATE(698), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(695), + [sym_goto_statement] = STATE(694), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(693), + [sym_co_return_statement] = STATE(691), + [sym_co_yield_statement] = STATE(690), + [sym_throw_statement] = STATE(689), + [sym_try_statement] = STATE(688), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [185] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(672), + [sym_attributed_statement] = STATE(672), + [sym_labeled_statement] = STATE(672), + [sym_expression_statement] = STATE(672), + [sym_if_statement] = STATE(672), + [sym_switch_statement] = STATE(672), + [sym_case_statement] = STATE(672), + [sym_while_statement] = STATE(672), + [sym_do_statement] = STATE(672), + [sym_for_statement] = STATE(672), + [sym_return_statement] = STATE(672), + [sym_break_statement] = STATE(672), + [sym_continue_statement] = STATE(672), + [sym_goto_statement] = STATE(672), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(672), + [sym_co_return_statement] = STATE(672), + [sym_co_yield_statement] = STATE(672), + [sym_throw_statement] = STATE(672), + [sym_try_statement] = STATE(672), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [186] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(828), + [sym_attributed_statement] = STATE(828), + [sym_labeled_statement] = STATE(828), + [sym_expression_statement] = STATE(828), + [sym_if_statement] = STATE(828), + [sym_switch_statement] = STATE(828), + [sym_case_statement] = STATE(828), + [sym_while_statement] = STATE(828), + [sym_do_statement] = STATE(828), + [sym_for_statement] = STATE(828), + [sym_return_statement] = STATE(828), + [sym_break_statement] = STATE(828), + [sym_continue_statement] = STATE(828), + [sym_goto_statement] = STATE(828), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(828), + [sym_co_return_statement] = STATE(828), + [sym_co_yield_statement] = STATE(828), + [sym_throw_statement] = STATE(828), + [sym_try_statement] = STATE(828), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [187] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(786), + [sym_attributed_statement] = STATE(786), + [sym_labeled_statement] = STATE(786), + [sym_expression_statement] = STATE(786), + [sym_if_statement] = STATE(786), + [sym_switch_statement] = STATE(786), + [sym_case_statement] = STATE(786), + [sym_while_statement] = STATE(786), + [sym_do_statement] = STATE(786), + [sym_for_statement] = STATE(786), + [sym_return_statement] = STATE(786), + [sym_break_statement] = STATE(786), + [sym_continue_statement] = STATE(786), + [sym_goto_statement] = STATE(786), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(786), + [sym_co_return_statement] = STATE(786), + [sym_co_yield_statement] = STATE(786), + [sym_throw_statement] = STATE(786), + [sym_try_statement] = STATE(786), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [188] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(785), + [sym_attributed_statement] = STATE(785), + [sym_labeled_statement] = STATE(785), + [sym_expression_statement] = STATE(785), + [sym_if_statement] = STATE(785), + [sym_switch_statement] = STATE(785), + [sym_case_statement] = STATE(785), + [sym_while_statement] = STATE(785), + [sym_do_statement] = STATE(785), + [sym_for_statement] = STATE(785), + [sym_return_statement] = STATE(785), + [sym_break_statement] = STATE(785), + [sym_continue_statement] = STATE(785), + [sym_goto_statement] = STATE(785), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(785), + [sym_co_return_statement] = STATE(785), + [sym_co_yield_statement] = STATE(785), + [sym_throw_statement] = STATE(785), + [sym_try_statement] = STATE(785), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [189] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(792), + [sym_attributed_statement] = STATE(792), + [sym_labeled_statement] = STATE(792), + [sym_expression_statement] = STATE(792), + [sym_if_statement] = STATE(792), + [sym_switch_statement] = STATE(792), + [sym_case_statement] = STATE(792), + [sym_while_statement] = STATE(792), + [sym_do_statement] = STATE(792), + [sym_for_statement] = STATE(792), + [sym_return_statement] = STATE(792), + [sym_break_statement] = STATE(792), + [sym_continue_statement] = STATE(792), + [sym_goto_statement] = STATE(792), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(792), + [sym_co_return_statement] = STATE(792), + [sym_co_yield_statement] = STATE(792), + [sym_throw_statement] = STATE(792), + [sym_try_statement] = STATE(792), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [190] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(791), + [sym_attributed_statement] = STATE(791), + [sym_labeled_statement] = STATE(791), + [sym_expression_statement] = STATE(791), + [sym_if_statement] = STATE(791), + [sym_switch_statement] = STATE(791), + [sym_case_statement] = STATE(791), + [sym_while_statement] = STATE(791), + [sym_do_statement] = STATE(791), + [sym_for_statement] = STATE(791), + [sym_return_statement] = STATE(791), + [sym_break_statement] = STATE(791), + [sym_continue_statement] = STATE(791), + [sym_goto_statement] = STATE(791), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(791), + [sym_co_return_statement] = STATE(791), + [sym_co_yield_statement] = STATE(791), + [sym_throw_statement] = STATE(791), + [sym_try_statement] = STATE(791), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [191] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(788), + [sym_attributed_statement] = STATE(788), + [sym_labeled_statement] = STATE(788), + [sym_expression_statement] = STATE(788), + [sym_if_statement] = STATE(788), + [sym_switch_statement] = STATE(788), + [sym_case_statement] = STATE(788), + [sym_while_statement] = STATE(788), + [sym_do_statement] = STATE(788), + [sym_for_statement] = STATE(788), + [sym_return_statement] = STATE(788), + [sym_break_statement] = STATE(788), + [sym_continue_statement] = STATE(788), + [sym_goto_statement] = STATE(788), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(788), + [sym_co_return_statement] = STATE(788), + [sym_co_yield_statement] = STATE(788), + [sym_throw_statement] = STATE(788), + [sym_try_statement] = STATE(788), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [192] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(784), + [sym_attributed_statement] = STATE(784), + [sym_labeled_statement] = STATE(784), + [sym_expression_statement] = STATE(784), + [sym_if_statement] = STATE(784), + [sym_switch_statement] = STATE(784), + [sym_case_statement] = STATE(784), + [sym_while_statement] = STATE(784), + [sym_do_statement] = STATE(784), + [sym_for_statement] = STATE(784), + [sym_return_statement] = STATE(784), + [sym_break_statement] = STATE(784), + [sym_continue_statement] = STATE(784), + [sym_goto_statement] = STATE(784), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(784), + [sym_co_return_statement] = STATE(784), + [sym_co_yield_statement] = STATE(784), + [sym_throw_statement] = STATE(784), + [sym_try_statement] = STATE(784), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [193] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(666), + [sym_attributed_statement] = STATE(666), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(666), + [sym_if_statement] = STATE(666), + [sym_switch_statement] = STATE(666), + [sym_case_statement] = STATE(666), + [sym_while_statement] = STATE(666), + [sym_do_statement] = STATE(666), + [sym_for_statement] = STATE(666), + [sym_return_statement] = STATE(666), + [sym_break_statement] = STATE(666), + [sym_continue_statement] = STATE(666), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(666), + [sym_co_return_statement] = STATE(666), + [sym_co_yield_statement] = STATE(666), + [sym_throw_statement] = STATE(666), + [sym_try_statement] = STATE(666), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [194] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(783), + [sym_attributed_statement] = STATE(783), + [sym_labeled_statement] = STATE(783), + [sym_expression_statement] = STATE(783), + [sym_if_statement] = STATE(783), + [sym_switch_statement] = STATE(783), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(783), + [sym_do_statement] = STATE(783), + [sym_for_statement] = STATE(783), + [sym_return_statement] = STATE(783), + [sym_break_statement] = STATE(783), + [sym_continue_statement] = STATE(783), + [sym_goto_statement] = STATE(783), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(783), + [sym_co_return_statement] = STATE(783), + [sym_co_yield_statement] = STATE(783), + [sym_throw_statement] = STATE(783), + [sym_try_statement] = STATE(783), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [195] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(664), + [sym_attributed_statement] = STATE(664), + [sym_labeled_statement] = STATE(664), + [sym_expression_statement] = STATE(664), + [sym_if_statement] = STATE(664), + [sym_switch_statement] = STATE(664), + [sym_case_statement] = STATE(664), + [sym_while_statement] = STATE(664), + [sym_do_statement] = STATE(664), + [sym_for_statement] = STATE(664), + [sym_return_statement] = STATE(664), + [sym_break_statement] = STATE(664), + [sym_continue_statement] = STATE(664), + [sym_goto_statement] = STATE(664), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(664), + [sym_co_return_statement] = STATE(664), + [sym_co_yield_statement] = STATE(664), + [sym_throw_statement] = STATE(664), + [sym_try_statement] = STATE(664), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [196] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(782), + [sym_attributed_statement] = STATE(782), + [sym_labeled_statement] = STATE(782), + [sym_expression_statement] = STATE(782), + [sym_if_statement] = STATE(782), + [sym_switch_statement] = STATE(782), + [sym_case_statement] = STATE(782), + [sym_while_statement] = STATE(782), + [sym_do_statement] = STATE(782), + [sym_for_statement] = STATE(782), + [sym_return_statement] = STATE(782), + [sym_break_statement] = STATE(782), + [sym_continue_statement] = STATE(782), + [sym_goto_statement] = STATE(782), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(782), + [sym_co_return_statement] = STATE(782), + [sym_co_yield_statement] = STATE(782), + [sym_throw_statement] = STATE(782), + [sym_try_statement] = STATE(782), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [197] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(758), + [sym_attributed_statement] = STATE(758), + [sym_labeled_statement] = STATE(758), + [sym_expression_statement] = STATE(758), + [sym_if_statement] = STATE(758), + [sym_switch_statement] = STATE(758), + [sym_case_statement] = STATE(758), + [sym_while_statement] = STATE(758), + [sym_do_statement] = STATE(758), + [sym_for_statement] = STATE(758), + [sym_return_statement] = STATE(758), + [sym_break_statement] = STATE(758), + [sym_continue_statement] = STATE(758), + [sym_goto_statement] = STATE(758), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(758), + [sym_co_return_statement] = STATE(758), + [sym_co_yield_statement] = STATE(758), + [sym_throw_statement] = STATE(758), + [sym_try_statement] = STATE(758), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [198] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(781), + [sym_attributed_statement] = STATE(781), + [sym_labeled_statement] = STATE(781), + [sym_expression_statement] = STATE(781), + [sym_if_statement] = STATE(781), + [sym_switch_statement] = STATE(781), + [sym_case_statement] = STATE(781), + [sym_while_statement] = STATE(781), + [sym_do_statement] = STATE(781), + [sym_for_statement] = STATE(781), + [sym_return_statement] = STATE(781), + [sym_break_statement] = STATE(781), + [sym_continue_statement] = STATE(781), + [sym_goto_statement] = STATE(781), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(781), + [sym_co_return_statement] = STATE(781), + [sym_co_yield_statement] = STATE(781), + [sym_throw_statement] = STATE(781), + [sym_try_statement] = STATE(781), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [199] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(780), + [sym_attributed_statement] = STATE(780), + [sym_labeled_statement] = STATE(780), + [sym_expression_statement] = STATE(780), + [sym_if_statement] = STATE(780), + [sym_switch_statement] = STATE(780), + [sym_case_statement] = STATE(780), + [sym_while_statement] = STATE(780), + [sym_do_statement] = STATE(780), + [sym_for_statement] = STATE(780), + [sym_return_statement] = STATE(780), + [sym_break_statement] = STATE(780), + [sym_continue_statement] = STATE(780), + [sym_goto_statement] = STATE(780), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(780), + [sym_co_return_statement] = STATE(780), + [sym_co_yield_statement] = STATE(780), + [sym_throw_statement] = STATE(780), + [sym_try_statement] = STATE(780), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [200] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(660), + [sym_attributed_statement] = STATE(660), + [sym_labeled_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_case_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_goto_statement] = STATE(660), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(660), + [sym_co_return_statement] = STATE(660), + [sym_co_yield_statement] = STATE(660), + [sym_throw_statement] = STATE(660), + [sym_try_statement] = STATE(660), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [201] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(751), + [sym_attributed_statement] = STATE(751), + [sym_labeled_statement] = STATE(751), + [sym_expression_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_switch_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_do_statement] = STATE(751), + [sym_for_statement] = STATE(751), + [sym_return_statement] = STATE(751), + [sym_break_statement] = STATE(751), + [sym_continue_statement] = STATE(751), + [sym_goto_statement] = STATE(751), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(751), + [sym_co_return_statement] = STATE(751), + [sym_co_yield_statement] = STATE(751), + [sym_throw_statement] = STATE(751), + [sym_try_statement] = STATE(751), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [202] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(779), + [sym_attributed_statement] = STATE(779), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(779), + [sym_co_return_statement] = STATE(779), + [sym_co_yield_statement] = STATE(779), + [sym_throw_statement] = STATE(779), + [sym_try_statement] = STATE(779), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [203] = { + [sym_attribute_declaration] = STATE(203), + [sym_compound_statement] = STATE(672), + [sym_attributed_statement] = STATE(672), + [sym_labeled_statement] = STATE(672), + [sym_expression_statement] = STATE(672), + [sym_if_statement] = STATE(672), + [sym_switch_statement] = STATE(672), + [sym_case_statement] = STATE(672), + [sym_while_statement] = STATE(672), + [sym_do_statement] = STATE(672), + [sym_for_statement] = STATE(672), + [sym_return_statement] = STATE(672), + [sym_break_statement] = STATE(672), + [sym_continue_statement] = STATE(672), + [sym_goto_statement] = STATE(672), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(672), + [sym_co_return_statement] = STATE(672), + [sym_co_yield_statement] = STATE(672), + [sym_throw_statement] = STATE(672), + [sym_try_statement] = STATE(672), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1975), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1987), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2011), + [anon_sym_goto] = ACTIONS(2014), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1930), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1936), + [anon_sym_u_SQUOTE] = ACTIONS(1936), + [anon_sym_U_SQUOTE] = ACTIONS(1936), + [anon_sym_u8_SQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_L_DQUOTE] = ACTIONS(1939), + [anon_sym_u_DQUOTE] = ACTIONS(1939), + [anon_sym_U_DQUOTE] = ACTIONS(1939), + [anon_sym_u8_DQUOTE] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym_true] = ACTIONS(1942), + [sym_false] = ACTIONS(1942), + [sym_null] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_delete] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(2020), + [anon_sym_co_return] = ACTIONS(2023), + [anon_sym_co_yield] = ACTIONS(2026), + [anon_sym_R_DQUOTE] = ACTIONS(1963), + [anon_sym_LR_DQUOTE] = ACTIONS(1963), + [anon_sym_uR_DQUOTE] = ACTIONS(1963), + [anon_sym_UR_DQUOTE] = ACTIONS(1963), + [anon_sym_u8R_DQUOTE] = ACTIONS(1963), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_requires] = ACTIONS(1972), + [sym_this] = ACTIONS(1942), + [sym_nullptr] = ACTIONS(1942), + }, + [204] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(650), + [sym_attributed_statement] = STATE(650), + [sym_labeled_statement] = STATE(650), + [sym_expression_statement] = STATE(650), + [sym_if_statement] = STATE(650), + [sym_switch_statement] = STATE(650), + [sym_case_statement] = STATE(650), + [sym_while_statement] = STATE(650), + [sym_do_statement] = STATE(650), + [sym_for_statement] = STATE(650), + [sym_return_statement] = STATE(650), + [sym_break_statement] = STATE(650), + [sym_continue_statement] = STATE(650), + [sym_goto_statement] = STATE(650), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(650), + [sym_co_return_statement] = STATE(650), + [sym_co_yield_statement] = STATE(650), + [sym_throw_statement] = STATE(650), + [sym_try_statement] = STATE(650), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [205] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(776), + [sym_attributed_statement] = STATE(776), + [sym_labeled_statement] = STATE(776), + [sym_expression_statement] = STATE(776), + [sym_if_statement] = STATE(776), + [sym_switch_statement] = STATE(776), + [sym_case_statement] = STATE(776), + [sym_while_statement] = STATE(776), + [sym_do_statement] = STATE(776), + [sym_for_statement] = STATE(776), + [sym_return_statement] = STATE(776), + [sym_break_statement] = STATE(776), + [sym_continue_statement] = STATE(776), + [sym_goto_statement] = STATE(776), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(776), + [sym_co_return_statement] = STATE(776), + [sym_co_yield_statement] = STATE(776), + [sym_throw_statement] = STATE(776), + [sym_try_statement] = STATE(776), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [206] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(775), + [sym_attributed_statement] = STATE(775), + [sym_labeled_statement] = STATE(775), + [sym_expression_statement] = STATE(775), + [sym_if_statement] = STATE(775), + [sym_switch_statement] = STATE(775), + [sym_case_statement] = STATE(775), + [sym_while_statement] = STATE(775), + [sym_do_statement] = STATE(775), + [sym_for_statement] = STATE(775), + [sym_return_statement] = STATE(775), + [sym_break_statement] = STATE(775), + [sym_continue_statement] = STATE(775), + [sym_goto_statement] = STATE(775), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(775), + [sym_co_return_statement] = STATE(775), + [sym_co_yield_statement] = STATE(775), + [sym_throw_statement] = STATE(775), + [sym_try_statement] = STATE(775), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [207] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(774), + [sym_attributed_statement] = STATE(773), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(771), + [sym_if_statement] = STATE(770), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(768), + [sym_while_statement] = STATE(767), + [sym_do_statement] = STATE(765), + [sym_for_statement] = STATE(764), + [sym_return_statement] = STATE(763), + [sym_break_statement] = STATE(762), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(760), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(757), + [sym_co_return_statement] = STATE(756), + [sym_co_yield_statement] = STATE(754), + [sym_throw_statement] = STATE(753), + [sym_try_statement] = STATE(750), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [208] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(749), + [sym_attributed_statement] = STATE(748), + [sym_labeled_statement] = STATE(747), + [sym_expression_statement] = STATE(746), + [sym_if_statement] = STATE(744), + [sym_switch_statement] = STATE(743), + [sym_case_statement] = STATE(742), + [sym_while_statement] = STATE(741), + [sym_do_statement] = STATE(740), + [sym_for_statement] = STATE(739), + [sym_return_statement] = STATE(738), + [sym_break_statement] = STATE(737), + [sym_continue_statement] = STATE(736), + [sym_goto_statement] = STATE(734), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(733), + [sym_co_return_statement] = STATE(732), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(730), + [sym_try_statement] = STATE(729), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [209] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(728), + [sym_attributed_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(728), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(728), + [sym_co_return_statement] = STATE(728), + [sym_co_yield_statement] = STATE(728), + [sym_throw_statement] = STATE(728), + [sym_try_statement] = STATE(728), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [210] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(727), + [sym_attributed_statement] = STATE(727), + [sym_labeled_statement] = STATE(727), + [sym_expression_statement] = STATE(727), + [sym_if_statement] = STATE(727), + [sym_switch_statement] = STATE(727), + [sym_case_statement] = STATE(727), + [sym_while_statement] = STATE(727), + [sym_do_statement] = STATE(727), + [sym_for_statement] = STATE(727), + [sym_return_statement] = STATE(727), + [sym_break_statement] = STATE(727), + [sym_continue_statement] = STATE(727), + [sym_goto_statement] = STATE(727), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(727), + [sym_co_return_statement] = STATE(727), + [sym_co_yield_statement] = STATE(727), + [sym_throw_statement] = STATE(727), + [sym_try_statement] = STATE(727), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [211] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(726), + [sym_attributed_statement] = STATE(726), + [sym_labeled_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_if_statement] = STATE(726), + [sym_switch_statement] = STATE(726), + [sym_case_statement] = STATE(726), + [sym_while_statement] = STATE(726), + [sym_do_statement] = STATE(726), + [sym_for_statement] = STATE(726), + [sym_return_statement] = STATE(726), + [sym_break_statement] = STATE(726), + [sym_continue_statement] = STATE(726), + [sym_goto_statement] = STATE(726), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(726), + [sym_co_return_statement] = STATE(726), + [sym_co_yield_statement] = STATE(726), + [sym_throw_statement] = STATE(726), + [sym_try_statement] = STATE(726), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [212] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(725), + [sym_attributed_statement] = STATE(546), + [sym_labeled_statement] = STATE(723), + [sym_expression_statement] = STATE(722), + [sym_if_statement] = STATE(715), + [sym_switch_statement] = STATE(817), + [sym_case_statement] = STATE(668), + [sym_while_statement] = STATE(720), + [sym_do_statement] = STATE(719), + [sym_for_statement] = STATE(718), + [sym_return_statement] = STATE(717), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(714), + [sym_goto_statement] = STATE(713), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(712), + [sym_co_return_statement] = STATE(711), + [sym_co_yield_statement] = STATE(710), + [sym_throw_statement] = STATE(709), + [sym_try_statement] = STATE(708), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [213] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(707), + [sym_attributed_statement] = STATE(706), + [sym_labeled_statement] = STATE(705), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(703), + [sym_switch_statement] = STATE(702), + [sym_case_statement] = STATE(701), + [sym_while_statement] = STATE(700), + [sym_do_statement] = STATE(699), + [sym_for_statement] = STATE(698), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(696), + [sym_continue_statement] = STATE(695), + [sym_goto_statement] = STATE(694), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(693), + [sym_co_return_statement] = STATE(691), + [sym_co_yield_statement] = STATE(690), + [sym_throw_statement] = STATE(689), + [sym_try_statement] = STATE(688), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [214] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(681), + [sym_attributed_statement] = STATE(681), + [sym_labeled_statement] = STATE(681), + [sym_expression_statement] = STATE(681), + [sym_if_statement] = STATE(681), + [sym_switch_statement] = STATE(681), + [sym_case_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_statement] = STATE(681), + [sym_for_statement] = STATE(681), + [sym_return_statement] = STATE(681), + [sym_break_statement] = STATE(681), + [sym_continue_statement] = STATE(681), + [sym_goto_statement] = STATE(681), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(681), + [sym_co_return_statement] = STATE(681), + [sym_co_yield_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym_try_statement] = STATE(681), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [215] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(630), + [sym_attributed_statement] = STATE(630), + [sym_labeled_statement] = STATE(630), + [sym_expression_statement] = STATE(630), + [sym_if_statement] = STATE(630), + [sym_switch_statement] = STATE(630), + [sym_case_statement] = STATE(630), + [sym_while_statement] = STATE(630), + [sym_do_statement] = STATE(630), + [sym_for_statement] = STATE(630), + [sym_return_statement] = STATE(630), + [sym_break_statement] = STATE(630), + [sym_continue_statement] = STATE(630), + [sym_goto_statement] = STATE(630), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(630), + [sym_co_return_statement] = STATE(630), + [sym_co_yield_statement] = STATE(630), + [sym_throw_statement] = STATE(630), + [sym_try_statement] = STATE(630), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [216] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(779), + [sym_attributed_statement] = STATE(779), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(779), + [sym_co_return_statement] = STATE(779), + [sym_co_yield_statement] = STATE(779), + [sym_throw_statement] = STATE(779), + [sym_try_statement] = STATE(779), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [217] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1146), + [sym_attributed_statement] = STATE(1150), + [sym_labeled_statement] = STATE(1153), + [sym_expression_statement] = STATE(1154), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1163), + [sym_case_statement] = STATE(1164), + [sym_while_statement] = STATE(1165), + [sym_do_statement] = STATE(1167), + [sym_for_statement] = STATE(1168), + [sym_return_statement] = STATE(1169), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1171), + [sym_goto_statement] = STATE(1175), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1180), + [sym_co_return_statement] = STATE(1181), + [sym_co_yield_statement] = STATE(1182), + [sym_throw_statement] = STATE(1183), + [sym_try_statement] = STATE(1184), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [218] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1190), + [sym_attributed_statement] = STATE(1189), + [sym_labeled_statement] = STATE(1201), + [sym_expression_statement] = STATE(1124), + [sym_if_statement] = STATE(1125), + [sym_switch_statement] = STATE(1126), + [sym_case_statement] = STATE(1127), + [sym_while_statement] = STATE(1128), + [sym_do_statement] = STATE(1130), + [sym_for_statement] = STATE(1131), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1136), + [sym_continue_statement] = STATE(1137), + [sym_goto_statement] = STATE(1138), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1139), + [sym_co_return_statement] = STATE(1142), + [sym_co_yield_statement] = STATE(1143), + [sym_throw_statement] = STATE(1144), + [sym_try_statement] = STATE(1145), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [219] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1197), + [sym_attributed_statement] = STATE(1197), + [sym_labeled_statement] = STATE(1197), + [sym_expression_statement] = STATE(1197), + [sym_if_statement] = STATE(1197), + [sym_switch_statement] = STATE(1197), + [sym_case_statement] = STATE(1197), + [sym_while_statement] = STATE(1197), + [sym_do_statement] = STATE(1197), + [sym_for_statement] = STATE(1197), + [sym_return_statement] = STATE(1197), + [sym_break_statement] = STATE(1197), + [sym_continue_statement] = STATE(1197), + [sym_goto_statement] = STATE(1197), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1197), + [sym_co_return_statement] = STATE(1197), + [sym_co_yield_statement] = STATE(1197), + [sym_throw_statement] = STATE(1197), + [sym_try_statement] = STATE(1197), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [220] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(622), + [sym_attributed_statement] = STATE(622), + [sym_labeled_statement] = STATE(622), + [sym_expression_statement] = STATE(622), + [sym_if_statement] = STATE(622), + [sym_switch_statement] = STATE(622), + [sym_case_statement] = STATE(622), + [sym_while_statement] = STATE(622), + [sym_do_statement] = STATE(622), + [sym_for_statement] = STATE(622), + [sym_return_statement] = STATE(622), + [sym_break_statement] = STATE(622), + [sym_continue_statement] = STATE(622), + [sym_goto_statement] = STATE(622), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(622), + [sym_co_return_statement] = STATE(622), + [sym_co_yield_statement] = STATE(622), + [sym_throw_statement] = STATE(622), + [sym_try_statement] = STATE(622), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [221] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(621), + [sym_attributed_statement] = STATE(621), + [sym_labeled_statement] = STATE(621), + [sym_expression_statement] = STATE(621), + [sym_if_statement] = STATE(621), + [sym_switch_statement] = STATE(621), + [sym_case_statement] = STATE(621), + [sym_while_statement] = STATE(621), + [sym_do_statement] = STATE(621), + [sym_for_statement] = STATE(621), + [sym_return_statement] = STATE(621), + [sym_break_statement] = STATE(621), + [sym_continue_statement] = STATE(621), + [sym_goto_statement] = STATE(621), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(621), + [sym_co_return_statement] = STATE(621), + [sym_co_yield_statement] = STATE(621), + [sym_throw_statement] = STATE(621), + [sym_try_statement] = STATE(621), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [222] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(620), + [sym_attributed_statement] = STATE(620), + [sym_labeled_statement] = STATE(620), + [sym_expression_statement] = STATE(620), + [sym_if_statement] = STATE(620), + [sym_switch_statement] = STATE(620), + [sym_case_statement] = STATE(620), + [sym_while_statement] = STATE(620), + [sym_do_statement] = STATE(620), + [sym_for_statement] = STATE(620), + [sym_return_statement] = STATE(620), + [sym_break_statement] = STATE(620), + [sym_continue_statement] = STATE(620), + [sym_goto_statement] = STATE(620), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(620), + [sym_co_return_statement] = STATE(620), + [sym_co_yield_statement] = STATE(620), + [sym_throw_statement] = STATE(620), + [sym_try_statement] = STATE(620), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [223] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(562), + [sym_attributed_statement] = STATE(562), + [sym_labeled_statement] = STATE(562), + [sym_expression_statement] = STATE(562), + [sym_if_statement] = STATE(562), + [sym_switch_statement] = STATE(562), + [sym_case_statement] = STATE(562), + [sym_while_statement] = STATE(562), + [sym_do_statement] = STATE(562), + [sym_for_statement] = STATE(562), + [sym_return_statement] = STATE(562), + [sym_break_statement] = STATE(562), + [sym_continue_statement] = STATE(562), + [sym_goto_statement] = STATE(562), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(562), + [sym_co_return_statement] = STATE(562), + [sym_co_yield_statement] = STATE(562), + [sym_throw_statement] = STATE(562), + [sym_try_statement] = STATE(562), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [224] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(661), + [sym_attributed_statement] = STATE(661), + [sym_labeled_statement] = STATE(661), + [sym_expression_statement] = STATE(661), + [sym_if_statement] = STATE(661), + [sym_switch_statement] = STATE(661), + [sym_case_statement] = STATE(661), + [sym_while_statement] = STATE(661), + [sym_do_statement] = STATE(661), + [sym_for_statement] = STATE(661), + [sym_return_statement] = STATE(661), + [sym_break_statement] = STATE(661), + [sym_continue_statement] = STATE(661), + [sym_goto_statement] = STATE(661), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(661), + [sym_co_return_statement] = STATE(661), + [sym_co_yield_statement] = STATE(661), + [sym_throw_statement] = STATE(661), + [sym_try_statement] = STATE(661), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [225] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(619), + [sym_attributed_statement] = STATE(619), + [sym_labeled_statement] = STATE(619), + [sym_expression_statement] = STATE(619), + [sym_if_statement] = STATE(619), + [sym_switch_statement] = STATE(619), + [sym_case_statement] = STATE(619), + [sym_while_statement] = STATE(619), + [sym_do_statement] = STATE(619), + [sym_for_statement] = STATE(619), + [sym_return_statement] = STATE(619), + [sym_break_statement] = STATE(619), + [sym_continue_statement] = STATE(619), + [sym_goto_statement] = STATE(619), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(619), + [sym_co_return_statement] = STATE(619), + [sym_co_yield_statement] = STATE(619), + [sym_throw_statement] = STATE(619), + [sym_try_statement] = STATE(619), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [226] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(618), + [sym_attributed_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(618), + [sym_co_return_statement] = STATE(618), + [sym_co_yield_statement] = STATE(618), + [sym_throw_statement] = STATE(618), + [sym_try_statement] = STATE(618), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [227] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(617), + [sym_attributed_statement] = STATE(617), + [sym_labeled_statement] = STATE(617), + [sym_expression_statement] = STATE(617), + [sym_if_statement] = STATE(617), + [sym_switch_statement] = STATE(617), + [sym_case_statement] = STATE(617), + [sym_while_statement] = STATE(617), + [sym_do_statement] = STATE(617), + [sym_for_statement] = STATE(617), + [sym_return_statement] = STATE(617), + [sym_break_statement] = STATE(617), + [sym_continue_statement] = STATE(617), + [sym_goto_statement] = STATE(617), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(617), + [sym_co_return_statement] = STATE(617), + [sym_co_yield_statement] = STATE(617), + [sym_throw_statement] = STATE(617), + [sym_try_statement] = STATE(617), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [228] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(616), + [sym_attributed_statement] = STATE(616), + [sym_labeled_statement] = STATE(616), + [sym_expression_statement] = STATE(616), + [sym_if_statement] = STATE(616), + [sym_switch_statement] = STATE(616), + [sym_case_statement] = STATE(616), + [sym_while_statement] = STATE(616), + [sym_do_statement] = STATE(616), + [sym_for_statement] = STATE(616), + [sym_return_statement] = STATE(616), + [sym_break_statement] = STATE(616), + [sym_continue_statement] = STATE(616), + [sym_goto_statement] = STATE(616), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(616), + [sym_co_return_statement] = STATE(616), + [sym_co_yield_statement] = STATE(616), + [sym_throw_statement] = STATE(616), + [sym_try_statement] = STATE(616), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [229] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(615), + [sym_attributed_statement] = STATE(615), + [sym_labeled_statement] = STATE(615), + [sym_expression_statement] = STATE(615), + [sym_if_statement] = STATE(615), + [sym_switch_statement] = STATE(615), + [sym_case_statement] = STATE(615), + [sym_while_statement] = STATE(615), + [sym_do_statement] = STATE(615), + [sym_for_statement] = STATE(615), + [sym_return_statement] = STATE(615), + [sym_break_statement] = STATE(615), + [sym_continue_statement] = STATE(615), + [sym_goto_statement] = STATE(615), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(615), + [sym_co_return_statement] = STATE(615), + [sym_co_yield_statement] = STATE(615), + [sym_throw_statement] = STATE(615), + [sym_try_statement] = STATE(615), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [230] = { + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1195), + [sym_attributed_statement] = STATE(1195), + [sym_labeled_statement] = STATE(1195), + [sym_expression_statement] = STATE(1195), + [sym_if_statement] = STATE(1195), + [sym_switch_statement] = STATE(1195), + [sym_case_statement] = STATE(1195), + [sym_while_statement] = STATE(1195), + [sym_do_statement] = STATE(1195), + [sym_for_statement] = STATE(1195), + [sym_return_statement] = STATE(1195), + [sym_break_statement] = STATE(1195), + [sym_continue_statement] = STATE(1195), + [sym_goto_statement] = STATE(1195), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1195), + [sym_co_return_statement] = STATE(1195), + [sym_co_yield_statement] = STATE(1195), + [sym_throw_statement] = STATE(1195), + [sym_try_statement] = STATE(1195), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2029), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_switch] = ACTIONS(2041), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_goto] = ACTIONS(2062), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1930), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1936), + [anon_sym_u_SQUOTE] = ACTIONS(1936), + [anon_sym_U_SQUOTE] = ACTIONS(1936), + [anon_sym_u8_SQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_L_DQUOTE] = ACTIONS(1939), + [anon_sym_u_DQUOTE] = ACTIONS(1939), + [anon_sym_U_DQUOTE] = ACTIONS(1939), + [anon_sym_u8_DQUOTE] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym_true] = ACTIONS(1942), + [sym_false] = ACTIONS(1942), + [sym_null] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(2068), + [anon_sym_co_return] = ACTIONS(2071), + [anon_sym_co_yield] = ACTIONS(2074), + [anon_sym_R_DQUOTE] = ACTIONS(1963), + [anon_sym_LR_DQUOTE] = ACTIONS(1963), + [anon_sym_uR_DQUOTE] = ACTIONS(1963), + [anon_sym_UR_DQUOTE] = ACTIONS(1963), + [anon_sym_u8R_DQUOTE] = ACTIONS(1963), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_requires] = ACTIONS(1972), + [sym_this] = ACTIONS(1942), + [sym_nullptr] = ACTIONS(1942), + }, + [231] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(614), + [sym_attributed_statement] = STATE(614), + [sym_labeled_statement] = STATE(614), + [sym_expression_statement] = STATE(614), + [sym_if_statement] = STATE(614), + [sym_switch_statement] = STATE(614), + [sym_case_statement] = STATE(614), + [sym_while_statement] = STATE(614), + [sym_do_statement] = STATE(614), + [sym_for_statement] = STATE(614), + [sym_return_statement] = STATE(614), + [sym_break_statement] = STATE(614), + [sym_continue_statement] = STATE(614), + [sym_goto_statement] = STATE(614), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(614), + [sym_co_return_statement] = STATE(614), + [sym_co_yield_statement] = STATE(614), + [sym_throw_statement] = STATE(614), + [sym_try_statement] = STATE(614), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [232] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(613), + [sym_attributed_statement] = STATE(613), + [sym_labeled_statement] = STATE(613), + [sym_expression_statement] = STATE(613), + [sym_if_statement] = STATE(613), + [sym_switch_statement] = STATE(613), + [sym_case_statement] = STATE(613), + [sym_while_statement] = STATE(613), + [sym_do_statement] = STATE(613), + [sym_for_statement] = STATE(613), + [sym_return_statement] = STATE(613), + [sym_break_statement] = STATE(613), + [sym_continue_statement] = STATE(613), + [sym_goto_statement] = STATE(613), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(613), + [sym_co_return_statement] = STATE(613), + [sym_co_yield_statement] = STATE(613), + [sym_throw_statement] = STATE(613), + [sym_try_statement] = STATE(613), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [233] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(612), + [sym_attributed_statement] = STATE(611), + [sym_labeled_statement] = STATE(610), + [sym_expression_statement] = STATE(609), + [sym_if_statement] = STATE(608), + [sym_switch_statement] = STATE(607), + [sym_case_statement] = STATE(606), + [sym_while_statement] = STATE(604), + [sym_do_statement] = STATE(603), + [sym_for_statement] = STATE(602), + [sym_return_statement] = STATE(601), + [sym_break_statement] = STATE(600), + [sym_continue_statement] = STATE(599), + [sym_goto_statement] = STATE(597), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(596), + [sym_co_return_statement] = STATE(545), + [sym_co_yield_statement] = STATE(594), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(592), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [234] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(591), + [sym_attributed_statement] = STATE(590), + [sym_labeled_statement] = STATE(589), + [sym_expression_statement] = STATE(588), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(586), + [sym_case_statement] = STATE(585), + [sym_while_statement] = STATE(584), + [sym_do_statement] = STATE(583), + [sym_for_statement] = STATE(582), + [sym_return_statement] = STATE(581), + [sym_break_statement] = STATE(580), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(575), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(574), + [sym_co_return_statement] = STATE(573), + [sym_co_yield_statement] = STATE(572), + [sym_throw_statement] = STATE(570), + [sym_try_statement] = STATE(569), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [235] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [236] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(565), + [sym_attributed_statement] = STATE(565), + [sym_labeled_statement] = STATE(565), + [sym_expression_statement] = STATE(565), + [sym_if_statement] = STATE(565), + [sym_switch_statement] = STATE(565), + [sym_case_statement] = STATE(565), + [sym_while_statement] = STATE(565), + [sym_do_statement] = STATE(565), + [sym_for_statement] = STATE(565), + [sym_return_statement] = STATE(565), + [sym_break_statement] = STATE(565), + [sym_continue_statement] = STATE(565), + [sym_goto_statement] = STATE(565), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(565), + [sym_co_return_statement] = STATE(565), + [sym_co_yield_statement] = STATE(565), + [sym_throw_statement] = STATE(565), + [sym_try_statement] = STATE(565), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [237] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(563), + [sym_attributed_statement] = STATE(560), + [sym_labeled_statement] = STATE(559), + [sym_expression_statement] = STATE(558), + [sym_if_statement] = STATE(557), + [sym_switch_statement] = STATE(556), + [sym_case_statement] = STATE(555), + [sym_while_statement] = STATE(554), + [sym_do_statement] = STATE(553), + [sym_for_statement] = STATE(552), + [sym_return_statement] = STATE(551), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(549), + [sym_goto_statement] = STATE(548), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(547), + [sym_co_return_statement] = STATE(724), + [sym_co_yield_statement] = STATE(567), + [sym_throw_statement] = STATE(579), + [sym_try_statement] = STATE(626), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [238] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(627), + [sym_attributed_statement] = STATE(629), + [sym_labeled_statement] = STATE(634), + [sym_expression_statement] = STATE(636), + [sym_if_statement] = STATE(640), + [sym_switch_statement] = STATE(641), + [sym_case_statement] = STATE(649), + [sym_while_statement] = STATE(653), + [sym_do_statement] = STATE(659), + [sym_for_statement] = STATE(667), + [sym_return_statement] = STATE(669), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(673), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(3748), + [sym_comma_expression] = STATE(6914), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(685), + [sym_co_return_statement] = STATE(686), + [sym_co_yield_statement] = STATE(721), + [sym_throw_statement] = STATE(735), + [sym_try_statement] = STATE(745), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [239] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(470), + [sym_attributed_statement] = STATE(470), + [sym_labeled_statement] = STATE(470), + [sym_expression_statement] = STATE(470), + [sym_if_statement] = STATE(470), + [sym_switch_statement] = STATE(470), + [sym_case_statement] = STATE(470), + [sym_while_statement] = STATE(470), + [sym_do_statement] = STATE(470), + [sym_for_statement] = STATE(470), + [sym_return_statement] = STATE(470), + [sym_break_statement] = STATE(470), + [sym_continue_statement] = STATE(470), + [sym_goto_statement] = STATE(470), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(470), + [sym_co_return_statement] = STATE(470), + [sym_co_yield_statement] = STATE(470), + [sym_throw_statement] = STATE(470), + [sym_try_statement] = STATE(470), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [240] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1206), + [sym_attributed_statement] = STATE(1206), + [sym_labeled_statement] = STATE(1206), + [sym_expression_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_switch_statement] = STATE(1206), + [sym_case_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_do_statement] = STATE(1206), + [sym_for_statement] = STATE(1206), + [sym_return_statement] = STATE(1206), + [sym_break_statement] = STATE(1206), + [sym_continue_statement] = STATE(1206), + [sym_goto_statement] = STATE(1206), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1206), + [sym_co_return_statement] = STATE(1206), + [sym_co_yield_statement] = STATE(1206), + [sym_throw_statement] = STATE(1206), + [sym_try_statement] = STATE(1206), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [241] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1215), + [sym_attributed_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_expression_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_case_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_goto_statement] = STATE(1215), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1215), + [sym_co_return_statement] = STATE(1215), + [sym_co_yield_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [242] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1211), + [sym_attributed_statement] = STATE(1223), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1248), + [sym_if_statement] = STATE(1251), + [sym_switch_statement] = STATE(1259), + [sym_case_statement] = STATE(1258), + [sym_while_statement] = STATE(1257), + [sym_do_statement] = STATE(1255), + [sym_for_statement] = STATE(1254), + [sym_return_statement] = STATE(1253), + [sym_break_statement] = STATE(1250), + [sym_continue_statement] = STATE(1249), + [sym_goto_statement] = STATE(1245), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1243), + [sym_co_return_statement] = STATE(1242), + [sym_co_yield_statement] = STATE(1241), + [sym_throw_statement] = STATE(1225), + [sym_try_statement] = STATE(1221), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [243] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1177), + [sym_attributed_statement] = STATE(1176), + [sym_labeled_statement] = STATE(1172), + [sym_expression_statement] = STATE(1166), + [sym_if_statement] = STATE(1161), + [sym_switch_statement] = STATE(1160), + [sym_case_statement] = STATE(1159), + [sym_while_statement] = STATE(1156), + [sym_do_statement] = STATE(1152), + [sym_for_statement] = STATE(1149), + [sym_return_statement] = STATE(1148), + [sym_break_statement] = STATE(1228), + [sym_continue_statement] = STATE(1185), + [sym_goto_statement] = STATE(1141), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1147), + [sym_co_return_statement] = STATE(1174), + [sym_co_yield_statement] = STATE(1186), + [sym_throw_statement] = STATE(1187), + [sym_try_statement] = STATE(1208), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [244] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1178), + [sym_attributed_statement] = STATE(1178), + [sym_labeled_statement] = STATE(1178), + [sym_expression_statement] = STATE(1178), + [sym_if_statement] = STATE(1178), + [sym_switch_statement] = STATE(1178), + [sym_case_statement] = STATE(1178), + [sym_while_statement] = STATE(1178), + [sym_do_statement] = STATE(1178), + [sym_for_statement] = STATE(1178), + [sym_return_statement] = STATE(1178), + [sym_break_statement] = STATE(1178), + [sym_continue_statement] = STATE(1178), + [sym_goto_statement] = STATE(1178), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1178), + [sym_co_return_statement] = STATE(1178), + [sym_co_yield_statement] = STATE(1178), + [sym_throw_statement] = STATE(1178), + [sym_try_statement] = STATE(1178), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [245] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(484), + [sym_attributed_statement] = STATE(484), + [sym_labeled_statement] = STATE(484), + [sym_expression_statement] = STATE(484), + [sym_if_statement] = STATE(484), + [sym_switch_statement] = STATE(484), + [sym_case_statement] = STATE(484), + [sym_while_statement] = STATE(484), + [sym_do_statement] = STATE(484), + [sym_for_statement] = STATE(484), + [sym_return_statement] = STATE(484), + [sym_break_statement] = STATE(484), + [sym_continue_statement] = STATE(484), + [sym_goto_statement] = STATE(484), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(484), + [sym_co_return_statement] = STATE(484), + [sym_co_yield_statement] = STATE(484), + [sym_throw_statement] = STATE(484), + [sym_try_statement] = STATE(484), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [246] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(482), + [sym_attributed_statement] = STATE(482), + [sym_labeled_statement] = STATE(482), + [sym_expression_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_switch_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_do_statement] = STATE(482), + [sym_for_statement] = STATE(482), + [sym_return_statement] = STATE(482), + [sym_break_statement] = STATE(482), + [sym_continue_statement] = STATE(482), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(482), + [sym_co_return_statement] = STATE(482), + [sym_co_yield_statement] = STATE(482), + [sym_throw_statement] = STATE(482), + [sym_try_statement] = STATE(482), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [247] = { + [sym_attribute_declaration] = STATE(142), + [sym_compound_statement] = STATE(852), + [sym_attributed_statement] = STATE(852), + [sym_labeled_statement] = STATE(852), + [sym_expression_statement] = STATE(852), + [sym_if_statement] = STATE(852), + [sym_switch_statement] = STATE(852), + [sym_case_statement] = STATE(852), + [sym_while_statement] = STATE(852), + [sym_do_statement] = STATE(852), + [sym_for_statement] = STATE(852), + [sym_return_statement] = STATE(852), + [sym_break_statement] = STATE(852), + [sym_continue_statement] = STATE(852), + [sym_goto_statement] = STATE(852), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(852), + [sym_co_return_statement] = STATE(852), + [sym_co_yield_statement] = STATE(852), + [sym_throw_statement] = STATE(852), + [sym_try_statement] = STATE(852), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [248] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(479), + [sym_attributed_statement] = STATE(479), + [sym_labeled_statement] = STATE(479), + [sym_expression_statement] = STATE(479), + [sym_if_statement] = STATE(479), + [sym_switch_statement] = STATE(479), + [sym_case_statement] = STATE(479), + [sym_while_statement] = STATE(479), + [sym_do_statement] = STATE(479), + [sym_for_statement] = STATE(479), + [sym_return_statement] = STATE(479), + [sym_break_statement] = STATE(479), + [sym_continue_statement] = STATE(479), + [sym_goto_statement] = STATE(479), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(479), + [sym_co_return_statement] = STATE(479), + [sym_co_yield_statement] = STATE(479), + [sym_throw_statement] = STATE(479), + [sym_try_statement] = STATE(479), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [249] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1179), + [sym_attributed_statement] = STATE(1179), + [sym_labeled_statement] = STATE(1179), + [sym_expression_statement] = STATE(1179), + [sym_if_statement] = STATE(1179), + [sym_switch_statement] = STATE(1179), + [sym_case_statement] = STATE(1179), + [sym_while_statement] = STATE(1179), + [sym_do_statement] = STATE(1179), + [sym_for_statement] = STATE(1179), + [sym_return_statement] = STATE(1179), + [sym_break_statement] = STATE(1179), + [sym_continue_statement] = STATE(1179), + [sym_goto_statement] = STATE(1179), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1179), + [sym_co_return_statement] = STATE(1179), + [sym_co_yield_statement] = STATE(1179), + [sym_throw_statement] = STATE(1179), + [sym_try_statement] = STATE(1179), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [250] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1188), + [sym_attributed_statement] = STATE(1188), + [sym_labeled_statement] = STATE(1188), + [sym_expression_statement] = STATE(1188), + [sym_if_statement] = STATE(1188), + [sym_switch_statement] = STATE(1188), + [sym_case_statement] = STATE(1188), + [sym_while_statement] = STATE(1188), + [sym_do_statement] = STATE(1188), + [sym_for_statement] = STATE(1188), + [sym_return_statement] = STATE(1188), + [sym_break_statement] = STATE(1188), + [sym_continue_statement] = STATE(1188), + [sym_goto_statement] = STATE(1188), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1188), + [sym_co_return_statement] = STATE(1188), + [sym_co_yield_statement] = STATE(1188), + [sym_throw_statement] = STATE(1188), + [sym_try_statement] = STATE(1188), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [251] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1191), + [sym_attributed_statement] = STATE(1191), + [sym_labeled_statement] = STATE(1191), + [sym_expression_statement] = STATE(1191), + [sym_if_statement] = STATE(1191), + [sym_switch_statement] = STATE(1191), + [sym_case_statement] = STATE(1191), + [sym_while_statement] = STATE(1191), + [sym_do_statement] = STATE(1191), + [sym_for_statement] = STATE(1191), + [sym_return_statement] = STATE(1191), + [sym_break_statement] = STATE(1191), + [sym_continue_statement] = STATE(1191), + [sym_goto_statement] = STATE(1191), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1191), + [sym_co_return_statement] = STATE(1191), + [sym_co_yield_statement] = STATE(1191), + [sym_throw_statement] = STATE(1191), + [sym_try_statement] = STATE(1191), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [252] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1192), + [sym_attributed_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_case_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1192), + [sym_co_return_statement] = STATE(1192), + [sym_co_yield_statement] = STATE(1192), + [sym_throw_statement] = STATE(1192), + [sym_try_statement] = STATE(1192), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [253] = { + [sym_attribute_declaration] = STATE(253), + [sym_compound_statement] = STATE(470), + [sym_attributed_statement] = STATE(470), + [sym_labeled_statement] = STATE(470), + [sym_expression_statement] = STATE(470), + [sym_if_statement] = STATE(470), + [sym_switch_statement] = STATE(470), + [sym_case_statement] = STATE(470), + [sym_while_statement] = STATE(470), + [sym_do_statement] = STATE(470), + [sym_for_statement] = STATE(470), + [sym_return_statement] = STATE(470), + [sym_break_statement] = STATE(470), + [sym_continue_statement] = STATE(470), + [sym_goto_statement] = STATE(470), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(470), + [sym_co_return_statement] = STATE(470), + [sym_co_yield_statement] = STATE(470), + [sym_throw_statement] = STATE(470), + [sym_try_statement] = STATE(470), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_switch] = ACTIONS(2089), + [anon_sym_case] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1930), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1936), + [anon_sym_u_SQUOTE] = ACTIONS(1936), + [anon_sym_U_SQUOTE] = ACTIONS(1936), + [anon_sym_u8_SQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_L_DQUOTE] = ACTIONS(1939), + [anon_sym_u_DQUOTE] = ACTIONS(1939), + [anon_sym_U_DQUOTE] = ACTIONS(1939), + [anon_sym_u8_DQUOTE] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym_true] = ACTIONS(1942), + [sym_false] = ACTIONS(1942), + [sym_null] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(2119), + [anon_sym_delete] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(2122), + [anon_sym_co_return] = ACTIONS(2125), + [anon_sym_co_yield] = ACTIONS(2128), + [anon_sym_R_DQUOTE] = ACTIONS(1963), + [anon_sym_LR_DQUOTE] = ACTIONS(1963), + [anon_sym_uR_DQUOTE] = ACTIONS(1963), + [anon_sym_UR_DQUOTE] = ACTIONS(1963), + [anon_sym_u8R_DQUOTE] = ACTIONS(1963), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_requires] = ACTIONS(1972), + [sym_this] = ACTIONS(1942), + [sym_nullptr] = ACTIONS(1942), + }, + [254] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1193), + [sym_attributed_statement] = STATE(1193), + [sym_labeled_statement] = STATE(1193), + [sym_expression_statement] = STATE(1193), + [sym_if_statement] = STATE(1193), + [sym_switch_statement] = STATE(1193), + [sym_case_statement] = STATE(1193), + [sym_while_statement] = STATE(1193), + [sym_do_statement] = STATE(1193), + [sym_for_statement] = STATE(1193), + [sym_return_statement] = STATE(1193), + [sym_break_statement] = STATE(1193), + [sym_continue_statement] = STATE(1193), + [sym_goto_statement] = STATE(1193), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1193), + [sym_co_return_statement] = STATE(1193), + [sym_co_yield_statement] = STATE(1193), + [sym_throw_statement] = STATE(1193), + [sym_try_statement] = STATE(1193), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [255] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [256] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1194), + [sym_attributed_statement] = STATE(1194), + [sym_labeled_statement] = STATE(1194), + [sym_expression_statement] = STATE(1194), + [sym_if_statement] = STATE(1194), + [sym_switch_statement] = STATE(1194), + [sym_case_statement] = STATE(1194), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1194), + [sym_for_statement] = STATE(1194), + [sym_return_statement] = STATE(1194), + [sym_break_statement] = STATE(1194), + [sym_continue_statement] = STATE(1194), + [sym_goto_statement] = STATE(1194), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1194), + [sym_co_return_statement] = STATE(1194), + [sym_co_yield_statement] = STATE(1194), + [sym_throw_statement] = STATE(1194), + [sym_try_statement] = STATE(1194), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [257] = { + [sym_attribute_declaration] = STATE(257), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(766), + [sym_co_return_statement] = STATE(766), + [sym_co_yield_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(2131), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_switch] = ACTIONS(2143), + [anon_sym_case] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_goto] = ACTIONS(2170), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1930), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1936), + [anon_sym_u_SQUOTE] = ACTIONS(1936), + [anon_sym_U_SQUOTE] = ACTIONS(1936), + [anon_sym_u8_SQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_L_DQUOTE] = ACTIONS(1939), + [anon_sym_u_DQUOTE] = ACTIONS(1939), + [anon_sym_U_DQUOTE] = ACTIONS(1939), + [anon_sym_u8_DQUOTE] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym_true] = ACTIONS(1942), + [sym_false] = ACTIONS(1942), + [sym_null] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_co_return] = ACTIONS(2179), + [anon_sym_co_yield] = ACTIONS(2182), + [anon_sym_R_DQUOTE] = ACTIONS(1963), + [anon_sym_LR_DQUOTE] = ACTIONS(1963), + [anon_sym_uR_DQUOTE] = ACTIONS(1963), + [anon_sym_UR_DQUOTE] = ACTIONS(1963), + [anon_sym_u8R_DQUOTE] = ACTIONS(1963), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_requires] = ACTIONS(1972), + [sym_this] = ACTIONS(1942), + [sym_nullptr] = ACTIONS(1942), + }, + [258] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1216), + [sym_attributed_statement] = STATE(1216), + [sym_labeled_statement] = STATE(1216), + [sym_expression_statement] = STATE(1216), + [sym_if_statement] = STATE(1216), + [sym_switch_statement] = STATE(1216), + [sym_case_statement] = STATE(1216), + [sym_while_statement] = STATE(1216), + [sym_do_statement] = STATE(1216), + [sym_for_statement] = STATE(1216), + [sym_return_statement] = STATE(1216), + [sym_break_statement] = STATE(1216), + [sym_continue_statement] = STATE(1216), + [sym_goto_statement] = STATE(1216), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1216), + [sym_co_return_statement] = STATE(1216), + [sym_co_yield_statement] = STATE(1216), + [sym_throw_statement] = STATE(1216), + [sym_try_statement] = STATE(1216), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [259] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(346), + [sym_attributed_statement] = STATE(346), + [sym_labeled_statement] = STATE(346), + [sym_expression_statement] = STATE(346), + [sym_if_statement] = STATE(346), + [sym_switch_statement] = STATE(346), + [sym_case_statement] = STATE(346), + [sym_while_statement] = STATE(346), + [sym_do_statement] = STATE(346), + [sym_for_statement] = STATE(346), + [sym_return_statement] = STATE(346), + [sym_break_statement] = STATE(346), + [sym_continue_statement] = STATE(346), + [sym_goto_statement] = STATE(346), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(346), + [sym_co_return_statement] = STATE(346), + [sym_co_yield_statement] = STATE(346), + [sym_throw_statement] = STATE(346), + [sym_try_statement] = STATE(346), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [260] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1196), + [sym_attributed_statement] = STATE(1196), + [sym_labeled_statement] = STATE(1196), + [sym_expression_statement] = STATE(1196), + [sym_if_statement] = STATE(1196), + [sym_switch_statement] = STATE(1196), + [sym_case_statement] = STATE(1196), + [sym_while_statement] = STATE(1196), + [sym_do_statement] = STATE(1196), + [sym_for_statement] = STATE(1196), + [sym_return_statement] = STATE(1196), + [sym_break_statement] = STATE(1196), + [sym_continue_statement] = STATE(1196), + [sym_goto_statement] = STATE(1196), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1196), + [sym_co_return_statement] = STATE(1196), + [sym_co_yield_statement] = STATE(1196), + [sym_throw_statement] = STATE(1196), + [sym_try_statement] = STATE(1196), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [261] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1123), + [sym_attributed_statement] = STATE(1123), + [sym_labeled_statement] = STATE(1123), + [sym_expression_statement] = STATE(1123), + [sym_if_statement] = STATE(1123), + [sym_switch_statement] = STATE(1123), + [sym_case_statement] = STATE(1123), + [sym_while_statement] = STATE(1123), + [sym_do_statement] = STATE(1123), + [sym_for_statement] = STATE(1123), + [sym_return_statement] = STATE(1123), + [sym_break_statement] = STATE(1123), + [sym_continue_statement] = STATE(1123), + [sym_goto_statement] = STATE(1123), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1123), + [sym_co_return_statement] = STATE(1123), + [sym_co_yield_statement] = STATE(1123), + [sym_throw_statement] = STATE(1123), + [sym_try_statement] = STATE(1123), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [262] = { + [sym_attribute_declaration] = STATE(160), + [sym_compound_statement] = STATE(1202), + [sym_attributed_statement] = STATE(1202), + [sym_labeled_statement] = STATE(1202), + [sym_expression_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_switch_statement] = STATE(1202), + [sym_case_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_do_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_return_statement] = STATE(1202), + [sym_break_statement] = STATE(1202), + [sym_continue_statement] = STATE(1202), + [sym_goto_statement] = STATE(1202), + [sym__expression] = STATE(3652), + [sym_comma_expression] = STATE(6772), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(1202), + [sym_co_return_statement] = STATE(1202), + [sym_co_yield_statement] = STATE(1202), + [sym_throw_statement] = STATE(1202), + [sym_try_statement] = STATE(1202), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [263] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(6692), + [sym_attributed_statement] = STATE(6692), + [sym_labeled_statement] = STATE(6692), + [sym_expression_statement] = STATE(6692), + [sym_if_statement] = STATE(6692), + [sym_switch_statement] = STATE(6692), + [sym_case_statement] = STATE(6692), + [sym_while_statement] = STATE(6692), + [sym_do_statement] = STATE(6692), + [sym_for_statement] = STATE(6692), + [sym_return_statement] = STATE(6692), + [sym_break_statement] = STATE(6692), + [sym_continue_statement] = STATE(6692), + [sym_goto_statement] = STATE(6692), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(6692), + [sym_co_return_statement] = STATE(6692), + [sym_co_yield_statement] = STATE(6692), + [sym_throw_statement] = STATE(6692), + [sym_try_statement] = STATE(6692), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [264] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(407), + [sym_attributed_statement] = STATE(407), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(407), + [sym_co_return_statement] = STATE(407), + [sym_co_yield_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_try_statement] = STATE(407), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [265] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(635), + [sym_attributed_statement] = STATE(635), + [sym_labeled_statement] = STATE(635), + [sym_expression_statement] = STATE(635), + [sym_if_statement] = STATE(635), + [sym_switch_statement] = STATE(635), + [sym_case_statement] = STATE(635), + [sym_while_statement] = STATE(635), + [sym_do_statement] = STATE(635), + [sym_for_statement] = STATE(635), + [sym_return_statement] = STATE(635), + [sym_break_statement] = STATE(635), + [sym_continue_statement] = STATE(635), + [sym_goto_statement] = STATE(635), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(635), + [sym_co_return_statement] = STATE(635), + [sym_co_yield_statement] = STATE(635), + [sym_throw_statement] = STATE(635), + [sym_try_statement] = STATE(635), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [266] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(631), + [sym_attributed_statement] = STATE(631), + [sym_labeled_statement] = STATE(631), + [sym_expression_statement] = STATE(631), + [sym_if_statement] = STATE(631), + [sym_switch_statement] = STATE(631), + [sym_case_statement] = STATE(631), + [sym_while_statement] = STATE(631), + [sym_do_statement] = STATE(631), + [sym_for_statement] = STATE(631), + [sym_return_statement] = STATE(631), + [sym_break_statement] = STATE(631), + [sym_continue_statement] = STATE(631), + [sym_goto_statement] = STATE(631), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(631), + [sym_co_return_statement] = STATE(631), + [sym_co_yield_statement] = STATE(631), + [sym_throw_statement] = STATE(631), + [sym_try_statement] = STATE(631), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [267] = { + [sym_attribute_declaration] = STATE(279), + [sym_compound_statement] = STATE(623), + [sym_attributed_statement] = STATE(623), + [sym_labeled_statement] = STATE(623), + [sym_expression_statement] = STATE(623), + [sym_if_statement] = STATE(623), + [sym_switch_statement] = STATE(623), + [sym_case_statement] = STATE(623), + [sym_while_statement] = STATE(623), + [sym_do_statement] = STATE(623), + [sym_for_statement] = STATE(623), + [sym_return_statement] = STATE(623), + [sym_break_statement] = STATE(623), + [sym_continue_statement] = STATE(623), + [sym_goto_statement] = STATE(623), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(623), + [sym_co_return_statement] = STATE(623), + [sym_co_yield_statement] = STATE(623), + [sym_throw_statement] = STATE(623), + [sym_try_statement] = STATE(623), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [268] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(6871), + [sym_attributed_statement] = STATE(6871), + [sym_labeled_statement] = STATE(6871), + [sym_expression_statement] = STATE(6871), + [sym_if_statement] = STATE(6871), + [sym_switch_statement] = STATE(6871), + [sym_case_statement] = STATE(6871), + [sym_while_statement] = STATE(6871), + [sym_do_statement] = STATE(6871), + [sym_for_statement] = STATE(6871), + [sym_return_statement] = STATE(6871), + [sym_break_statement] = STATE(6871), + [sym_continue_statement] = STATE(6871), + [sym_goto_statement] = STATE(6871), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(6871), + [sym_co_return_statement] = STATE(6871), + [sym_co_yield_statement] = STATE(6871), + [sym_throw_statement] = STATE(6871), + [sym_try_statement] = STATE(6871), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [269] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(395), + [sym_co_return_statement] = STATE(395), + [sym_co_yield_statement] = STATE(395), + [sym_throw_statement] = STATE(395), + [sym_try_statement] = STATE(395), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [270] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(394), + [sym_attributed_statement] = STATE(394), + [sym_labeled_statement] = STATE(394), + [sym_expression_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_switch_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_do_statement] = STATE(394), + [sym_for_statement] = STATE(394), + [sym_return_statement] = STATE(394), + [sym_break_statement] = STATE(394), + [sym_continue_statement] = STATE(394), + [sym_goto_statement] = STATE(394), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(394), + [sym_co_return_statement] = STATE(394), + [sym_co_yield_statement] = STATE(394), + [sym_throw_statement] = STATE(394), + [sym_try_statement] = STATE(394), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [271] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(393), + [sym_attributed_statement] = STATE(393), + [sym_labeled_statement] = STATE(393), + [sym_expression_statement] = STATE(393), + [sym_if_statement] = STATE(393), + [sym_switch_statement] = STATE(393), + [sym_case_statement] = STATE(393), + [sym_while_statement] = STATE(393), + [sym_do_statement] = STATE(393), + [sym_for_statement] = STATE(393), + [sym_return_statement] = STATE(393), + [sym_break_statement] = STATE(393), + [sym_continue_statement] = STATE(393), + [sym_goto_statement] = STATE(393), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(393), + [sym_co_return_statement] = STATE(393), + [sym_co_yield_statement] = STATE(393), + [sym_throw_statement] = STATE(393), + [sym_try_statement] = STATE(393), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [272] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(392), + [sym_attributed_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_expression_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_goto_statement] = STATE(392), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(392), + [sym_co_return_statement] = STATE(392), + [sym_co_yield_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [273] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(391), + [sym_attributed_statement] = STATE(391), + [sym_labeled_statement] = STATE(391), + [sym_expression_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_switch_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_do_statement] = STATE(391), + [sym_for_statement] = STATE(391), + [sym_return_statement] = STATE(391), + [sym_break_statement] = STATE(391), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(391), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(391), + [sym_co_return_statement] = STATE(391), + [sym_co_yield_statement] = STATE(391), + [sym_throw_statement] = STATE(391), + [sym_try_statement] = STATE(391), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [274] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(389), + [sym_attributed_statement] = STATE(389), + [sym_labeled_statement] = STATE(389), + [sym_expression_statement] = STATE(389), + [sym_if_statement] = STATE(389), + [sym_switch_statement] = STATE(389), + [sym_case_statement] = STATE(389), + [sym_while_statement] = STATE(389), + [sym_do_statement] = STATE(389), + [sym_for_statement] = STATE(389), + [sym_return_statement] = STATE(389), + [sym_break_statement] = STATE(389), + [sym_continue_statement] = STATE(389), + [sym_goto_statement] = STATE(389), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(389), + [sym_co_return_statement] = STATE(389), + [sym_co_yield_statement] = STATE(389), + [sym_throw_statement] = STATE(389), + [sym_try_statement] = STATE(389), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [275] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(7024), + [sym_attributed_statement] = STATE(7024), + [sym_labeled_statement] = STATE(7024), + [sym_expression_statement] = STATE(7024), + [sym_if_statement] = STATE(7024), + [sym_switch_statement] = STATE(7024), + [sym_case_statement] = STATE(7024), + [sym_while_statement] = STATE(7024), + [sym_do_statement] = STATE(7024), + [sym_for_statement] = STATE(7024), + [sym_return_statement] = STATE(7024), + [sym_break_statement] = STATE(7024), + [sym_continue_statement] = STATE(7024), + [sym_goto_statement] = STATE(7024), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(7024), + [sym_co_return_statement] = STATE(7024), + [sym_co_yield_statement] = STATE(7024), + [sym_throw_statement] = STATE(7024), + [sym_try_statement] = STATE(7024), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [276] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [277] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(387), + [sym_attributed_statement] = STATE(387), + [sym_labeled_statement] = STATE(387), + [sym_expression_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_switch_statement] = STATE(387), + [sym_case_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_do_statement] = STATE(387), + [sym_for_statement] = STATE(387), + [sym_return_statement] = STATE(387), + [sym_break_statement] = STATE(387), + [sym_continue_statement] = STATE(387), + [sym_goto_statement] = STATE(387), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(387), + [sym_co_return_statement] = STATE(387), + [sym_co_yield_statement] = STATE(387), + [sym_throw_statement] = STATE(387), + [sym_try_statement] = STATE(387), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [278] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(7061), + [sym_attributed_statement] = STATE(7061), + [sym_labeled_statement] = STATE(7061), + [sym_expression_statement] = STATE(7061), + [sym_if_statement] = STATE(7061), + [sym_switch_statement] = STATE(7061), + [sym_case_statement] = STATE(7061), + [sym_while_statement] = STATE(7061), + [sym_do_statement] = STATE(7061), + [sym_for_statement] = STATE(7061), + [sym_return_statement] = STATE(7061), + [sym_break_statement] = STATE(7061), + [sym_continue_statement] = STATE(7061), + [sym_goto_statement] = STATE(7061), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(7061), + [sym_co_return_statement] = STATE(7061), + [sym_co_yield_statement] = STATE(7061), + [sym_throw_statement] = STATE(7061), + [sym_try_statement] = STATE(7061), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [279] = { + [sym_attribute_declaration] = STATE(257), + [sym_compound_statement] = STATE(766), + [sym_attributed_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_goto_statement] = STATE(766), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(6673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(766), + [sym_co_return_statement] = STATE(766), + [sym_co_yield_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(578), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_case] = ACTIONS(582), + [anon_sym_default] = ACTIONS(584), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(588), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_co_return] = ACTIONS(614), + [anon_sym_co_yield] = ACTIONS(616), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [280] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(385), + [sym_attributed_statement] = STATE(385), + [sym_labeled_statement] = STATE(385), + [sym_expression_statement] = STATE(385), + [sym_if_statement] = STATE(385), + [sym_switch_statement] = STATE(385), + [sym_case_statement] = STATE(385), + [sym_while_statement] = STATE(385), + [sym_do_statement] = STATE(385), + [sym_for_statement] = STATE(385), + [sym_return_statement] = STATE(385), + [sym_break_statement] = STATE(385), + [sym_continue_statement] = STATE(385), + [sym_goto_statement] = STATE(385), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(385), + [sym_co_return_statement] = STATE(385), + [sym_co_yield_statement] = STATE(385), + [sym_throw_statement] = STATE(385), + [sym_try_statement] = STATE(385), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [281] = { + [sym_attribute_declaration] = STATE(169), + [sym_compound_statement] = STATE(7090), + [sym_attributed_statement] = STATE(7090), + [sym_labeled_statement] = STATE(7090), + [sym_expression_statement] = STATE(7090), + [sym_if_statement] = STATE(7090), + [sym_switch_statement] = STATE(7090), + [sym_case_statement] = STATE(7090), + [sym_while_statement] = STATE(7090), + [sym_do_statement] = STATE(7090), + [sym_for_statement] = STATE(7090), + [sym_return_statement] = STATE(7090), + [sym_break_statement] = STATE(7090), + [sym_continue_statement] = STATE(7090), + [sym_goto_statement] = STATE(7090), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(7090), + [sym_co_return_statement] = STATE(7090), + [sym_co_yield_statement] = STATE(7090), + [sym_throw_statement] = STATE(7090), + [sym_try_statement] = STATE(7090), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(169), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [282] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(384), + [sym_attributed_statement] = STATE(384), + [sym_labeled_statement] = STATE(384), + [sym_expression_statement] = STATE(384), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_case_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_do_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_return_statement] = STATE(384), + [sym_break_statement] = STATE(384), + [sym_continue_statement] = STATE(384), + [sym_goto_statement] = STATE(384), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(384), + [sym_co_return_statement] = STATE(384), + [sym_co_yield_statement] = STATE(384), + [sym_throw_statement] = STATE(384), + [sym_try_statement] = STATE(384), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [283] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(382), + [sym_attributed_statement] = STATE(381), + [sym_labeled_statement] = STATE(380), + [sym_expression_statement] = STATE(379), + [sym_if_statement] = STATE(377), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(375), + [sym_while_statement] = STATE(374), + [sym_do_statement] = STATE(373), + [sym_for_statement] = STATE(372), + [sym_return_statement] = STATE(371), + [sym_break_statement] = STATE(370), + [sym_continue_statement] = STATE(369), + [sym_goto_statement] = STATE(368), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(367), + [sym_co_return_statement] = STATE(366), + [sym_co_yield_statement] = STATE(365), + [sym_throw_statement] = STATE(364), + [sym_try_statement] = STATE(363), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [284] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(362), + [sym_attributed_statement] = STATE(361), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(359), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(357), + [sym_case_statement] = STATE(356), + [sym_while_statement] = STATE(355), + [sym_do_statement] = STATE(354), + [sym_for_statement] = STATE(353), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(351), + [sym_continue_statement] = STATE(350), + [sym_goto_statement] = STATE(349), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(348), + [sym_co_return_statement] = STATE(347), + [sym_co_yield_statement] = STATE(421), + [sym_throw_statement] = STATE(424), + [sym_try_statement] = STATE(427), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [285] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(430), + [sym_attributed_statement] = STATE(430), + [sym_labeled_statement] = STATE(430), + [sym_expression_statement] = STATE(430), + [sym_if_statement] = STATE(430), + [sym_switch_statement] = STATE(430), + [sym_case_statement] = STATE(430), + [sym_while_statement] = STATE(430), + [sym_do_statement] = STATE(430), + [sym_for_statement] = STATE(430), + [sym_return_statement] = STATE(430), + [sym_break_statement] = STATE(430), + [sym_continue_statement] = STATE(430), + [sym_goto_statement] = STATE(430), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(430), + [sym_co_return_statement] = STATE(430), + [sym_co_yield_statement] = STATE(430), + [sym_throw_statement] = STATE(430), + [sym_try_statement] = STATE(430), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [286] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(434), + [sym_attributed_statement] = STATE(434), + [sym_labeled_statement] = STATE(434), + [sym_expression_statement] = STATE(434), + [sym_if_statement] = STATE(434), + [sym_switch_statement] = STATE(434), + [sym_case_statement] = STATE(434), + [sym_while_statement] = STATE(434), + [sym_do_statement] = STATE(434), + [sym_for_statement] = STATE(434), + [sym_return_statement] = STATE(434), + [sym_break_statement] = STATE(434), + [sym_continue_statement] = STATE(434), + [sym_goto_statement] = STATE(434), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(434), + [sym_co_return_statement] = STATE(434), + [sym_co_yield_statement] = STATE(434), + [sym_throw_statement] = STATE(434), + [sym_try_statement] = STATE(434), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [287] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(437), + [sym_attributed_statement] = STATE(437), + [sym_labeled_statement] = STATE(437), + [sym_expression_statement] = STATE(437), + [sym_if_statement] = STATE(437), + [sym_switch_statement] = STATE(437), + [sym_case_statement] = STATE(437), + [sym_while_statement] = STATE(437), + [sym_do_statement] = STATE(437), + [sym_for_statement] = STATE(437), + [sym_return_statement] = STATE(437), + [sym_break_statement] = STATE(437), + [sym_continue_statement] = STATE(437), + [sym_goto_statement] = STATE(437), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(437), + [sym_co_return_statement] = STATE(437), + [sym_co_yield_statement] = STATE(437), + [sym_throw_statement] = STATE(437), + [sym_try_statement] = STATE(437), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [288] = { + [sym_attribute_declaration] = STATE(239), + [sym_compound_statement] = STATE(439), + [sym_attributed_statement] = STATE(441), + [sym_labeled_statement] = STATE(443), + [sym_expression_statement] = STATE(445), + [sym_if_statement] = STATE(447), + [sym_switch_statement] = STATE(450), + [sym_case_statement] = STATE(458), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(467), + [sym_for_statement] = STATE(474), + [sym_return_statement] = STATE(475), + [sym_break_statement] = STATE(476), + [sym_continue_statement] = STATE(480), + [sym_goto_statement] = STATE(478), + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(7128), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(472), + [sym_co_return_statement] = STATE(471), + [sym_co_yield_statement] = STATE(463), + [sym_throw_statement] = STATE(460), + [sym_try_statement] = STATE(459), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [289] = { + [sym_attribute_declaration] = STATE(289), + [sym_compound_statement] = STATE(901), + [sym_attributed_statement] = STATE(901), + [sym_labeled_statement] = STATE(901), + [sym_expression_statement] = STATE(901), + [sym_if_statement] = STATE(901), + [sym_switch_statement] = STATE(901), + [sym_case_statement] = STATE(901), + [sym_while_statement] = STATE(901), + [sym_do_statement] = STATE(901), + [sym_for_statement] = STATE(901), + [sym_return_statement] = STATE(901), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(901), + [sym_goto_statement] = STATE(901), + [sym__expression] = STATE(3668), + [sym_comma_expression] = STATE(6976), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_for_range_loop] = STATE(901), + [sym_co_return_statement] = STATE(901), + [sym_co_yield_statement] = STATE(901), + [sym_throw_statement] = STATE(901), + [sym_try_statement] = STATE(901), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_attributed_declarator_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_case] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_not] = ACTIONS(1870), + [anon_sym_compl] = ACTIONS(1870), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1930), + [sym_number_literal] = ACTIONS(1933), + [anon_sym_L_SQUOTE] = ACTIONS(1936), + [anon_sym_u_SQUOTE] = ACTIONS(1936), + [anon_sym_U_SQUOTE] = ACTIONS(1936), + [anon_sym_u8_SQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_L_DQUOTE] = ACTIONS(1939), + [anon_sym_u_DQUOTE] = ACTIONS(1939), + [anon_sym_U_DQUOTE] = ACTIONS(1939), + [anon_sym_u8_DQUOTE] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym_true] = ACTIONS(1942), + [sym_false] = ACTIONS(1942), + [sym_null] = ACTIONS(1942), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_delete] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(1954), + [anon_sym_co_return] = ACTIONS(1957), + [anon_sym_co_yield] = ACTIONS(1960), + [anon_sym_R_DQUOTE] = ACTIONS(1963), + [anon_sym_LR_DQUOTE] = ACTIONS(1963), + [anon_sym_uR_DQUOTE] = ACTIONS(1963), + [anon_sym_UR_DQUOTE] = ACTIONS(1963), + [anon_sym_u8R_DQUOTE] = ACTIONS(1963), + [anon_sym_co_await] = ACTIONS(1966), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_requires] = ACTIONS(1972), + [sym_this] = ACTIONS(1942), + [sym_nullptr] = ACTIONS(1942), + }, + [290] = { + [sym_preproc_def] = STATE(296), + [sym_preproc_function_def] = STATE(296), + [sym_preproc_call] = STATE(296), + [sym_preproc_if_in_field_declaration_list] = STATE(296), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(296), + [sym_type_definition] = STATE(296), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(296), + [sym_field_declaration] = STATE(296), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(296), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(296), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(296), + [sym_operator_cast_declaration] = STATE(296), + [sym_constructor_or_destructor_definition] = STATE(296), + [sym_constructor_or_destructor_declaration] = STATE(296), + [sym_friend_declaration] = STATE(296), + [sym_access_specifier] = STATE(296), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(296), + [sym_alias_declaration] = STATE(296), + [sym_static_assert_declaration] = STATE(296), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(296), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [291] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [292] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [293] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1729), + [aux_sym_preproc_def_token1] = ACTIONS(2229), + [aux_sym_preproc_if_token1] = ACTIONS(2232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2235), + [sym_preproc_directive] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym___attribute__] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), + [anon_sym___declspec] = ACTIONS(1776), + [anon_sym___based] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_register] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1764), + [anon_sym_thread_local] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_volatile] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(1785), + [anon_sym__Atomic] = ACTIONS(1785), + [anon_sym_mutable] = ACTIONS(1785), + [anon_sym_constexpr] = ACTIONS(1785), + [anon_sym_constinit] = ACTIONS(1785), + [anon_sym_consteval] = ACTIONS(1785), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1806), + [anon_sym_decltype] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1812), + [anon_sym_explicit] = ACTIONS(1815), + [anon_sym_public] = ACTIONS(2246), + [anon_sym_private] = ACTIONS(2246), + [anon_sym_protected] = ACTIONS(2246), + [anon_sym_typename] = ACTIONS(1821), + [anon_sym_template] = ACTIONS(2249), + [anon_sym_operator] = ACTIONS(1827), + [anon_sym_friend] = ACTIONS(2252), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_static_assert] = ACTIONS(2258), + }, + [294] = { + [sym_preproc_def] = STATE(312), + [sym_preproc_function_def] = STATE(312), + [sym_preproc_call] = STATE(312), + [sym_preproc_if_in_field_declaration_list] = STATE(312), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(312), + [sym_type_definition] = STATE(312), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(312), + [sym_field_declaration] = STATE(312), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(312), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(312), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(312), + [sym_operator_cast_declaration] = STATE(312), + [sym_constructor_or_destructor_definition] = STATE(312), + [sym_constructor_or_destructor_declaration] = STATE(312), + [sym_friend_declaration] = STATE(312), + [sym_access_specifier] = STATE(312), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(312), + [sym_alias_declaration] = STATE(312), + [sym_static_assert_declaration] = STATE(312), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(312), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [295] = { + [sym_preproc_def] = STATE(292), + [sym_preproc_function_def] = STATE(292), + [sym_preproc_call] = STATE(292), + [sym_preproc_if_in_field_declaration_list] = STATE(292), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(292), + [sym_type_definition] = STATE(292), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(292), + [sym_field_declaration] = STATE(292), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(292), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(292), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(292), + [sym_operator_cast_declaration] = STATE(292), + [sym_constructor_or_destructor_definition] = STATE(292), + [sym_constructor_or_destructor_declaration] = STATE(292), + [sym_friend_declaration] = STATE(292), + [sym_access_specifier] = STATE(292), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(292), + [sym_alias_declaration] = STATE(292), + [sym_static_assert_declaration] = STATE(292), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(292), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [296] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [297] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [298] = { + [sym_preproc_def] = STATE(297), + [sym_preproc_function_def] = STATE(297), + [sym_preproc_call] = STATE(297), + [sym_preproc_if_in_field_declaration_list] = STATE(297), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(297), + [sym_type_definition] = STATE(297), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(297), + [sym_field_declaration] = STATE(297), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(297), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(297), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(297), + [sym_operator_cast_declaration] = STATE(297), + [sym_constructor_or_destructor_definition] = STATE(297), + [sym_constructor_or_destructor_declaration] = STATE(297), + [sym_friend_declaration] = STATE(297), + [sym_access_specifier] = STATE(297), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(297), + [sym_alias_declaration] = STATE(297), + [sym_static_assert_declaration] = STATE(297), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(297), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [299] = { + [sym_preproc_def] = STATE(302), + [sym_preproc_function_def] = STATE(302), + [sym_preproc_call] = STATE(302), + [sym_preproc_if_in_field_declaration_list] = STATE(302), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(302), + [sym_type_definition] = STATE(302), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4408), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(302), + [sym_field_declaration] = STATE(302), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(302), + [sym_operator_cast] = STATE(5459), + [sym_inline_method_definition] = STATE(302), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(302), + [sym_operator_cast_declaration] = STATE(302), + [sym_constructor_or_destructor_definition] = STATE(302), + [sym_constructor_or_destructor_declaration] = STATE(302), + [sym_friend_declaration] = STATE(302), + [sym_access_specifier] = STATE(302), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(302), + [sym_alias_declaration] = STATE(302), + [sym_static_assert_declaration] = STATE(302), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(302), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2271), + [aux_sym_preproc_if_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token2] = ACTIONS(2275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2283), + [anon_sym_private] = ACTIONS(2283), + [anon_sym_protected] = ACTIONS(2283), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2285), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2287), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_static_assert] = ACTIONS(2291), + }, + [300] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [301] = { + [sym_preproc_def] = STATE(300), + [sym_preproc_function_def] = STATE(300), + [sym_preproc_call] = STATE(300), + [sym_preproc_if_in_field_declaration_list] = STATE(300), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(300), + [sym_type_definition] = STATE(300), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(300), + [sym_field_declaration] = STATE(300), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(300), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(300), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(300), + [sym_operator_cast_declaration] = STATE(300), + [sym_constructor_or_destructor_definition] = STATE(300), + [sym_constructor_or_destructor_declaration] = STATE(300), + [sym_friend_declaration] = STATE(300), + [sym_access_specifier] = STATE(300), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(300), + [sym_alias_declaration] = STATE(300), + [sym_static_assert_declaration] = STATE(300), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(300), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [302] = { + [sym_preproc_def] = STATE(302), + [sym_preproc_function_def] = STATE(302), + [sym_preproc_call] = STATE(302), + [sym_preproc_if_in_field_declaration_list] = STATE(302), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(302), + [sym_type_definition] = STATE(302), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4408), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(302), + [sym_field_declaration] = STATE(302), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(302), + [sym_operator_cast] = STATE(5459), + [sym_inline_method_definition] = STATE(302), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(302), + [sym_operator_cast_declaration] = STATE(302), + [sym_constructor_or_destructor_definition] = STATE(302), + [sym_constructor_or_destructor_declaration] = STATE(302), + [sym_friend_declaration] = STATE(302), + [sym_access_specifier] = STATE(302), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(302), + [sym_alias_declaration] = STATE(302), + [sym_static_assert_declaration] = STATE(302), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(302), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1729), + [aux_sym_preproc_def_token1] = ACTIONS(2297), + [aux_sym_preproc_if_token1] = ACTIONS(2300), + [aux_sym_preproc_if_token2] = ACTIONS(1738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2303), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2303), + [sym_preproc_directive] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym___attribute__] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1773), + [anon_sym___declspec] = ACTIONS(1776), + [anon_sym___based] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_register] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1764), + [anon_sym_thread_local] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_volatile] = ACTIONS(1785), + [anon_sym_restrict] = ACTIONS(1785), + [anon_sym__Atomic] = ACTIONS(1785), + [anon_sym_mutable] = ACTIONS(1785), + [anon_sym_constexpr] = ACTIONS(1785), + [anon_sym_constinit] = ACTIONS(1785), + [anon_sym_consteval] = ACTIONS(1785), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1806), + [anon_sym_decltype] = ACTIONS(1809), + [anon_sym_virtual] = ACTIONS(1812), + [anon_sym_explicit] = ACTIONS(1815), + [anon_sym_public] = ACTIONS(2312), + [anon_sym_private] = ACTIONS(2312), + [anon_sym_protected] = ACTIONS(2312), + [anon_sym_typename] = ACTIONS(1821), + [anon_sym_template] = ACTIONS(2315), + [anon_sym_operator] = ACTIONS(1827), + [anon_sym_friend] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2321), + [anon_sym_static_assert] = ACTIONS(2324), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [anon_sym_COMMA] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_PIPE_PIPE] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_EQ] = ACTIONS(2327), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_GT2] = ACTIONS(2327), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [sym_nullptr] = ACTIONS(2329), + }, + [304] = { + [sym_preproc_def] = STATE(299), + [sym_preproc_function_def] = STATE(299), + [sym_preproc_call] = STATE(299), + [sym_preproc_if_in_field_declaration_list] = STATE(299), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(299), + [sym_type_definition] = STATE(299), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4408), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(299), + [sym_field_declaration] = STATE(299), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(299), + [sym_operator_cast] = STATE(5459), + [sym_inline_method_definition] = STATE(299), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(299), + [sym_operator_cast_declaration] = STATE(299), + [sym_constructor_or_destructor_definition] = STATE(299), + [sym_constructor_or_destructor_declaration] = STATE(299), + [sym_friend_declaration] = STATE(299), + [sym_access_specifier] = STATE(299), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(299), + [sym_alias_declaration] = STATE(299), + [sym_static_assert_declaration] = STATE(299), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(299), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2271), + [aux_sym_preproc_if_token1] = ACTIONS(2273), + [aux_sym_preproc_if_token2] = ACTIONS(2331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2277), + [sym_preproc_directive] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2283), + [anon_sym_private] = ACTIONS(2283), + [anon_sym_protected] = ACTIONS(2283), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2285), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2287), + [anon_sym_using] = ACTIONS(2289), + [anon_sym_static_assert] = ACTIONS(2291), + }, + [305] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2335), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_PIPE_PIPE] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_EQ] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2335), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [307] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [308] = { + [sym_preproc_def] = STATE(307), + [sym_preproc_function_def] = STATE(307), + [sym_preproc_call] = STATE(307), + [sym_preproc_if_in_field_declaration_list] = STATE(307), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(307), + [sym_type_definition] = STATE(307), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(307), + [sym_field_declaration] = STATE(307), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(307), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(307), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(307), + [sym_operator_cast_declaration] = STATE(307), + [sym_constructor_or_destructor_definition] = STATE(307), + [sym_constructor_or_destructor_declaration] = STATE(307), + [sym_friend_declaration] = STATE(307), + [sym_access_specifier] = STATE(307), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(307), + [sym_alias_declaration] = STATE(307), + [sym_static_assert_declaration] = STATE(307), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(307), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [309] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [310] = { + [sym_preproc_def] = STATE(305), + [sym_preproc_function_def] = STATE(305), + [sym_preproc_call] = STATE(305), + [sym_preproc_if_in_field_declaration_list] = STATE(305), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(305), + [sym_type_definition] = STATE(305), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(305), + [sym_field_declaration] = STATE(305), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(305), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(305), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(305), + [sym_operator_cast_declaration] = STATE(305), + [sym_constructor_or_destructor_definition] = STATE(305), + [sym_constructor_or_destructor_declaration] = STATE(305), + [sym_friend_declaration] = STATE(305), + [sym_access_specifier] = STATE(305), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(305), + [sym_alias_declaration] = STATE(305), + [sym_static_assert_declaration] = STATE(305), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(305), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [311] = { + [sym_preproc_def] = STATE(291), + [sym_preproc_function_def] = STATE(291), + [sym_preproc_call] = STATE(291), + [sym_preproc_if_in_field_declaration_list] = STATE(291), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), + [sym_type_definition] = STATE(291), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(291), + [sym_field_declaration] = STATE(291), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(291), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(291), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(291), + [sym_operator_cast_declaration] = STATE(291), + [sym_constructor_or_destructor_definition] = STATE(291), + [sym_constructor_or_destructor_declaration] = STATE(291), + [sym_friend_declaration] = STATE(291), + [sym_access_specifier] = STATE(291), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(291), + [sym_alias_declaration] = STATE(291), + [sym_static_assert_declaration] = STATE(291), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [312] = { + [sym_preproc_def] = STATE(293), + [sym_preproc_function_def] = STATE(293), + [sym_preproc_call] = STATE(293), + [sym_preproc_if_in_field_declaration_list] = STATE(293), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), + [sym_type_definition] = STATE(293), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(293), + [sym_field_declaration] = STATE(293), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(293), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(293), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(293), + [sym_operator_cast_declaration] = STATE(293), + [sym_constructor_or_destructor_definition] = STATE(293), + [sym_constructor_or_destructor_declaration] = STATE(293), + [sym_friend_declaration] = STATE(293), + [sym_access_specifier] = STATE(293), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(293), + [sym_alias_declaration] = STATE(293), + [sym_static_assert_declaration] = STATE(293), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [313] = { + [sym_preproc_def] = STATE(309), + [sym_preproc_function_def] = STATE(309), + [sym_preproc_call] = STATE(309), + [sym_preproc_if_in_field_declaration_list] = STATE(309), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(309), + [sym_type_definition] = STATE(309), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4422), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3518), + [sym_sized_type_specifier] = STATE(4019), + [sym_enum_specifier] = STATE(4019), + [sym_struct_specifier] = STATE(4019), + [sym_union_specifier] = STATE(4019), + [sym__field_declaration_list_item] = STATE(309), + [sym_field_declaration] = STATE(309), + [sym_placeholder_type_specifier] = STATE(4019), + [sym_decltype_auto] = STATE(4026), + [sym_decltype] = STATE(4019), + [sym_class_specifier] = STATE(4019), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(4019), + [sym_template_declaration] = STATE(309), + [sym_operator_cast] = STATE(5457), + [sym_inline_method_definition] = STATE(309), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(309), + [sym_operator_cast_declaration] = STATE(309), + [sym_constructor_or_destructor_definition] = STATE(309), + [sym_constructor_or_destructor_declaration] = STATE(309), + [sym_friend_declaration] = STATE(309), + [sym_access_specifier] = STATE(309), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_using_declaration] = STATE(309), + [sym_alias_declaration] = STATE(309), + [sym_static_assert_declaration] = STATE(309), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4778), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(4041), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(309), + [aux_sym__declaration_specifiers_repeat1] = STATE(2181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3792), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(2203), + [aux_sym_preproc_if_token1] = ACTIONS(2205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2207), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2207), + [sym_preproc_directive] = ACTIONS(2209), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1625), + [anon_sym_decltype] = ACTIONS(1627), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_private] = ACTIONS(2215), + [anon_sym_protected] = ACTIONS(2215), + [anon_sym_typename] = ACTIONS(1631), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(2219), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_static_assert] = ACTIONS(2223), + }, + [314] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6635), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [315] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7114), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [316] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2788), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6737), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [317] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7020), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [318] = { + [sym_catch_clause] = STATE(330), + [aux_sym_constructor_try_statement_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [aux_sym_preproc_if_token2] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [aux_sym_preproc_else_token1] = ACTIONS(2355), + [aux_sym_preproc_elif_token1] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym___cdecl] = ACTIONS(2355), + [anon_sym___clrcall] = ACTIONS(2355), + [anon_sym___stdcall] = ACTIONS(2355), + [anon_sym___fastcall] = ACTIONS(2355), + [anon_sym___thiscall] = ACTIONS(2355), + [anon_sym___vectorcall] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_L_SQUOTE] = ACTIONS(2357), + [anon_sym_u_SQUOTE] = ACTIONS(2357), + [anon_sym_U_SQUOTE] = ACTIONS(2357), + [anon_sym_u8_SQUOTE] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_L_DQUOTE] = ACTIONS(2357), + [anon_sym_u_DQUOTE] = ACTIONS(2357), + [anon_sym_U_DQUOTE] = ACTIONS(2357), + [anon_sym_u8_DQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_throw] = ACTIONS(2355), + [anon_sym_namespace] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_concept] = ACTIONS(2355), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + }, + [319] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6893), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [320] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2789), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6965), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [321] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2789), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6811), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [322] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2788), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6874), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [323] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7000), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [324] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2789), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6731), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [325] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7004), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [326] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6947), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [327] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7037), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [328] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6865), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [329] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2789), + [sym_comma_expression] = STATE(6841), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6816), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [330] = { + [sym_catch_clause] = STATE(330), + [aux_sym_constructor_try_statement_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token2] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [aux_sym_preproc_else_token1] = ACTIONS(2361), + [aux_sym_preproc_elif_token1] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = ACTIONS(2361), + [anon_sym_catch] = ACTIONS(2365), + [anon_sym_R_DQUOTE] = ACTIONS(2363), + [anon_sym_LR_DQUOTE] = ACTIONS(2363), + [anon_sym_uR_DQUOTE] = ACTIONS(2363), + [anon_sym_UR_DQUOTE] = ACTIONS(2363), + [anon_sym_u8R_DQUOTE] = ACTIONS(2363), + [anon_sym_co_await] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [sym_nullptr] = ACTIONS(2361), + }, + [331] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2788), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6776), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [332] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2788), + [sym_comma_expression] = STATE(7116), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(6679), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [333] = { + [sym_type_qualifier] = STATE(3426), + [sym__type_specifier] = STATE(4211), + [sym_sized_type_specifier] = STATE(2877), + [sym_enum_specifier] = STATE(2877), + [sym_struct_specifier] = STATE(2877), + [sym_union_specifier] = STATE(2877), + [sym__expression] = STATE(2770), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_type_descriptor] = STATE(7008), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym_placeholder_type_specifier] = STATE(2877), + [sym_decltype_auto] = STATE(2880), + [sym_decltype] = STATE(2877), + [sym_class_specifier] = STATE(2877), + [sym__class_name] = STATE(6294), + [sym_dependent_type] = STATE(2877), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4927), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(3426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1909), + [sym_identifier] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [334] = { + [sym_catch_clause] = STATE(330), + [aux_sym_constructor_try_statement_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token2] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [aux_sym_preproc_else_token1] = ACTIONS(2368), + [aux_sym_preproc_elif_token1] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), + }, + [335] = { + [sym_catch_clause] = STATE(330), + [aux_sym_constructor_try_statement_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token2] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [aux_sym_preproc_else_token1] = ACTIONS(2372), + [aux_sym_preproc_elif_token1] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), + }, + [336] = { + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [aux_sym_preproc_if_token2] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym___cdecl] = ACTIONS(2355), + [anon_sym___clrcall] = ACTIONS(2355), + [anon_sym___stdcall] = ACTIONS(2355), + [anon_sym___fastcall] = ACTIONS(2355), + [anon_sym___thiscall] = ACTIONS(2355), + [anon_sym___vectorcall] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_L_SQUOTE] = ACTIONS(2357), + [anon_sym_u_SQUOTE] = ACTIONS(2357), + [anon_sym_U_SQUOTE] = ACTIONS(2357), + [anon_sym_u8_SQUOTE] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_L_DQUOTE] = ACTIONS(2357), + [anon_sym_u_DQUOTE] = ACTIONS(2357), + [anon_sym_U_DQUOTE] = ACTIONS(2357), + [anon_sym_u8_DQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_throw] = ACTIONS(2355), + [anon_sym_namespace] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_concept] = ACTIONS(2355), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + }, + [337] = { + [sym_catch_clause] = STATE(337), + [aux_sym_constructor_try_statement_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = ACTIONS(2361), + [anon_sym_catch] = ACTIONS(2378), + [anon_sym_R_DQUOTE] = ACTIONS(2363), + [anon_sym_LR_DQUOTE] = ACTIONS(2363), + [anon_sym_uR_DQUOTE] = ACTIONS(2363), + [anon_sym_UR_DQUOTE] = ACTIONS(2363), + [anon_sym_u8R_DQUOTE] = ACTIONS(2363), + [anon_sym_co_await] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [sym_nullptr] = ACTIONS(2361), + }, + [338] = { + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = ACTIONS(2361), + [anon_sym_catch] = ACTIONS(2381), + [anon_sym_R_DQUOTE] = ACTIONS(2363), + [anon_sym_LR_DQUOTE] = ACTIONS(2363), + [anon_sym_uR_DQUOTE] = ACTIONS(2363), + [anon_sym_UR_DQUOTE] = ACTIONS(2363), + [anon_sym_u8R_DQUOTE] = ACTIONS(2363), + [anon_sym_co_await] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [sym_nullptr] = ACTIONS(2361), + }, + [339] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [aux_sym_preproc_else_token1] = ACTIONS(2337), + [aux_sym_preproc_elif_token1] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [340] = { + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_include_token1] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token2] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [aux_sym_preproc_else_token1] = ACTIONS(2384), + [aux_sym_preproc_elif_token1] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), + [anon_sym___declspec] = ACTIONS(2384), + [anon_sym___based] = ACTIONS(2384), + [anon_sym___cdecl] = ACTIONS(2384), + [anon_sym___clrcall] = ACTIONS(2384), + [anon_sym___stdcall] = ACTIONS(2384), + [anon_sym___fastcall] = ACTIONS(2384), + [anon_sym___thiscall] = ACTIONS(2384), + [anon_sym___vectorcall] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_thread_local] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_mutable] = ACTIONS(2384), + [anon_sym_constexpr] = ACTIONS(2384), + [anon_sym_constinit] = ACTIONS(2384), + [anon_sym_consteval] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_goto] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2384), + [anon_sym_compl] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2386), + [anon_sym_L_SQUOTE] = ACTIONS(2386), + [anon_sym_u_SQUOTE] = ACTIONS(2386), + [anon_sym_U_SQUOTE] = ACTIONS(2386), + [anon_sym_u8_SQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_L_DQUOTE] = ACTIONS(2386), + [anon_sym_u_DQUOTE] = ACTIONS(2386), + [anon_sym_U_DQUOTE] = ACTIONS(2386), + [anon_sym_u8_DQUOTE] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2384), + [anon_sym_decltype] = ACTIONS(2384), + [anon_sym_virtual] = ACTIONS(2384), + [anon_sym_explicit] = ACTIONS(2384), + [anon_sym_typename] = ACTIONS(2384), + [anon_sym_template] = ACTIONS(2384), + [anon_sym_operator] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_static_assert] = ACTIONS(2384), + [anon_sym_concept] = ACTIONS(2384), + [anon_sym_co_return] = ACTIONS(2384), + [anon_sym_co_yield] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_R_DQUOTE] = ACTIONS(2386), + [anon_sym_LR_DQUOTE] = ACTIONS(2386), + [anon_sym_uR_DQUOTE] = ACTIONS(2386), + [anon_sym_UR_DQUOTE] = ACTIONS(2386), + [anon_sym_u8R_DQUOTE] = ACTIONS(2386), + [anon_sym_co_await] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_requires] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_nullptr] = ACTIONS(2384), + }, + [341] = { + [sym_catch_clause] = STATE(337), + [aux_sym_constructor_try_statement_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym___cdecl] = ACTIONS(2355), + [anon_sym___clrcall] = ACTIONS(2355), + [anon_sym___stdcall] = ACTIONS(2355), + [anon_sym___fastcall] = ACTIONS(2355), + [anon_sym___thiscall] = ACTIONS(2355), + [anon_sym___vectorcall] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_L_SQUOTE] = ACTIONS(2357), + [anon_sym_u_SQUOTE] = ACTIONS(2357), + [anon_sym_U_SQUOTE] = ACTIONS(2357), + [anon_sym_u8_SQUOTE] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_L_DQUOTE] = ACTIONS(2357), + [anon_sym_u_DQUOTE] = ACTIONS(2357), + [anon_sym_U_DQUOTE] = ACTIONS(2357), + [anon_sym_u8_DQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_throw] = ACTIONS(2355), + [anon_sym_namespace] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_concept] = ACTIONS(2355), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + }, + [342] = { + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(2361), + [aux_sym_preproc_include_token1] = ACTIONS(2361), + [aux_sym_preproc_def_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token1] = ACTIONS(2361), + [aux_sym_preproc_if_token2] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2361), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2361), + [sym_preproc_directive] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP_AMP] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym___based] = ACTIONS(2361), + [anon_sym___cdecl] = ACTIONS(2361), + [anon_sym___clrcall] = ACTIONS(2361), + [anon_sym___stdcall] = ACTIONS(2361), + [anon_sym___fastcall] = ACTIONS(2361), + [anon_sym___thiscall] = ACTIONS(2361), + [anon_sym___vectorcall] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_explicit] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_operator] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_namespace] = ACTIONS(2361), + [anon_sym_using] = ACTIONS(2361), + [anon_sym_static_assert] = ACTIONS(2361), + [anon_sym_concept] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = ACTIONS(2361), + [anon_sym_catch] = ACTIONS(2390), + [anon_sym_R_DQUOTE] = ACTIONS(2363), + [anon_sym_LR_DQUOTE] = ACTIONS(2363), + [anon_sym_uR_DQUOTE] = ACTIONS(2363), + [anon_sym_UR_DQUOTE] = ACTIONS(2363), + [anon_sym_u8R_DQUOTE] = ACTIONS(2363), + [anon_sym_co_await] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [sym_nullptr] = ACTIONS(2361), + }, + [343] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token2] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [aux_sym_preproc_else_token1] = ACTIONS(2329), + [aux_sym_preproc_elif_token1] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [sym_nullptr] = ACTIONS(2329), + }, + [344] = { + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2355), + [aux_sym_preproc_include_token1] = ACTIONS(2355), + [aux_sym_preproc_def_token1] = ACTIONS(2355), + [aux_sym_preproc_if_token1] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), + [sym_preproc_directive] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym___based] = ACTIONS(2355), + [anon_sym___cdecl] = ACTIONS(2355), + [anon_sym___clrcall] = ACTIONS(2355), + [anon_sym___stdcall] = ACTIONS(2355), + [anon_sym___fastcall] = ACTIONS(2355), + [anon_sym___thiscall] = ACTIONS(2355), + [anon_sym___vectorcall] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_case] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_L_SQUOTE] = ACTIONS(2357), + [anon_sym_u_SQUOTE] = ACTIONS(2357), + [anon_sym_U_SQUOTE] = ACTIONS(2357), + [anon_sym_u8_SQUOTE] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_L_DQUOTE] = ACTIONS(2357), + [anon_sym_u_DQUOTE] = ACTIONS(2357), + [anon_sym_U_DQUOTE] = ACTIONS(2357), + [anon_sym_u8_DQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_explicit] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_operator] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_throw] = ACTIONS(2355), + [anon_sym_namespace] = ACTIONS(2355), + [anon_sym_using] = ACTIONS(2355), + [anon_sym_static_assert] = ACTIONS(2355), + [anon_sym_concept] = ACTIONS(2355), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + }, + [345] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [aux_sym_preproc_else_token1] = ACTIONS(2395), + [aux_sym_preproc_elif_token1] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [346] = { + [sym_identifier] = ACTIONS(2399), + [aux_sym_preproc_include_token1] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token2] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), + [aux_sym_preproc_else_token1] = ACTIONS(2399), + [aux_sym_preproc_elif_token1] = ACTIONS(2399), + [sym_preproc_directive] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym___based] = ACTIONS(2399), + [anon_sym___cdecl] = ACTIONS(2399), + [anon_sym___clrcall] = ACTIONS(2399), + [anon_sym___stdcall] = ACTIONS(2399), + [anon_sym___fastcall] = ACTIONS(2399), + [anon_sym___thiscall] = ACTIONS(2399), + [anon_sym___vectorcall] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_explicit] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_operator] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_using] = ACTIONS(2399), + [anon_sym_static_assert] = ACTIONS(2399), + [anon_sym_concept] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), + }, + [347] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [348] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [349] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [350] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [351] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [352] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [353] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [354] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [355] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [356] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [357] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [358] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [359] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [360] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [361] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [362] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [363] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [364] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [365] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [366] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [367] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [368] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [369] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [370] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [371] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [372] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [373] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [374] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [375] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [376] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [377] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [378] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3590), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5695), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5908), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2451), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [379] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [380] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [381] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [382] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [383] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3589), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5659), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5936), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2463), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [384] = { + [sym_identifier] = ACTIONS(2465), + [aux_sym_preproc_include_token1] = ACTIONS(2465), + [aux_sym_preproc_def_token1] = ACTIONS(2465), + [aux_sym_preproc_if_token1] = ACTIONS(2465), + [aux_sym_preproc_if_token2] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), + [aux_sym_preproc_else_token1] = ACTIONS(2465), + [aux_sym_preproc_elif_token1] = ACTIONS(2465), + [sym_preproc_directive] = ACTIONS(2465), + [anon_sym_LPAREN2] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_typedef] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym___attribute__] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), + [anon_sym___declspec] = ACTIONS(2465), + [anon_sym___based] = ACTIONS(2465), + [anon_sym___cdecl] = ACTIONS(2465), + [anon_sym___clrcall] = ACTIONS(2465), + [anon_sym___stdcall] = ACTIONS(2465), + [anon_sym___fastcall] = ACTIONS(2465), + [anon_sym___thiscall] = ACTIONS(2465), + [anon_sym___vectorcall] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_thread_local] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_volatile] = ACTIONS(2465), + [anon_sym_restrict] = ACTIONS(2465), + [anon_sym__Atomic] = ACTIONS(2465), + [anon_sym_mutable] = ACTIONS(2465), + [anon_sym_constexpr] = ACTIONS(2465), + [anon_sym_constinit] = ACTIONS(2465), + [anon_sym_consteval] = ACTIONS(2465), + [anon_sym_signed] = ACTIONS(2465), + [anon_sym_unsigned] = ACTIONS(2465), + [anon_sym_long] = ACTIONS(2465), + [anon_sym_short] = ACTIONS(2465), + [sym_primitive_type] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_compl] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_number_literal] = ACTIONS(2467), + [anon_sym_L_SQUOTE] = ACTIONS(2467), + [anon_sym_u_SQUOTE] = ACTIONS(2467), + [anon_sym_U_SQUOTE] = ACTIONS(2467), + [anon_sym_u8_SQUOTE] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_L_DQUOTE] = ACTIONS(2467), + [anon_sym_u_DQUOTE] = ACTIONS(2467), + [anon_sym_U_DQUOTE] = ACTIONS(2467), + [anon_sym_u8_DQUOTE] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_null] = ACTIONS(2465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2465), + [anon_sym_decltype] = ACTIONS(2465), + [anon_sym_virtual] = ACTIONS(2465), + [anon_sym_explicit] = ACTIONS(2465), + [anon_sym_typename] = ACTIONS(2465), + [anon_sym_template] = ACTIONS(2465), + [anon_sym_operator] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_delete] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [anon_sym_static_assert] = ACTIONS(2465), + [anon_sym_concept] = ACTIONS(2465), + [anon_sym_co_return] = ACTIONS(2465), + [anon_sym_co_yield] = ACTIONS(2465), + [anon_sym_R_DQUOTE] = ACTIONS(2467), + [anon_sym_LR_DQUOTE] = ACTIONS(2467), + [anon_sym_uR_DQUOTE] = ACTIONS(2467), + [anon_sym_UR_DQUOTE] = ACTIONS(2467), + [anon_sym_u8R_DQUOTE] = ACTIONS(2467), + [anon_sym_co_await] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_requires] = ACTIONS(2465), + [sym_this] = ACTIONS(2465), + [sym_nullptr] = ACTIONS(2465), + }, + [385] = { + [sym_identifier] = ACTIONS(2469), + [aux_sym_preproc_include_token1] = ACTIONS(2469), + [aux_sym_preproc_def_token1] = ACTIONS(2469), + [aux_sym_preproc_if_token1] = ACTIONS(2469), + [aux_sym_preproc_if_token2] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), + [aux_sym_preproc_else_token1] = ACTIONS(2469), + [aux_sym_preproc_elif_token1] = ACTIONS(2469), + [sym_preproc_directive] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_typedef] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym___attribute__] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), + [anon_sym___declspec] = ACTIONS(2469), + [anon_sym___based] = ACTIONS(2469), + [anon_sym___cdecl] = ACTIONS(2469), + [anon_sym___clrcall] = ACTIONS(2469), + [anon_sym___stdcall] = ACTIONS(2469), + [anon_sym___fastcall] = ACTIONS(2469), + [anon_sym___thiscall] = ACTIONS(2469), + [anon_sym___vectorcall] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_thread_local] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_volatile] = ACTIONS(2469), + [anon_sym_restrict] = ACTIONS(2469), + [anon_sym__Atomic] = ACTIONS(2469), + [anon_sym_mutable] = ACTIONS(2469), + [anon_sym_constexpr] = ACTIONS(2469), + [anon_sym_constinit] = ACTIONS(2469), + [anon_sym_consteval] = ACTIONS(2469), + [anon_sym_signed] = ACTIONS(2469), + [anon_sym_unsigned] = ACTIONS(2469), + [anon_sym_long] = ACTIONS(2469), + [anon_sym_short] = ACTIONS(2469), + [sym_primitive_type] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_compl] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_sizeof] = ACTIONS(2469), + [sym_number_literal] = ACTIONS(2471), + [anon_sym_L_SQUOTE] = ACTIONS(2471), + [anon_sym_u_SQUOTE] = ACTIONS(2471), + [anon_sym_U_SQUOTE] = ACTIONS(2471), + [anon_sym_u8_SQUOTE] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_L_DQUOTE] = ACTIONS(2471), + [anon_sym_u_DQUOTE] = ACTIONS(2471), + [anon_sym_U_DQUOTE] = ACTIONS(2471), + [anon_sym_u8_DQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_null] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2469), + [anon_sym_decltype] = ACTIONS(2469), + [anon_sym_virtual] = ACTIONS(2469), + [anon_sym_explicit] = ACTIONS(2469), + [anon_sym_typename] = ACTIONS(2469), + [anon_sym_template] = ACTIONS(2469), + [anon_sym_operator] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_delete] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [anon_sym_static_assert] = ACTIONS(2469), + [anon_sym_concept] = ACTIONS(2469), + [anon_sym_co_return] = ACTIONS(2469), + [anon_sym_co_yield] = ACTIONS(2469), + [anon_sym_R_DQUOTE] = ACTIONS(2471), + [anon_sym_LR_DQUOTE] = ACTIONS(2471), + [anon_sym_uR_DQUOTE] = ACTIONS(2471), + [anon_sym_UR_DQUOTE] = ACTIONS(2471), + [anon_sym_u8R_DQUOTE] = ACTIONS(2471), + [anon_sym_co_await] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_requires] = ACTIONS(2469), + [sym_this] = ACTIONS(2469), + [sym_nullptr] = ACTIONS(2469), + }, + [386] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3587), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5663), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5947), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2473), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [387] = { + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token2] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [aux_sym_preproc_else_token1] = ACTIONS(2475), + [aux_sym_preproc_elif_token1] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [388] = { + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token2] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [aux_sym_preproc_else_token1] = ACTIONS(2479), + [aux_sym_preproc_elif_token1] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [389] = { + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token2] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [aux_sym_preproc_else_token1] = ACTIONS(2483), + [aux_sym_preproc_elif_token1] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [390] = { + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), + }, + [391] = { + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token2] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [aux_sym_preproc_else_token1] = ACTIONS(2487), + [aux_sym_preproc_elif_token1] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [392] = { + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token2] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [aux_sym_preproc_else_token1] = ACTIONS(2491), + [aux_sym_preproc_elif_token1] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [393] = { + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token2] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [aux_sym_preproc_else_token1] = ACTIONS(2495), + [aux_sym_preproc_elif_token1] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [394] = { + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token2] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [aux_sym_preproc_else_token1] = ACTIONS(2499), + [aux_sym_preproc_elif_token1] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [395] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token2] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [aux_sym_preproc_else_token1] = ACTIONS(2503), + [aux_sym_preproc_elif_token1] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [396] = { + [sym_identifier] = ACTIONS(2507), + [aux_sym_preproc_include_token1] = ACTIONS(2507), + [aux_sym_preproc_def_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token2] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), + [aux_sym_preproc_else_token1] = ACTIONS(2507), + [aux_sym_preproc_elif_token1] = ACTIONS(2507), + [sym_preproc_directive] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym___based] = ACTIONS(2507), + [anon_sym___cdecl] = ACTIONS(2507), + [anon_sym___clrcall] = ACTIONS(2507), + [anon_sym___stdcall] = ACTIONS(2507), + [anon_sym___fastcall] = ACTIONS(2507), + [anon_sym___thiscall] = ACTIONS(2507), + [anon_sym___vectorcall] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_explicit] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_operator] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_namespace] = ACTIONS(2507), + [anon_sym_using] = ACTIONS(2507), + [anon_sym_static_assert] = ACTIONS(2507), + [anon_sym_concept] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [397] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [398] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [399] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [400] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [401] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3592), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5635), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5970), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2515), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [402] = { + [sym_catch_clause] = STATE(337), + [aux_sym_constructor_try_statement_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), + }, + [403] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [404] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3594), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5614), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5992), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2517), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [405] = { + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token2] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [aux_sym_preproc_else_token1] = ACTIONS(2519), + [aux_sym_preproc_elif_token1] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [406] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3596), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5566), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(6023), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [407] = { + [sym_identifier] = ACTIONS(2525), + [aux_sym_preproc_include_token1] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token2] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), + [aux_sym_preproc_else_token1] = ACTIONS(2525), + [aux_sym_preproc_elif_token1] = ACTIONS(2525), + [sym_preproc_directive] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP_AMP] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym___based] = ACTIONS(2525), + [anon_sym___cdecl] = ACTIONS(2525), + [anon_sym___clrcall] = ACTIONS(2525), + [anon_sym___stdcall] = ACTIONS(2525), + [anon_sym___fastcall] = ACTIONS(2525), + [anon_sym___thiscall] = ACTIONS(2525), + [anon_sym___vectorcall] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_explicit] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_operator] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [anon_sym_static_assert] = ACTIONS(2525), + [anon_sym_concept] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_R_DQUOTE] = ACTIONS(2527), + [anon_sym_LR_DQUOTE] = ACTIONS(2527), + [anon_sym_uR_DQUOTE] = ACTIONS(2527), + [anon_sym_UR_DQUOTE] = ACTIONS(2527), + [anon_sym_u8R_DQUOTE] = ACTIONS(2527), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + }, + [408] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3586), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5525), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(6057), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [409] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3621), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5588), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5982), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [410] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [411] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3598), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5767), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(6104), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [412] = { + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token2] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [aux_sym_preproc_else_token1] = ACTIONS(2535), + [aux_sym_preproc_elif_token1] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [413] = { + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token2] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [aux_sym_preproc_else_token1] = ACTIONS(2539), + [aux_sym_preproc_elif_token1] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [414] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3601), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5637), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5963), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2543), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [415] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [416] = { + [sym_catch_clause] = STATE(337), + [aux_sym_constructor_try_statement_repeat1] = STATE(337), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), + }, + [417] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [418] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [419] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [420] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5645), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(6064), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2545), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [421] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [422] = { + [sym_catch_clause] = STATE(338), + [aux_sym_constructor_try_statement_repeat1] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), + }, + [423] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [424] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [425] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [426] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [aux_sym_preproc_else_token1] = ACTIONS(2337), + [aux_sym_preproc_elif_token1] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [427] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [428] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [429] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3612), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5643), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5953), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2549), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [430] = { + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token2] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [aux_sym_preproc_else_token1] = ACTIONS(2551), + [aux_sym_preproc_elif_token1] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_R_DQUOTE] = ACTIONS(2553), + [anon_sym_LR_DQUOTE] = ACTIONS(2553), + [anon_sym_uR_DQUOTE] = ACTIONS(2553), + [anon_sym_UR_DQUOTE] = ACTIONS(2553), + [anon_sym_u8R_DQUOTE] = ACTIONS(2553), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + }, + [431] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [432] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token2] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [aux_sym_preproc_else_token1] = ACTIONS(2555), + [aux_sym_preproc_elif_token1] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [433] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token2] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [aux_sym_preproc_else_token1] = ACTIONS(2555), + [aux_sym_preproc_elif_token1] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [434] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_R_DQUOTE] = ACTIONS(2561), + [anon_sym_LR_DQUOTE] = ACTIONS(2561), + [anon_sym_uR_DQUOTE] = ACTIONS(2561), + [anon_sym_UR_DQUOTE] = ACTIONS(2561), + [anon_sym_u8R_DQUOTE] = ACTIONS(2561), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + }, + [435] = { + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token2] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [aux_sym_preproc_else_token1] = ACTIONS(2563), + [aux_sym_preproc_elif_token1] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_R_DQUOTE] = ACTIONS(2565), + [anon_sym_LR_DQUOTE] = ACTIONS(2565), + [anon_sym_uR_DQUOTE] = ACTIONS(2565), + [anon_sym_UR_DQUOTE] = ACTIONS(2565), + [anon_sym_u8R_DQUOTE] = ACTIONS(2565), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + }, + [436] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [437] = { + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [aux_sym_preproc_else_token1] = ACTIONS(2567), + [aux_sym_preproc_elif_token1] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_R_DQUOTE] = ACTIONS(2569), + [anon_sym_LR_DQUOTE] = ACTIONS(2569), + [anon_sym_uR_DQUOTE] = ACTIONS(2569), + [anon_sym_UR_DQUOTE] = ACTIONS(2569), + [anon_sym_u8R_DQUOTE] = ACTIONS(2569), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + }, + [438] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [439] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [440] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [441] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [442] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3620), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5804), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5826), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [443] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [444] = { + [sym_identifier] = ACTIONS(2573), + [aux_sym_preproc_include_token1] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2573), + [aux_sym_preproc_if_token1] = ACTIONS(2573), + [aux_sym_preproc_if_token2] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), + [aux_sym_preproc_else_token1] = ACTIONS(2573), + [aux_sym_preproc_elif_token1] = ACTIONS(2573), + [sym_preproc_directive] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_typedef] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym___attribute__] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), + [anon_sym___declspec] = ACTIONS(2573), + [anon_sym___based] = ACTIONS(2573), + [anon_sym___cdecl] = ACTIONS(2573), + [anon_sym___clrcall] = ACTIONS(2573), + [anon_sym___stdcall] = ACTIONS(2573), + [anon_sym___fastcall] = ACTIONS(2573), + [anon_sym___thiscall] = ACTIONS(2573), + [anon_sym___vectorcall] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_register] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_thread_local] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_volatile] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2573), + [anon_sym__Atomic] = ACTIONS(2573), + [anon_sym_mutable] = ACTIONS(2573), + [anon_sym_constexpr] = ACTIONS(2573), + [anon_sym_constinit] = ACTIONS(2573), + [anon_sym_consteval] = ACTIONS(2573), + [anon_sym_signed] = ACTIONS(2573), + [anon_sym_unsigned] = ACTIONS(2573), + [anon_sym_long] = ACTIONS(2573), + [anon_sym_short] = ACTIONS(2573), + [sym_primitive_type] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_goto] = ACTIONS(2573), + [anon_sym_not] = ACTIONS(2573), + [anon_sym_compl] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2573), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_L_SQUOTE] = ACTIONS(2575), + [anon_sym_u_SQUOTE] = ACTIONS(2575), + [anon_sym_U_SQUOTE] = ACTIONS(2575), + [anon_sym_u8_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_L_DQUOTE] = ACTIONS(2575), + [anon_sym_u_DQUOTE] = ACTIONS(2575), + [anon_sym_U_DQUOTE] = ACTIONS(2575), + [anon_sym_u8_DQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_null] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2573), + [anon_sym_decltype] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2573), + [anon_sym_explicit] = ACTIONS(2573), + [anon_sym_typename] = ACTIONS(2573), + [anon_sym_template] = ACTIONS(2573), + [anon_sym_operator] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_delete] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [anon_sym_static_assert] = ACTIONS(2573), + [anon_sym_concept] = ACTIONS(2573), + [anon_sym_co_return] = ACTIONS(2573), + [anon_sym_co_yield] = ACTIONS(2573), + [anon_sym_R_DQUOTE] = ACTIONS(2575), + [anon_sym_LR_DQUOTE] = ACTIONS(2575), + [anon_sym_uR_DQUOTE] = ACTIONS(2575), + [anon_sym_UR_DQUOTE] = ACTIONS(2575), + [anon_sym_u8R_DQUOTE] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_requires] = ACTIONS(2573), + [sym_this] = ACTIONS(2573), + [sym_nullptr] = ACTIONS(2573), + }, + [445] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [446] = { + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(2368), + [aux_sym_preproc_include_token1] = ACTIONS(2368), + [aux_sym_preproc_def_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token1] = ACTIONS(2368), + [aux_sym_preproc_if_token2] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), + [sym_preproc_directive] = ACTIONS(2368), + [anon_sym_LPAREN2] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_typedef] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym___attribute__] = ACTIONS(2368), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), + [anon_sym___declspec] = ACTIONS(2368), + [anon_sym___based] = ACTIONS(2368), + [anon_sym___cdecl] = ACTIONS(2368), + [anon_sym___clrcall] = ACTIONS(2368), + [anon_sym___stdcall] = ACTIONS(2368), + [anon_sym___fastcall] = ACTIONS(2368), + [anon_sym___thiscall] = ACTIONS(2368), + [anon_sym___vectorcall] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_inline] = ACTIONS(2368), + [anon_sym_thread_local] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_volatile] = ACTIONS(2368), + [anon_sym_restrict] = ACTIONS(2368), + [anon_sym__Atomic] = ACTIONS(2368), + [anon_sym_mutable] = ACTIONS(2368), + [anon_sym_constexpr] = ACTIONS(2368), + [anon_sym_constinit] = ACTIONS(2368), + [anon_sym_consteval] = ACTIONS(2368), + [anon_sym_signed] = ACTIONS(2368), + [anon_sym_unsigned] = ACTIONS(2368), + [anon_sym_long] = ACTIONS(2368), + [anon_sym_short] = ACTIONS(2368), + [sym_primitive_type] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_goto] = ACTIONS(2368), + [anon_sym_not] = ACTIONS(2368), + [anon_sym_compl] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_sizeof] = ACTIONS(2368), + [sym_number_literal] = ACTIONS(2370), + [anon_sym_L_SQUOTE] = ACTIONS(2370), + [anon_sym_u_SQUOTE] = ACTIONS(2370), + [anon_sym_U_SQUOTE] = ACTIONS(2370), + [anon_sym_u8_SQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_L_DQUOTE] = ACTIONS(2370), + [anon_sym_u_DQUOTE] = ACTIONS(2370), + [anon_sym_U_DQUOTE] = ACTIONS(2370), + [anon_sym_u8_DQUOTE] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2368), + [anon_sym_decltype] = ACTIONS(2368), + [anon_sym_virtual] = ACTIONS(2368), + [anon_sym_explicit] = ACTIONS(2368), + [anon_sym_typename] = ACTIONS(2368), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_operator] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_static_assert] = ACTIONS(2368), + [anon_sym_concept] = ACTIONS(2368), + [anon_sym_co_return] = ACTIONS(2368), + [anon_sym_co_yield] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_requires] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_nullptr] = ACTIONS(2368), + }, + [447] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [448] = { + [sym_identifier] = ACTIONS(2577), + [aux_sym_preproc_include_token1] = ACTIONS(2577), + [aux_sym_preproc_def_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token2] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), + [aux_sym_preproc_else_token1] = ACTIONS(2577), + [aux_sym_preproc_elif_token1] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym___attribute__] = ACTIONS(2577), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), + [anon_sym___declspec] = ACTIONS(2577), + [anon_sym___based] = ACTIONS(2577), + [anon_sym___cdecl] = ACTIONS(2577), + [anon_sym___clrcall] = ACTIONS(2577), + [anon_sym___stdcall] = ACTIONS(2577), + [anon_sym___fastcall] = ACTIONS(2577), + [anon_sym___thiscall] = ACTIONS(2577), + [anon_sym___vectorcall] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_thread_local] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_mutable] = ACTIONS(2577), + [anon_sym_constexpr] = ACTIONS(2577), + [anon_sym_constinit] = ACTIONS(2577), + [anon_sym_consteval] = ACTIONS(2577), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_compl] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_L_SQUOTE] = ACTIONS(2579), + [anon_sym_u_SQUOTE] = ACTIONS(2579), + [anon_sym_U_SQUOTE] = ACTIONS(2579), + [anon_sym_u8_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_L_DQUOTE] = ACTIONS(2579), + [anon_sym_u_DQUOTE] = ACTIONS(2579), + [anon_sym_U_DQUOTE] = ACTIONS(2579), + [anon_sym_u8_DQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2577), + [anon_sym_decltype] = ACTIONS(2577), + [anon_sym_virtual] = ACTIONS(2577), + [anon_sym_explicit] = ACTIONS(2577), + [anon_sym_typename] = ACTIONS(2577), + [anon_sym_template] = ACTIONS(2577), + [anon_sym_operator] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [anon_sym_static_assert] = ACTIONS(2577), + [anon_sym_concept] = ACTIONS(2577), + [anon_sym_co_return] = ACTIONS(2577), + [anon_sym_co_yield] = ACTIONS(2577), + [anon_sym_R_DQUOTE] = ACTIONS(2579), + [anon_sym_LR_DQUOTE] = ACTIONS(2579), + [anon_sym_uR_DQUOTE] = ACTIONS(2579), + [anon_sym_UR_DQUOTE] = ACTIONS(2579), + [anon_sym_u8R_DQUOTE] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_requires] = ACTIONS(2577), + [sym_this] = ACTIONS(2577), + [sym_nullptr] = ACTIONS(2577), + }, + [449] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3605), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5764), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5854), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [450] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [451] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [452] = { + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token2] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [aux_sym_preproc_else_token1] = ACTIONS(2583), + [aux_sym_preproc_elif_token1] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_R_DQUOTE] = ACTIONS(2585), + [anon_sym_LR_DQUOTE] = ACTIONS(2585), + [anon_sym_uR_DQUOTE] = ACTIONS(2585), + [anon_sym_UR_DQUOTE] = ACTIONS(2585), + [anon_sym_u8R_DQUOTE] = ACTIONS(2585), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + }, + [453] = { + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token2] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [aux_sym_preproc_else_token1] = ACTIONS(2587), + [aux_sym_preproc_elif_token1] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_R_DQUOTE] = ACTIONS(2589), + [anon_sym_LR_DQUOTE] = ACTIONS(2589), + [anon_sym_uR_DQUOTE] = ACTIONS(2589), + [anon_sym_UR_DQUOTE] = ACTIONS(2589), + [anon_sym_u8R_DQUOTE] = ACTIONS(2589), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + }, + [454] = { + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token2] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [aux_sym_preproc_else_token1] = ACTIONS(2591), + [aux_sym_preproc_elif_token1] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_R_DQUOTE] = ACTIONS(2593), + [anon_sym_LR_DQUOTE] = ACTIONS(2593), + [anon_sym_uR_DQUOTE] = ACTIONS(2593), + [anon_sym_UR_DQUOTE] = ACTIONS(2593), + [anon_sym_u8R_DQUOTE] = ACTIONS(2593), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + }, + [455] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_R_DQUOTE] = ACTIONS(2597), + [anon_sym_LR_DQUOTE] = ACTIONS(2597), + [anon_sym_uR_DQUOTE] = ACTIONS(2597), + [anon_sym_UR_DQUOTE] = ACTIONS(2597), + [anon_sym_u8R_DQUOTE] = ACTIONS(2597), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + }, + [456] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [457] = { + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token2] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [aux_sym_preproc_else_token1] = ACTIONS(2599), + [aux_sym_preproc_elif_token1] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_R_DQUOTE] = ACTIONS(2601), + [anon_sym_LR_DQUOTE] = ACTIONS(2601), + [anon_sym_uR_DQUOTE] = ACTIONS(2601), + [anon_sym_UR_DQUOTE] = ACTIONS(2601), + [anon_sym_u8R_DQUOTE] = ACTIONS(2601), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [458] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [459] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [460] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [461] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token2] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [aux_sym_preproc_else_token1] = ACTIONS(2603), + [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [462] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3632), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5723), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(6101), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [463] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [464] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3641), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5661), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(5943), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2609), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [465] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [466] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token2] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [aux_sym_preproc_else_token1] = ACTIONS(2603), + [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [467] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [468] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [aux_sym_preproc_else_token1] = ACTIONS(2611), + [aux_sym_preproc_elif_token1] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + }, + [469] = { + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [aux_sym_preproc_else_token1] = ACTIONS(2615), + [aux_sym_preproc_elif_token1] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + }, + [470] = { + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token2] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [aux_sym_preproc_else_token1] = ACTIONS(2619), + [aux_sym_preproc_elif_token1] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_R_DQUOTE] = ACTIONS(2621), + [anon_sym_LR_DQUOTE] = ACTIONS(2621), + [anon_sym_uR_DQUOTE] = ACTIONS(2621), + [anon_sym_UR_DQUOTE] = ACTIONS(2621), + [anon_sym_u8R_DQUOTE] = ACTIONS(2621), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + }, + [471] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [472] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [473] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [aux_sym_preproc_else_token1] = ACTIONS(2623), + [aux_sym_preproc_elif_token1] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [474] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [475] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [476] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [477] = { + [sym_catch_clause] = STATE(342), + [aux_sym_constructor_try_statement_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(2372), + [aux_sym_preproc_include_token1] = ACTIONS(2372), + [aux_sym_preproc_def_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token1] = ACTIONS(2372), + [aux_sym_preproc_if_token2] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2372), + [sym_preproc_directive] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_TILDE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_typedef] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym___attribute__] = ACTIONS(2372), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2374), + [anon_sym___declspec] = ACTIONS(2372), + [anon_sym___based] = ACTIONS(2372), + [anon_sym___cdecl] = ACTIONS(2372), + [anon_sym___clrcall] = ACTIONS(2372), + [anon_sym___stdcall] = ACTIONS(2372), + [anon_sym___fastcall] = ACTIONS(2372), + [anon_sym___thiscall] = ACTIONS(2372), + [anon_sym___vectorcall] = ACTIONS(2372), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_inline] = ACTIONS(2372), + [anon_sym_thread_local] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_volatile] = ACTIONS(2372), + [anon_sym_restrict] = ACTIONS(2372), + [anon_sym__Atomic] = ACTIONS(2372), + [anon_sym_mutable] = ACTIONS(2372), + [anon_sym_constexpr] = ACTIONS(2372), + [anon_sym_constinit] = ACTIONS(2372), + [anon_sym_consteval] = ACTIONS(2372), + [anon_sym_signed] = ACTIONS(2372), + [anon_sym_unsigned] = ACTIONS(2372), + [anon_sym_long] = ACTIONS(2372), + [anon_sym_short] = ACTIONS(2372), + [sym_primitive_type] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_class] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_goto] = ACTIONS(2372), + [anon_sym_not] = ACTIONS(2372), + [anon_sym_compl] = ACTIONS(2372), + [anon_sym_DASH_DASH] = ACTIONS(2374), + [anon_sym_PLUS_PLUS] = ACTIONS(2374), + [anon_sym_sizeof] = ACTIONS(2372), + [sym_number_literal] = ACTIONS(2374), + [anon_sym_L_SQUOTE] = ACTIONS(2374), + [anon_sym_u_SQUOTE] = ACTIONS(2374), + [anon_sym_U_SQUOTE] = ACTIONS(2374), + [anon_sym_u8_SQUOTE] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2374), + [anon_sym_L_DQUOTE] = ACTIONS(2374), + [anon_sym_u_DQUOTE] = ACTIONS(2374), + [anon_sym_U_DQUOTE] = ACTIONS(2374), + [anon_sym_u8_DQUOTE] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_true] = ACTIONS(2372), + [sym_false] = ACTIONS(2372), + [sym_null] = ACTIONS(2372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2372), + [anon_sym_decltype] = ACTIONS(2372), + [anon_sym_virtual] = ACTIONS(2372), + [anon_sym_explicit] = ACTIONS(2372), + [anon_sym_typename] = ACTIONS(2372), + [anon_sym_template] = ACTIONS(2372), + [anon_sym_operator] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_delete] = ACTIONS(2372), + [anon_sym_throw] = ACTIONS(2372), + [anon_sym_namespace] = ACTIONS(2372), + [anon_sym_using] = ACTIONS(2372), + [anon_sym_static_assert] = ACTIONS(2372), + [anon_sym_concept] = ACTIONS(2372), + [anon_sym_co_return] = ACTIONS(2372), + [anon_sym_co_yield] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_R_DQUOTE] = ACTIONS(2374), + [anon_sym_LR_DQUOTE] = ACTIONS(2374), + [anon_sym_uR_DQUOTE] = ACTIONS(2374), + [anon_sym_UR_DQUOTE] = ACTIONS(2374), + [anon_sym_u8R_DQUOTE] = ACTIONS(2374), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_requires] = ACTIONS(2372), + [sym_this] = ACTIONS(2372), + [sym_nullptr] = ACTIONS(2372), + }, + [478] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [479] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [aux_sym_preproc_else_token1] = ACTIONS(2627), + [aux_sym_preproc_elif_token1] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + }, + [480] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [aux_sym_preproc_else_token1] = ACTIONS(2511), + [aux_sym_preproc_elif_token1] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [481] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token2] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [aux_sym_preproc_else_token1] = ACTIONS(2631), + [aux_sym_preproc_elif_token1] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + }, + [482] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [aux_sym_preproc_else_token1] = ACTIONS(2635), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + }, + [483] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token2] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [aux_sym_preproc_else_token1] = ACTIONS(2639), + [aux_sym_preproc_elif_token1] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + }, + [484] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token2] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [aux_sym_preproc_else_token1] = ACTIONS(2643), + [aux_sym_preproc_elif_token1] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_R_DQUOTE] = ACTIONS(2645), + [anon_sym_LR_DQUOTE] = ACTIONS(2645), + [anon_sym_uR_DQUOTE] = ACTIONS(2645), + [anon_sym_UR_DQUOTE] = ACTIONS(2645), + [anon_sym_u8R_DQUOTE] = ACTIONS(2645), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + }, + [485] = { + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token2] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [aux_sym_preproc_else_token1] = ACTIONS(2649), + [aux_sym_preproc_elif_token1] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [486] = { + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token2] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [aux_sym_preproc_else_token1] = ACTIONS(2653), + [aux_sym_preproc_elif_token1] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [487] = { + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token2] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [aux_sym_preproc_else_token1] = ACTIONS(2657), + [aux_sym_preproc_elif_token1] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [488] = { + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token2] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [aux_sym_preproc_else_token1] = ACTIONS(2661), + [aux_sym_preproc_elif_token1] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [489] = { + [sym_type_qualifier] = STATE(3388), + [sym__type_specifier] = STATE(4205), + [sym_sized_type_specifier] = STATE(3153), + [sym_enum_specifier] = STATE(3153), + [sym_struct_specifier] = STATE(3153), + [sym_union_specifier] = STATE(3153), + [sym__expression] = STATE(3699), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_type_descriptor] = STATE(5881), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym_placeholder_type_specifier] = STATE(3153), + [sym_decltype_auto] = STATE(3152), + [sym_decltype] = STATE(3153), + [sym_class_specifier] = STATE(3153), + [sym__class_name] = STATE(6582), + [sym_dependent_type] = STATE(3153), + [sym_template_type] = STATE(4444), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_type_parameter_pack_expansion] = STATE(6477), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4922), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4485), + [sym_user_defined_literal] = STATE(3901), + [aux_sym_type_definition_repeat1] = STATE(3388), + [aux_sym_sized_type_specifier_repeat1] = STATE(2341), + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2445), + [anon_sym_decltype] = ACTIONS(2447), + [anon_sym_typename] = ACTIONS(2449), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [490] = { + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token2] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [aux_sym_preproc_else_token1] = ACTIONS(2665), + [aux_sym_preproc_elif_token1] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [491] = { + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token2] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [aux_sym_preproc_else_token1] = ACTIONS(2669), + [aux_sym_preproc_elif_token1] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [492] = { + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token2] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [aux_sym_preproc_else_token1] = ACTIONS(2673), + [aux_sym_preproc_elif_token1] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [493] = { + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token2] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [aux_sym_preproc_else_token1] = ACTIONS(2677), + [aux_sym_preproc_elif_token1] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [494] = { + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [aux_sym_preproc_else_token1] = ACTIONS(2681), + [aux_sym_preproc_elif_token1] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [495] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [496] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [aux_sym_preproc_else_token1] = ACTIONS(2685), + [aux_sym_preproc_elif_token1] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [497] = { + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token2] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [aux_sym_preproc_else_token1] = ACTIONS(2689), + [aux_sym_preproc_elif_token1] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [498] = { + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token2] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [aux_sym_preproc_else_token1] = ACTIONS(2693), + [aux_sym_preproc_elif_token1] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [499] = { + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token2] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [aux_sym_preproc_else_token1] = ACTIONS(2697), + [aux_sym_preproc_elif_token1] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [500] = { + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token2] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [aux_sym_preproc_else_token1] = ACTIONS(2701), + [aux_sym_preproc_elif_token1] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [501] = { + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token2] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [aux_sym_preproc_else_token1] = ACTIONS(2705), + [aux_sym_preproc_elif_token1] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [502] = { + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [503] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [aux_sym_preproc_else_token1] = ACTIONS(2713), + [aux_sym_preproc_elif_token1] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [504] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token2] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [aux_sym_preproc_else_token1] = ACTIONS(2717), + [aux_sym_preproc_elif_token1] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [505] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [aux_sym_preproc_else_token1] = ACTIONS(2721), + [aux_sym_preproc_elif_token1] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [506] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [aux_sym_preproc_else_token1] = ACTIONS(2725), + [aux_sym_preproc_elif_token1] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [507] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [aux_sym_preproc_else_token1] = ACTIONS(2729), + [aux_sym_preproc_elif_token1] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [508] = { + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token2] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [aux_sym_preproc_else_token1] = ACTIONS(2733), + [aux_sym_preproc_elif_token1] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_R_DQUOTE] = ACTIONS(2735), + [anon_sym_LR_DQUOTE] = ACTIONS(2735), + [anon_sym_uR_DQUOTE] = ACTIONS(2735), + [anon_sym_UR_DQUOTE] = ACTIONS(2735), + [anon_sym_u8R_DQUOTE] = ACTIONS(2735), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + }, + [509] = { + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token2] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [aux_sym_preproc_else_token1] = ACTIONS(2737), + [aux_sym_preproc_elif_token1] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_R_DQUOTE] = ACTIONS(2739), + [anon_sym_LR_DQUOTE] = ACTIONS(2739), + [anon_sym_uR_DQUOTE] = ACTIONS(2739), + [anon_sym_UR_DQUOTE] = ACTIONS(2739), + [anon_sym_u8R_DQUOTE] = ACTIONS(2739), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + }, + [510] = { + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token2] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [aux_sym_preproc_else_token1] = ACTIONS(2741), + [aux_sym_preproc_elif_token1] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_R_DQUOTE] = ACTIONS(2743), + [anon_sym_LR_DQUOTE] = ACTIONS(2743), + [anon_sym_uR_DQUOTE] = ACTIONS(2743), + [anon_sym_UR_DQUOTE] = ACTIONS(2743), + [anon_sym_u8R_DQUOTE] = ACTIONS(2743), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + }, + [511] = { + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [aux_sym_preproc_else_token1] = ACTIONS(2745), + [aux_sym_preproc_elif_token1] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_R_DQUOTE] = ACTIONS(2747), + [anon_sym_LR_DQUOTE] = ACTIONS(2747), + [anon_sym_uR_DQUOTE] = ACTIONS(2747), + [anon_sym_UR_DQUOTE] = ACTIONS(2747), + [anon_sym_u8R_DQUOTE] = ACTIONS(2747), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + }, + [512] = { + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token2] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [aux_sym_preproc_else_token1] = ACTIONS(2749), + [aux_sym_preproc_elif_token1] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_R_DQUOTE] = ACTIONS(2751), + [anon_sym_LR_DQUOTE] = ACTIONS(2751), + [anon_sym_uR_DQUOTE] = ACTIONS(2751), + [anon_sym_UR_DQUOTE] = ACTIONS(2751), + [anon_sym_u8R_DQUOTE] = ACTIONS(2751), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + }, + [513] = { + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token2] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [aux_sym_preproc_else_token1] = ACTIONS(2753), + [aux_sym_preproc_elif_token1] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_R_DQUOTE] = ACTIONS(2755), + [anon_sym_LR_DQUOTE] = ACTIONS(2755), + [anon_sym_uR_DQUOTE] = ACTIONS(2755), + [anon_sym_UR_DQUOTE] = ACTIONS(2755), + [anon_sym_u8R_DQUOTE] = ACTIONS(2755), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + }, + [514] = { + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token2] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [aux_sym_preproc_else_token1] = ACTIONS(2757), + [aux_sym_preproc_elif_token1] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_R_DQUOTE] = ACTIONS(2759), + [anon_sym_LR_DQUOTE] = ACTIONS(2759), + [anon_sym_uR_DQUOTE] = ACTIONS(2759), + [anon_sym_UR_DQUOTE] = ACTIONS(2759), + [anon_sym_u8R_DQUOTE] = ACTIONS(2759), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + }, + [515] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [516] = { + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token2] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [aux_sym_preproc_else_token1] = ACTIONS(2761), + [aux_sym_preproc_elif_token1] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_R_DQUOTE] = ACTIONS(2763), + [anon_sym_LR_DQUOTE] = ACTIONS(2763), + [anon_sym_uR_DQUOTE] = ACTIONS(2763), + [anon_sym_UR_DQUOTE] = ACTIONS(2763), + [anon_sym_u8R_DQUOTE] = ACTIONS(2763), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + }, + [517] = { + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token2] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [aux_sym_preproc_else_token1] = ACTIONS(2765), + [aux_sym_preproc_elif_token1] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_R_DQUOTE] = ACTIONS(2767), + [anon_sym_LR_DQUOTE] = ACTIONS(2767), + [anon_sym_uR_DQUOTE] = ACTIONS(2767), + [anon_sym_UR_DQUOTE] = ACTIONS(2767), + [anon_sym_u8R_DQUOTE] = ACTIONS(2767), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + }, + [518] = { + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token2] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [aux_sym_preproc_else_token1] = ACTIONS(2769), + [aux_sym_preproc_elif_token1] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_R_DQUOTE] = ACTIONS(2771), + [anon_sym_LR_DQUOTE] = ACTIONS(2771), + [anon_sym_uR_DQUOTE] = ACTIONS(2771), + [anon_sym_UR_DQUOTE] = ACTIONS(2771), + [anon_sym_u8R_DQUOTE] = ACTIONS(2771), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + }, + [519] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token2] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [aux_sym_preproc_else_token1] = ACTIONS(2773), + [aux_sym_preproc_elif_token1] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [520] = { + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token2] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [aux_sym_preproc_else_token1] = ACTIONS(2777), + [aux_sym_preproc_elif_token1] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_R_DQUOTE] = ACTIONS(2779), + [anon_sym_LR_DQUOTE] = ACTIONS(2779), + [anon_sym_uR_DQUOTE] = ACTIONS(2779), + [anon_sym_UR_DQUOTE] = ACTIONS(2779), + [anon_sym_u8R_DQUOTE] = ACTIONS(2779), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + }, + [521] = { + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_include_token1] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token2] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), + [anon_sym___declspec] = ACTIONS(2384), + [anon_sym___based] = ACTIONS(2384), + [anon_sym___cdecl] = ACTIONS(2384), + [anon_sym___clrcall] = ACTIONS(2384), + [anon_sym___stdcall] = ACTIONS(2384), + [anon_sym___fastcall] = ACTIONS(2384), + [anon_sym___thiscall] = ACTIONS(2384), + [anon_sym___vectorcall] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_thread_local] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_mutable] = ACTIONS(2384), + [anon_sym_constexpr] = ACTIONS(2384), + [anon_sym_constinit] = ACTIONS(2384), + [anon_sym_consteval] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_goto] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2384), + [anon_sym_compl] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2386), + [anon_sym_L_SQUOTE] = ACTIONS(2386), + [anon_sym_u_SQUOTE] = ACTIONS(2386), + [anon_sym_U_SQUOTE] = ACTIONS(2386), + [anon_sym_u8_SQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_L_DQUOTE] = ACTIONS(2386), + [anon_sym_u_DQUOTE] = ACTIONS(2386), + [anon_sym_U_DQUOTE] = ACTIONS(2386), + [anon_sym_u8_DQUOTE] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2384), + [anon_sym_decltype] = ACTIONS(2384), + [anon_sym_virtual] = ACTIONS(2384), + [anon_sym_explicit] = ACTIONS(2384), + [anon_sym_typename] = ACTIONS(2384), + [anon_sym_template] = ACTIONS(2384), + [anon_sym_operator] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_static_assert] = ACTIONS(2384), + [anon_sym_concept] = ACTIONS(2384), + [anon_sym_co_return] = ACTIONS(2384), + [anon_sym_co_yield] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_R_DQUOTE] = ACTIONS(2386), + [anon_sym_LR_DQUOTE] = ACTIONS(2386), + [anon_sym_uR_DQUOTE] = ACTIONS(2386), + [anon_sym_UR_DQUOTE] = ACTIONS(2386), + [anon_sym_u8R_DQUOTE] = ACTIONS(2386), + [anon_sym_co_await] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_requires] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_nullptr] = ACTIONS(2384), + }, + [522] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [523] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token2] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [aux_sym_preproc_else_token1] = ACTIONS(2773), + [aux_sym_preproc_elif_token1] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [524] = { + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token2] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [aux_sym_preproc_else_token1] = ACTIONS(2781), + [aux_sym_preproc_elif_token1] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_R_DQUOTE] = ACTIONS(2783), + [anon_sym_LR_DQUOTE] = ACTIONS(2783), + [anon_sym_uR_DQUOTE] = ACTIONS(2783), + [anon_sym_UR_DQUOTE] = ACTIONS(2783), + [anon_sym_u8R_DQUOTE] = ACTIONS(2783), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + }, + [525] = { + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token2] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [aux_sym_preproc_else_token1] = ACTIONS(2785), + [aux_sym_preproc_elif_token1] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_R_DQUOTE] = ACTIONS(2787), + [anon_sym_LR_DQUOTE] = ACTIONS(2787), + [anon_sym_uR_DQUOTE] = ACTIONS(2787), + [anon_sym_UR_DQUOTE] = ACTIONS(2787), + [anon_sym_u8R_DQUOTE] = ACTIONS(2787), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + }, + [526] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [sym_nullptr] = ACTIONS(2329), + }, + [527] = { + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token2] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [aux_sym_preproc_else_token1] = ACTIONS(2789), + [aux_sym_preproc_elif_token1] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_R_DQUOTE] = ACTIONS(2791), + [anon_sym_LR_DQUOTE] = ACTIONS(2791), + [anon_sym_uR_DQUOTE] = ACTIONS(2791), + [anon_sym_UR_DQUOTE] = ACTIONS(2791), + [anon_sym_u8R_DQUOTE] = ACTIONS(2791), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + }, + [528] = { + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token2] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [aux_sym_preproc_else_token1] = ACTIONS(2793), + [aux_sym_preproc_elif_token1] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_R_DQUOTE] = ACTIONS(2795), + [anon_sym_LR_DQUOTE] = ACTIONS(2795), + [anon_sym_uR_DQUOTE] = ACTIONS(2795), + [anon_sym_UR_DQUOTE] = ACTIONS(2795), + [anon_sym_u8R_DQUOTE] = ACTIONS(2795), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + }, + [529] = { + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token2] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [aux_sym_preproc_else_token1] = ACTIONS(2797), + [aux_sym_preproc_elif_token1] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_R_DQUOTE] = ACTIONS(2799), + [anon_sym_LR_DQUOTE] = ACTIONS(2799), + [anon_sym_uR_DQUOTE] = ACTIONS(2799), + [anon_sym_UR_DQUOTE] = ACTIONS(2799), + [anon_sym_u8R_DQUOTE] = ACTIONS(2799), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + }, + [530] = { + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token2] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [aux_sym_preproc_else_token1] = ACTIONS(2801), + [aux_sym_preproc_elif_token1] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_R_DQUOTE] = ACTIONS(2803), + [anon_sym_LR_DQUOTE] = ACTIONS(2803), + [anon_sym_uR_DQUOTE] = ACTIONS(2803), + [anon_sym_UR_DQUOTE] = ACTIONS(2803), + [anon_sym_u8R_DQUOTE] = ACTIONS(2803), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + }, + [531] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token2] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [aux_sym_preproc_else_token1] = ACTIONS(2805), + [aux_sym_preproc_elif_token1] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_R_DQUOTE] = ACTIONS(2807), + [anon_sym_LR_DQUOTE] = ACTIONS(2807), + [anon_sym_uR_DQUOTE] = ACTIONS(2807), + [anon_sym_UR_DQUOTE] = ACTIONS(2807), + [anon_sym_u8R_DQUOTE] = ACTIONS(2807), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + }, + [532] = { + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token2] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [aux_sym_preproc_else_token1] = ACTIONS(2809), + [aux_sym_preproc_elif_token1] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_R_DQUOTE] = ACTIONS(2811), + [anon_sym_LR_DQUOTE] = ACTIONS(2811), + [anon_sym_uR_DQUOTE] = ACTIONS(2811), + [anon_sym_UR_DQUOTE] = ACTIONS(2811), + [anon_sym_u8R_DQUOTE] = ACTIONS(2811), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + }, + [533] = { + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token2] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [aux_sym_preproc_else_token1] = ACTIONS(2813), + [aux_sym_preproc_elif_token1] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_R_DQUOTE] = ACTIONS(2815), + [anon_sym_LR_DQUOTE] = ACTIONS(2815), + [anon_sym_uR_DQUOTE] = ACTIONS(2815), + [anon_sym_UR_DQUOTE] = ACTIONS(2815), + [anon_sym_u8R_DQUOTE] = ACTIONS(2815), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + }, + [534] = { + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token2] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [aux_sym_preproc_else_token1] = ACTIONS(2817), + [aux_sym_preproc_elif_token1] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_R_DQUOTE] = ACTIONS(2819), + [anon_sym_LR_DQUOTE] = ACTIONS(2819), + [anon_sym_uR_DQUOTE] = ACTIONS(2819), + [anon_sym_UR_DQUOTE] = ACTIONS(2819), + [anon_sym_u8R_DQUOTE] = ACTIONS(2819), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + }, + [535] = { + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_include_token1] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), + [anon_sym___declspec] = ACTIONS(2384), + [anon_sym___based] = ACTIONS(2384), + [anon_sym___cdecl] = ACTIONS(2384), + [anon_sym___clrcall] = ACTIONS(2384), + [anon_sym___stdcall] = ACTIONS(2384), + [anon_sym___fastcall] = ACTIONS(2384), + [anon_sym___thiscall] = ACTIONS(2384), + [anon_sym___vectorcall] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_thread_local] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_mutable] = ACTIONS(2384), + [anon_sym_constexpr] = ACTIONS(2384), + [anon_sym_constinit] = ACTIONS(2384), + [anon_sym_consteval] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_goto] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2384), + [anon_sym_compl] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2386), + [anon_sym_L_SQUOTE] = ACTIONS(2386), + [anon_sym_u_SQUOTE] = ACTIONS(2386), + [anon_sym_U_SQUOTE] = ACTIONS(2386), + [anon_sym_u8_SQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_L_DQUOTE] = ACTIONS(2386), + [anon_sym_u_DQUOTE] = ACTIONS(2386), + [anon_sym_U_DQUOTE] = ACTIONS(2386), + [anon_sym_u8_DQUOTE] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2384), + [anon_sym_decltype] = ACTIONS(2384), + [anon_sym_virtual] = ACTIONS(2384), + [anon_sym_explicit] = ACTIONS(2384), + [anon_sym_typename] = ACTIONS(2384), + [anon_sym_template] = ACTIONS(2384), + [anon_sym_operator] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_static_assert] = ACTIONS(2384), + [anon_sym_concept] = ACTIONS(2384), + [anon_sym_co_return] = ACTIONS(2384), + [anon_sym_co_yield] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_R_DQUOTE] = ACTIONS(2386), + [anon_sym_LR_DQUOTE] = ACTIONS(2386), + [anon_sym_uR_DQUOTE] = ACTIONS(2386), + [anon_sym_UR_DQUOTE] = ACTIONS(2386), + [anon_sym_u8R_DQUOTE] = ACTIONS(2386), + [anon_sym_co_await] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_requires] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_nullptr] = ACTIONS(2384), + }, + [536] = { + [sym_identifier] = ACTIONS(2329), + [aux_sym_preproc_include_token1] = ACTIONS(2329), + [aux_sym_preproc_def_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token1] = ACTIONS(2329), + [aux_sym_preproc_if_token2] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2329), + [sym_preproc_directive] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP_AMP] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym___based] = ACTIONS(2329), + [anon_sym___cdecl] = ACTIONS(2329), + [anon_sym___clrcall] = ACTIONS(2329), + [anon_sym___stdcall] = ACTIONS(2329), + [anon_sym___fastcall] = ACTIONS(2329), + [anon_sym___thiscall] = ACTIONS(2329), + [anon_sym___vectorcall] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_explicit] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_operator] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_namespace] = ACTIONS(2329), + [anon_sym_using] = ACTIONS(2329), + [anon_sym_static_assert] = ACTIONS(2329), + [anon_sym_concept] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [sym_nullptr] = ACTIONS(2329), + }, + [537] = { + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token2] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [aux_sym_preproc_else_token1] = ACTIONS(2821), + [aux_sym_preproc_elif_token1] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_R_DQUOTE] = ACTIONS(2823), + [anon_sym_LR_DQUOTE] = ACTIONS(2823), + [anon_sym_uR_DQUOTE] = ACTIONS(2823), + [anon_sym_UR_DQUOTE] = ACTIONS(2823), + [anon_sym_u8R_DQUOTE] = ACTIONS(2823), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + }, + [538] = { + [sym_identifier] = ACTIONS(2384), + [aux_sym_preproc_include_token1] = ACTIONS(2384), + [aux_sym_preproc_def_token1] = ACTIONS(2384), + [aux_sym_preproc_if_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2384), + [sym_preproc_directive] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), + [anon_sym___declspec] = ACTIONS(2384), + [anon_sym___based] = ACTIONS(2384), + [anon_sym___cdecl] = ACTIONS(2384), + [anon_sym___clrcall] = ACTIONS(2384), + [anon_sym___stdcall] = ACTIONS(2384), + [anon_sym___fastcall] = ACTIONS(2384), + [anon_sym___thiscall] = ACTIONS(2384), + [anon_sym___vectorcall] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_thread_local] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_mutable] = ACTIONS(2384), + [anon_sym_constexpr] = ACTIONS(2384), + [anon_sym_constinit] = ACTIONS(2384), + [anon_sym_consteval] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_goto] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2384), + [anon_sym_compl] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2386), + [anon_sym_L_SQUOTE] = ACTIONS(2386), + [anon_sym_u_SQUOTE] = ACTIONS(2386), + [anon_sym_U_SQUOTE] = ACTIONS(2386), + [anon_sym_u8_SQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_L_DQUOTE] = ACTIONS(2386), + [anon_sym_u_DQUOTE] = ACTIONS(2386), + [anon_sym_U_DQUOTE] = ACTIONS(2386), + [anon_sym_u8_DQUOTE] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2384), + [anon_sym_decltype] = ACTIONS(2384), + [anon_sym_virtual] = ACTIONS(2384), + [anon_sym_explicit] = ACTIONS(2384), + [anon_sym_typename] = ACTIONS(2384), + [anon_sym_template] = ACTIONS(2384), + [anon_sym_operator] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_static_assert] = ACTIONS(2384), + [anon_sym_concept] = ACTIONS(2384), + [anon_sym_co_return] = ACTIONS(2384), + [anon_sym_co_yield] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_R_DQUOTE] = ACTIONS(2386), + [anon_sym_LR_DQUOTE] = ACTIONS(2386), + [anon_sym_uR_DQUOTE] = ACTIONS(2386), + [anon_sym_UR_DQUOTE] = ACTIONS(2386), + [anon_sym_u8R_DQUOTE] = ACTIONS(2386), + [anon_sym_co_await] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_requires] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_nullptr] = ACTIONS(2384), + }, + [539] = { + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token2] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [aux_sym_preproc_else_token1] = ACTIONS(2825), + [aux_sym_preproc_elif_token1] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_R_DQUOTE] = ACTIONS(2827), + [anon_sym_LR_DQUOTE] = ACTIONS(2827), + [anon_sym_uR_DQUOTE] = ACTIONS(2827), + [anon_sym_UR_DQUOTE] = ACTIONS(2827), + [anon_sym_u8R_DQUOTE] = ACTIONS(2827), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + }, + [540] = { + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token2] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [aux_sym_preproc_else_token1] = ACTIONS(2829), + [aux_sym_preproc_elif_token1] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_R_DQUOTE] = ACTIONS(2831), + [anon_sym_LR_DQUOTE] = ACTIONS(2831), + [anon_sym_uR_DQUOTE] = ACTIONS(2831), + [anon_sym_UR_DQUOTE] = ACTIONS(2831), + [anon_sym_u8R_DQUOTE] = ACTIONS(2831), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + }, + [541] = { + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token2] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [aux_sym_preproc_else_token1] = ACTIONS(2833), + [aux_sym_preproc_elif_token1] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_R_DQUOTE] = ACTIONS(2835), + [anon_sym_LR_DQUOTE] = ACTIONS(2835), + [anon_sym_uR_DQUOTE] = ACTIONS(2835), + [anon_sym_UR_DQUOTE] = ACTIONS(2835), + [anon_sym_u8R_DQUOTE] = ACTIONS(2835), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + }, + [542] = { + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token2] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [aux_sym_preproc_else_token1] = ACTIONS(2837), + [aux_sym_preproc_elif_token1] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_R_DQUOTE] = ACTIONS(2839), + [anon_sym_LR_DQUOTE] = ACTIONS(2839), + [anon_sym_uR_DQUOTE] = ACTIONS(2839), + [anon_sym_UR_DQUOTE] = ACTIONS(2839), + [anon_sym_u8R_DQUOTE] = ACTIONS(2839), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + }, + [543] = { + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token2] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [aux_sym_preproc_else_token1] = ACTIONS(2841), + [aux_sym_preproc_elif_token1] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_R_DQUOTE] = ACTIONS(2843), + [anon_sym_LR_DQUOTE] = ACTIONS(2843), + [anon_sym_uR_DQUOTE] = ACTIONS(2843), + [anon_sym_UR_DQUOTE] = ACTIONS(2843), + [anon_sym_u8R_DQUOTE] = ACTIONS(2843), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + }, + [544] = { + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token2] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [aux_sym_preproc_else_token1] = ACTIONS(2845), + [aux_sym_preproc_elif_token1] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_R_DQUOTE] = ACTIONS(2847), + [anon_sym_LR_DQUOTE] = ACTIONS(2847), + [anon_sym_uR_DQUOTE] = ACTIONS(2847), + [anon_sym_UR_DQUOTE] = ACTIONS(2847), + [anon_sym_u8R_DQUOTE] = ACTIONS(2847), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + }, + [545] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [547] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [548] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [549] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [550] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [551] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [552] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [553] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [554] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [555] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [556] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [557] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [558] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [559] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [560] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + }, + [563] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [564] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [565] = { + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_R_DQUOTE] = ACTIONS(2569), + [anon_sym_LR_DQUOTE] = ACTIONS(2569), + [anon_sym_uR_DQUOTE] = ACTIONS(2569), + [anon_sym_UR_DQUOTE] = ACTIONS(2569), + [anon_sym_u8R_DQUOTE] = ACTIONS(2569), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + }, + [566] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_R_DQUOTE] = ACTIONS(2561), + [anon_sym_LR_DQUOTE] = ACTIONS(2561), + [anon_sym_uR_DQUOTE] = ACTIONS(2561), + [anon_sym_UR_DQUOTE] = ACTIONS(2561), + [anon_sym_u8R_DQUOTE] = ACTIONS(2561), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + }, + [567] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [568] = { + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_R_DQUOTE] = ACTIONS(2553), + [anon_sym_LR_DQUOTE] = ACTIONS(2553), + [anon_sym_uR_DQUOTE] = ACTIONS(2553), + [anon_sym_UR_DQUOTE] = ACTIONS(2553), + [anon_sym_u8R_DQUOTE] = ACTIONS(2553), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + }, + [569] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [570] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [571] = { + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_R_DQUOTE] = ACTIONS(2593), + [anon_sym_LR_DQUOTE] = ACTIONS(2593), + [anon_sym_uR_DQUOTE] = ACTIONS(2593), + [anon_sym_UR_DQUOTE] = ACTIONS(2593), + [anon_sym_u8R_DQUOTE] = ACTIONS(2593), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + }, + [572] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [573] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [574] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [575] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [576] = { + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + }, + [577] = { + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + }, + [578] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [579] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [580] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [581] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [582] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [583] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [584] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [585] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [586] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [587] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [588] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [589] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [590] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [591] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [592] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [593] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [594] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [595] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token2] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [596] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [597] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [599] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [600] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [601] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [602] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [603] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [604] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [606] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [607] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [608] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [609] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [610] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [611] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [612] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [613] = { + [sym_identifier] = ACTIONS(2465), + [aux_sym_preproc_include_token1] = ACTIONS(2465), + [aux_sym_preproc_def_token1] = ACTIONS(2465), + [aux_sym_preproc_if_token1] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), + [sym_preproc_directive] = ACTIONS(2465), + [anon_sym_LPAREN2] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_typedef] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym___attribute__] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), + [anon_sym___declspec] = ACTIONS(2465), + [anon_sym___based] = ACTIONS(2465), + [anon_sym___cdecl] = ACTIONS(2465), + [anon_sym___clrcall] = ACTIONS(2465), + [anon_sym___stdcall] = ACTIONS(2465), + [anon_sym___fastcall] = ACTIONS(2465), + [anon_sym___thiscall] = ACTIONS(2465), + [anon_sym___vectorcall] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_thread_local] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_volatile] = ACTIONS(2465), + [anon_sym_restrict] = ACTIONS(2465), + [anon_sym__Atomic] = ACTIONS(2465), + [anon_sym_mutable] = ACTIONS(2465), + [anon_sym_constexpr] = ACTIONS(2465), + [anon_sym_constinit] = ACTIONS(2465), + [anon_sym_consteval] = ACTIONS(2465), + [anon_sym_signed] = ACTIONS(2465), + [anon_sym_unsigned] = ACTIONS(2465), + [anon_sym_long] = ACTIONS(2465), + [anon_sym_short] = ACTIONS(2465), + [sym_primitive_type] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_compl] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_number_literal] = ACTIONS(2467), + [anon_sym_L_SQUOTE] = ACTIONS(2467), + [anon_sym_u_SQUOTE] = ACTIONS(2467), + [anon_sym_U_SQUOTE] = ACTIONS(2467), + [anon_sym_u8_SQUOTE] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_L_DQUOTE] = ACTIONS(2467), + [anon_sym_u_DQUOTE] = ACTIONS(2467), + [anon_sym_U_DQUOTE] = ACTIONS(2467), + [anon_sym_u8_DQUOTE] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_null] = ACTIONS(2465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2465), + [anon_sym_decltype] = ACTIONS(2465), + [anon_sym_virtual] = ACTIONS(2465), + [anon_sym_explicit] = ACTIONS(2465), + [anon_sym_typename] = ACTIONS(2465), + [anon_sym_template] = ACTIONS(2465), + [anon_sym_operator] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_delete] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [anon_sym_static_assert] = ACTIONS(2465), + [anon_sym_concept] = ACTIONS(2465), + [anon_sym_co_return] = ACTIONS(2465), + [anon_sym_co_yield] = ACTIONS(2465), + [anon_sym_R_DQUOTE] = ACTIONS(2467), + [anon_sym_LR_DQUOTE] = ACTIONS(2467), + [anon_sym_uR_DQUOTE] = ACTIONS(2467), + [anon_sym_UR_DQUOTE] = ACTIONS(2467), + [anon_sym_u8R_DQUOTE] = ACTIONS(2467), + [anon_sym_co_await] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_requires] = ACTIONS(2465), + [sym_this] = ACTIONS(2465), + [sym_nullptr] = ACTIONS(2465), + }, + [614] = { + [sym_identifier] = ACTIONS(2469), + [aux_sym_preproc_include_token1] = ACTIONS(2469), + [aux_sym_preproc_def_token1] = ACTIONS(2469), + [aux_sym_preproc_if_token1] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), + [sym_preproc_directive] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_typedef] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym___attribute__] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), + [anon_sym___declspec] = ACTIONS(2469), + [anon_sym___based] = ACTIONS(2469), + [anon_sym___cdecl] = ACTIONS(2469), + [anon_sym___clrcall] = ACTIONS(2469), + [anon_sym___stdcall] = ACTIONS(2469), + [anon_sym___fastcall] = ACTIONS(2469), + [anon_sym___thiscall] = ACTIONS(2469), + [anon_sym___vectorcall] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_thread_local] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_volatile] = ACTIONS(2469), + [anon_sym_restrict] = ACTIONS(2469), + [anon_sym__Atomic] = ACTIONS(2469), + [anon_sym_mutable] = ACTIONS(2469), + [anon_sym_constexpr] = ACTIONS(2469), + [anon_sym_constinit] = ACTIONS(2469), + [anon_sym_consteval] = ACTIONS(2469), + [anon_sym_signed] = ACTIONS(2469), + [anon_sym_unsigned] = ACTIONS(2469), + [anon_sym_long] = ACTIONS(2469), + [anon_sym_short] = ACTIONS(2469), + [sym_primitive_type] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_compl] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_sizeof] = ACTIONS(2469), + [sym_number_literal] = ACTIONS(2471), + [anon_sym_L_SQUOTE] = ACTIONS(2471), + [anon_sym_u_SQUOTE] = ACTIONS(2471), + [anon_sym_U_SQUOTE] = ACTIONS(2471), + [anon_sym_u8_SQUOTE] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_L_DQUOTE] = ACTIONS(2471), + [anon_sym_u_DQUOTE] = ACTIONS(2471), + [anon_sym_U_DQUOTE] = ACTIONS(2471), + [anon_sym_u8_DQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_null] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2469), + [anon_sym_decltype] = ACTIONS(2469), + [anon_sym_virtual] = ACTIONS(2469), + [anon_sym_explicit] = ACTIONS(2469), + [anon_sym_typename] = ACTIONS(2469), + [anon_sym_template] = ACTIONS(2469), + [anon_sym_operator] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_delete] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [anon_sym_static_assert] = ACTIONS(2469), + [anon_sym_concept] = ACTIONS(2469), + [anon_sym_co_return] = ACTIONS(2469), + [anon_sym_co_yield] = ACTIONS(2469), + [anon_sym_R_DQUOTE] = ACTIONS(2471), + [anon_sym_LR_DQUOTE] = ACTIONS(2471), + [anon_sym_uR_DQUOTE] = ACTIONS(2471), + [anon_sym_UR_DQUOTE] = ACTIONS(2471), + [anon_sym_u8R_DQUOTE] = ACTIONS(2471), + [anon_sym_co_await] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_requires] = ACTIONS(2469), + [sym_this] = ACTIONS(2469), + [sym_nullptr] = ACTIONS(2469), + }, + [615] = { + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [616] = { + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [617] = { + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [618] = { + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [619] = { + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [620] = { + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [621] = { + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [622] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [623] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token2] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_R_DQUOTE] = ACTIONS(2645), + [anon_sym_LR_DQUOTE] = ACTIONS(2645), + [anon_sym_uR_DQUOTE] = ACTIONS(2645), + [anon_sym_UR_DQUOTE] = ACTIONS(2645), + [anon_sym_u8R_DQUOTE] = ACTIONS(2645), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + }, + [624] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token2] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + }, + [625] = { + [sym_identifier] = ACTIONS(2507), + [aux_sym_preproc_include_token1] = ACTIONS(2507), + [aux_sym_preproc_def_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), + [sym_preproc_directive] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym___based] = ACTIONS(2507), + [anon_sym___cdecl] = ACTIONS(2507), + [anon_sym___clrcall] = ACTIONS(2507), + [anon_sym___stdcall] = ACTIONS(2507), + [anon_sym___fastcall] = ACTIONS(2507), + [anon_sym___thiscall] = ACTIONS(2507), + [anon_sym___vectorcall] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_explicit] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_operator] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_namespace] = ACTIONS(2507), + [anon_sym_using] = ACTIONS(2507), + [anon_sym_static_assert] = ACTIONS(2507), + [anon_sym_concept] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [626] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [627] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [628] = { + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [629] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [630] = { + [sym_identifier] = ACTIONS(2525), + [aux_sym_preproc_include_token1] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), + [sym_preproc_directive] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP_AMP] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym___based] = ACTIONS(2525), + [anon_sym___cdecl] = ACTIONS(2525), + [anon_sym___clrcall] = ACTIONS(2525), + [anon_sym___stdcall] = ACTIONS(2525), + [anon_sym___fastcall] = ACTIONS(2525), + [anon_sym___thiscall] = ACTIONS(2525), + [anon_sym___vectorcall] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_explicit] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_operator] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [anon_sym_static_assert] = ACTIONS(2525), + [anon_sym_concept] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_R_DQUOTE] = ACTIONS(2527), + [anon_sym_LR_DQUOTE] = ACTIONS(2527), + [anon_sym_uR_DQUOTE] = ACTIONS(2527), + [anon_sym_UR_DQUOTE] = ACTIONS(2527), + [anon_sym_u8R_DQUOTE] = ACTIONS(2527), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + }, + [631] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + }, + [632] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token2] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + }, + [633] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token2] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [634] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [635] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + }, + [636] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [637] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [638] = { + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [639] = { + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [640] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [641] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [642] = { + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + }, + [643] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + }, + [644] = { + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [645] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [646] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [647] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [648] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_R_DQUOTE] = ACTIONS(2597), + [anon_sym_LR_DQUOTE] = ACTIONS(2597), + [anon_sym_uR_DQUOTE] = ACTIONS(2597), + [anon_sym_UR_DQUOTE] = ACTIONS(2597), + [anon_sym_u8R_DQUOTE] = ACTIONS(2597), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + }, + [649] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [650] = { + [sym_identifier] = ACTIONS(2399), + [aux_sym_preproc_include_token1] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), + [sym_preproc_directive] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym___based] = ACTIONS(2399), + [anon_sym___cdecl] = ACTIONS(2399), + [anon_sym___clrcall] = ACTIONS(2399), + [anon_sym___stdcall] = ACTIONS(2399), + [anon_sym___fastcall] = ACTIONS(2399), + [anon_sym___thiscall] = ACTIONS(2399), + [anon_sym___vectorcall] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_explicit] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_operator] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_using] = ACTIONS(2399), + [anon_sym_static_assert] = ACTIONS(2399), + [anon_sym_concept] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), + }, + [651] = { + [sym_identifier] = ACTIONS(2577), + [aux_sym_preproc_include_token1] = ACTIONS(2577), + [aux_sym_preproc_def_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token1] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym___attribute__] = ACTIONS(2577), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), + [anon_sym___declspec] = ACTIONS(2577), + [anon_sym___based] = ACTIONS(2577), + [anon_sym___cdecl] = ACTIONS(2577), + [anon_sym___clrcall] = ACTIONS(2577), + [anon_sym___stdcall] = ACTIONS(2577), + [anon_sym___fastcall] = ACTIONS(2577), + [anon_sym___thiscall] = ACTIONS(2577), + [anon_sym___vectorcall] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_thread_local] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_mutable] = ACTIONS(2577), + [anon_sym_constexpr] = ACTIONS(2577), + [anon_sym_constinit] = ACTIONS(2577), + [anon_sym_consteval] = ACTIONS(2577), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_compl] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_L_SQUOTE] = ACTIONS(2579), + [anon_sym_u_SQUOTE] = ACTIONS(2579), + [anon_sym_U_SQUOTE] = ACTIONS(2579), + [anon_sym_u8_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_L_DQUOTE] = ACTIONS(2579), + [anon_sym_u_DQUOTE] = ACTIONS(2579), + [anon_sym_U_DQUOTE] = ACTIONS(2579), + [anon_sym_u8_DQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2577), + [anon_sym_decltype] = ACTIONS(2577), + [anon_sym_virtual] = ACTIONS(2577), + [anon_sym_explicit] = ACTIONS(2577), + [anon_sym_typename] = ACTIONS(2577), + [anon_sym_template] = ACTIONS(2577), + [anon_sym_operator] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [anon_sym_static_assert] = ACTIONS(2577), + [anon_sym_concept] = ACTIONS(2577), + [anon_sym_co_return] = ACTIONS(2577), + [anon_sym_co_yield] = ACTIONS(2577), + [anon_sym_R_DQUOTE] = ACTIONS(2579), + [anon_sym_LR_DQUOTE] = ACTIONS(2579), + [anon_sym_uR_DQUOTE] = ACTIONS(2579), + [anon_sym_UR_DQUOTE] = ACTIONS(2579), + [anon_sym_u8R_DQUOTE] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_requires] = ACTIONS(2577), + [sym_this] = ACTIONS(2577), + [sym_nullptr] = ACTIONS(2577), + }, + [652] = { + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token2] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_R_DQUOTE] = ACTIONS(2565), + [anon_sym_LR_DQUOTE] = ACTIONS(2565), + [anon_sym_uR_DQUOTE] = ACTIONS(2565), + [anon_sym_UR_DQUOTE] = ACTIONS(2565), + [anon_sym_u8R_DQUOTE] = ACTIONS(2565), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + }, + [653] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [654] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [655] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [656] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + }, + [657] = { + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + }, + [658] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [659] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [660] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + }, + [661] = { + [sym_identifier] = ACTIONS(2399), + [aux_sym_preproc_include_token1] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token2] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), + [sym_preproc_directive] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym___based] = ACTIONS(2399), + [anon_sym___cdecl] = ACTIONS(2399), + [anon_sym___clrcall] = ACTIONS(2399), + [anon_sym___stdcall] = ACTIONS(2399), + [anon_sym___fastcall] = ACTIONS(2399), + [anon_sym___thiscall] = ACTIONS(2399), + [anon_sym___vectorcall] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_explicit] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_operator] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_using] = ACTIONS(2399), + [anon_sym_static_assert] = ACTIONS(2399), + [anon_sym_concept] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), + }, + [662] = { + [sym_identifier] = ACTIONS(2395), + [aux_sym_preproc_include_token1] = ACTIONS(2395), + [aux_sym_preproc_def_token1] = ACTIONS(2395), + [aux_sym_preproc_if_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2395), + [sym_preproc_directive] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP_AMP] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym___based] = ACTIONS(2395), + [anon_sym___cdecl] = ACTIONS(2395), + [anon_sym___clrcall] = ACTIONS(2395), + [anon_sym___stdcall] = ACTIONS(2395), + [anon_sym___fastcall] = ACTIONS(2395), + [anon_sym___thiscall] = ACTIONS(2395), + [anon_sym___vectorcall] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_case] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_explicit] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_operator] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_namespace] = ACTIONS(2395), + [anon_sym_using] = ACTIONS(2395), + [anon_sym_static_assert] = ACTIONS(2395), + [anon_sym_concept] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [663] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + }, + [664] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + }, + [665] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + }, + [666] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_R_DQUOTE] = ACTIONS(2645), + [anon_sym_LR_DQUOTE] = ACTIONS(2645), + [anon_sym_uR_DQUOTE] = ACTIONS(2645), + [anon_sym_UR_DQUOTE] = ACTIONS(2645), + [anon_sym_u8R_DQUOTE] = ACTIONS(2645), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + }, + [667] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [668] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [669] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [670] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [671] = { + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token2] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_R_DQUOTE] = ACTIONS(2601), + [anon_sym_LR_DQUOTE] = ACTIONS(2601), + [anon_sym_uR_DQUOTE] = ACTIONS(2601), + [anon_sym_UR_DQUOTE] = ACTIONS(2601), + [anon_sym_u8R_DQUOTE] = ACTIONS(2601), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [672] = { + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_R_DQUOTE] = ACTIONS(2621), + [anon_sym_LR_DQUOTE] = ACTIONS(2621), + [anon_sym_uR_DQUOTE] = ACTIONS(2621), + [anon_sym_UR_DQUOTE] = ACTIONS(2621), + [anon_sym_u8R_DQUOTE] = ACTIONS(2621), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + }, + [673] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [674] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [675] = { + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_R_DQUOTE] = ACTIONS(2601), + [anon_sym_LR_DQUOTE] = ACTIONS(2601), + [anon_sym_uR_DQUOTE] = ACTIONS(2601), + [anon_sym_UR_DQUOTE] = ACTIONS(2601), + [anon_sym_u8R_DQUOTE] = ACTIONS(2601), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [676] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_R_DQUOTE] = ACTIONS(2597), + [anon_sym_LR_DQUOTE] = ACTIONS(2597), + [anon_sym_uR_DQUOTE] = ACTIONS(2597), + [anon_sym_UR_DQUOTE] = ACTIONS(2597), + [anon_sym_u8R_DQUOTE] = ACTIONS(2597), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + }, + [677] = { + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_R_DQUOTE] = ACTIONS(2593), + [anon_sym_LR_DQUOTE] = ACTIONS(2593), + [anon_sym_uR_DQUOTE] = ACTIONS(2593), + [anon_sym_UR_DQUOTE] = ACTIONS(2593), + [anon_sym_u8R_DQUOTE] = ACTIONS(2593), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + }, + [678] = { + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_R_DQUOTE] = ACTIONS(2589), + [anon_sym_LR_DQUOTE] = ACTIONS(2589), + [anon_sym_uR_DQUOTE] = ACTIONS(2589), + [anon_sym_UR_DQUOTE] = ACTIONS(2589), + [anon_sym_u8R_DQUOTE] = ACTIONS(2589), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + }, + [679] = { + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_R_DQUOTE] = ACTIONS(2585), + [anon_sym_LR_DQUOTE] = ACTIONS(2585), + [anon_sym_uR_DQUOTE] = ACTIONS(2585), + [anon_sym_UR_DQUOTE] = ACTIONS(2585), + [anon_sym_u8R_DQUOTE] = ACTIONS(2585), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + }, + [680] = { + [sym_identifier] = ACTIONS(2573), + [aux_sym_preproc_include_token1] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2573), + [aux_sym_preproc_if_token1] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), + [sym_preproc_directive] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_typedef] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym___attribute__] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), + [anon_sym___declspec] = ACTIONS(2573), + [anon_sym___based] = ACTIONS(2573), + [anon_sym___cdecl] = ACTIONS(2573), + [anon_sym___clrcall] = ACTIONS(2573), + [anon_sym___stdcall] = ACTIONS(2573), + [anon_sym___fastcall] = ACTIONS(2573), + [anon_sym___thiscall] = ACTIONS(2573), + [anon_sym___vectorcall] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_register] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_thread_local] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_volatile] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2573), + [anon_sym__Atomic] = ACTIONS(2573), + [anon_sym_mutable] = ACTIONS(2573), + [anon_sym_constexpr] = ACTIONS(2573), + [anon_sym_constinit] = ACTIONS(2573), + [anon_sym_consteval] = ACTIONS(2573), + [anon_sym_signed] = ACTIONS(2573), + [anon_sym_unsigned] = ACTIONS(2573), + [anon_sym_long] = ACTIONS(2573), + [anon_sym_short] = ACTIONS(2573), + [sym_primitive_type] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_goto] = ACTIONS(2573), + [anon_sym_not] = ACTIONS(2573), + [anon_sym_compl] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2573), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_L_SQUOTE] = ACTIONS(2575), + [anon_sym_u_SQUOTE] = ACTIONS(2575), + [anon_sym_U_SQUOTE] = ACTIONS(2575), + [anon_sym_u8_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_L_DQUOTE] = ACTIONS(2575), + [anon_sym_u_DQUOTE] = ACTIONS(2575), + [anon_sym_U_DQUOTE] = ACTIONS(2575), + [anon_sym_u8_DQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_null] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2573), + [anon_sym_decltype] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2573), + [anon_sym_explicit] = ACTIONS(2573), + [anon_sym_typename] = ACTIONS(2573), + [anon_sym_template] = ACTIONS(2573), + [anon_sym_operator] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_delete] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [anon_sym_static_assert] = ACTIONS(2573), + [anon_sym_concept] = ACTIONS(2573), + [anon_sym_co_return] = ACTIONS(2573), + [anon_sym_co_yield] = ACTIONS(2573), + [anon_sym_R_DQUOTE] = ACTIONS(2575), + [anon_sym_LR_DQUOTE] = ACTIONS(2575), + [anon_sym_uR_DQUOTE] = ACTIONS(2575), + [anon_sym_UR_DQUOTE] = ACTIONS(2575), + [anon_sym_u8R_DQUOTE] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_requires] = ACTIONS(2573), + [sym_this] = ACTIONS(2573), + [sym_nullptr] = ACTIONS(2573), + }, + [681] = { + [sym_identifier] = ACTIONS(2525), + [aux_sym_preproc_include_token1] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token2] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), + [sym_preproc_directive] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP_AMP] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym___based] = ACTIONS(2525), + [anon_sym___cdecl] = ACTIONS(2525), + [anon_sym___clrcall] = ACTIONS(2525), + [anon_sym___stdcall] = ACTIONS(2525), + [anon_sym___fastcall] = ACTIONS(2525), + [anon_sym___thiscall] = ACTIONS(2525), + [anon_sym___vectorcall] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_explicit] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_operator] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [anon_sym_static_assert] = ACTIONS(2525), + [anon_sym_concept] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_R_DQUOTE] = ACTIONS(2527), + [anon_sym_LR_DQUOTE] = ACTIONS(2527), + [anon_sym_uR_DQUOTE] = ACTIONS(2527), + [anon_sym_UR_DQUOTE] = ACTIONS(2527), + [anon_sym_u8R_DQUOTE] = ACTIONS(2527), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + }, + [682] = { + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token2] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [683] = { + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_R_DQUOTE] = ACTIONS(2589), + [anon_sym_LR_DQUOTE] = ACTIONS(2589), + [anon_sym_uR_DQUOTE] = ACTIONS(2589), + [anon_sym_UR_DQUOTE] = ACTIONS(2589), + [anon_sym_u8R_DQUOTE] = ACTIONS(2589), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + }, + [684] = { + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_R_DQUOTE] = ACTIONS(2585), + [anon_sym_LR_DQUOTE] = ACTIONS(2585), + [anon_sym_uR_DQUOTE] = ACTIONS(2585), + [anon_sym_UR_DQUOTE] = ACTIONS(2585), + [anon_sym_u8R_DQUOTE] = ACTIONS(2585), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + }, + [685] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [686] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [687] = { + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_R_DQUOTE] = ACTIONS(2565), + [anon_sym_LR_DQUOTE] = ACTIONS(2565), + [anon_sym_uR_DQUOTE] = ACTIONS(2565), + [anon_sym_UR_DQUOTE] = ACTIONS(2565), + [anon_sym_u8R_DQUOTE] = ACTIONS(2565), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + }, + [688] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [689] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [690] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2573), + [aux_sym_preproc_include_token1] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2573), + [aux_sym_preproc_if_token1] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), + [sym_preproc_directive] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_typedef] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym___attribute__] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), + [anon_sym___declspec] = ACTIONS(2573), + [anon_sym___based] = ACTIONS(2573), + [anon_sym___cdecl] = ACTIONS(2573), + [anon_sym___clrcall] = ACTIONS(2573), + [anon_sym___stdcall] = ACTIONS(2573), + [anon_sym___fastcall] = ACTIONS(2573), + [anon_sym___thiscall] = ACTIONS(2573), + [anon_sym___vectorcall] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_register] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_thread_local] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_volatile] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2573), + [anon_sym__Atomic] = ACTIONS(2573), + [anon_sym_mutable] = ACTIONS(2573), + [anon_sym_constexpr] = ACTIONS(2573), + [anon_sym_constinit] = ACTIONS(2573), + [anon_sym_consteval] = ACTIONS(2573), + [anon_sym_signed] = ACTIONS(2573), + [anon_sym_unsigned] = ACTIONS(2573), + [anon_sym_long] = ACTIONS(2573), + [anon_sym_short] = ACTIONS(2573), + [sym_primitive_type] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_goto] = ACTIONS(2573), + [anon_sym_not] = ACTIONS(2573), + [anon_sym_compl] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2573), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_L_SQUOTE] = ACTIONS(2575), + [anon_sym_u_SQUOTE] = ACTIONS(2575), + [anon_sym_U_SQUOTE] = ACTIONS(2575), + [anon_sym_u8_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_L_DQUOTE] = ACTIONS(2575), + [anon_sym_u_DQUOTE] = ACTIONS(2575), + [anon_sym_U_DQUOTE] = ACTIONS(2575), + [anon_sym_u8_DQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_null] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2573), + [anon_sym_decltype] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2573), + [anon_sym_explicit] = ACTIONS(2573), + [anon_sym_typename] = ACTIONS(2573), + [anon_sym_template] = ACTIONS(2573), + [anon_sym_operator] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_delete] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [anon_sym_static_assert] = ACTIONS(2573), + [anon_sym_concept] = ACTIONS(2573), + [anon_sym_co_return] = ACTIONS(2573), + [anon_sym_co_yield] = ACTIONS(2573), + [anon_sym_R_DQUOTE] = ACTIONS(2575), + [anon_sym_LR_DQUOTE] = ACTIONS(2575), + [anon_sym_uR_DQUOTE] = ACTIONS(2575), + [anon_sym_UR_DQUOTE] = ACTIONS(2575), + [anon_sym_u8R_DQUOTE] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_requires] = ACTIONS(2573), + [sym_this] = ACTIONS(2573), + [sym_nullptr] = ACTIONS(2573), + }, + [693] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [694] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [695] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [696] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [697] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [699] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [700] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [701] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [702] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [703] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [704] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [705] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [707] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [709] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [710] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [712] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [715] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [716] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [720] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [721] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [722] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [724] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [726] = { + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_R_DQUOTE] = ACTIONS(2569), + [anon_sym_LR_DQUOTE] = ACTIONS(2569), + [anon_sym_uR_DQUOTE] = ACTIONS(2569), + [anon_sym_UR_DQUOTE] = ACTIONS(2569), + [anon_sym_u8R_DQUOTE] = ACTIONS(2569), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + }, + [727] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_R_DQUOTE] = ACTIONS(2561), + [anon_sym_LR_DQUOTE] = ACTIONS(2561), + [anon_sym_uR_DQUOTE] = ACTIONS(2561), + [anon_sym_UR_DQUOTE] = ACTIONS(2561), + [anon_sym_u8R_DQUOTE] = ACTIONS(2561), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_R_DQUOTE] = ACTIONS(2553), + [anon_sym_LR_DQUOTE] = ACTIONS(2553), + [anon_sym_uR_DQUOTE] = ACTIONS(2553), + [anon_sym_UR_DQUOTE] = ACTIONS(2553), + [anon_sym_u8R_DQUOTE] = ACTIONS(2553), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [735] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [745] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [746] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [747] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [748] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [749] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [751] = { + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + }, + [752] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + }, + [753] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [754] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [755] = { + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2577), + [aux_sym_preproc_include_token1] = ACTIONS(2577), + [aux_sym_preproc_def_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token1] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym___attribute__] = ACTIONS(2577), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), + [anon_sym___declspec] = ACTIONS(2577), + [anon_sym___based] = ACTIONS(2577), + [anon_sym___cdecl] = ACTIONS(2577), + [anon_sym___clrcall] = ACTIONS(2577), + [anon_sym___stdcall] = ACTIONS(2577), + [anon_sym___fastcall] = ACTIONS(2577), + [anon_sym___thiscall] = ACTIONS(2577), + [anon_sym___vectorcall] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_thread_local] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_mutable] = ACTIONS(2577), + [anon_sym_constexpr] = ACTIONS(2577), + [anon_sym_constinit] = ACTIONS(2577), + [anon_sym_consteval] = ACTIONS(2577), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_compl] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_L_SQUOTE] = ACTIONS(2579), + [anon_sym_u_SQUOTE] = ACTIONS(2579), + [anon_sym_U_SQUOTE] = ACTIONS(2579), + [anon_sym_u8_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_L_DQUOTE] = ACTIONS(2579), + [anon_sym_u_DQUOTE] = ACTIONS(2579), + [anon_sym_U_DQUOTE] = ACTIONS(2579), + [anon_sym_u8_DQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2577), + [anon_sym_decltype] = ACTIONS(2577), + [anon_sym_virtual] = ACTIONS(2577), + [anon_sym_explicit] = ACTIONS(2577), + [anon_sym_typename] = ACTIONS(2577), + [anon_sym_template] = ACTIONS(2577), + [anon_sym_operator] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [anon_sym_static_assert] = ACTIONS(2577), + [anon_sym_concept] = ACTIONS(2577), + [anon_sym_co_return] = ACTIONS(2577), + [anon_sym_co_yield] = ACTIONS(2577), + [anon_sym_R_DQUOTE] = ACTIONS(2579), + [anon_sym_LR_DQUOTE] = ACTIONS(2579), + [anon_sym_uR_DQUOTE] = ACTIONS(2579), + [anon_sym_UR_DQUOTE] = ACTIONS(2579), + [anon_sym_u8R_DQUOTE] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_requires] = ACTIONS(2577), + [sym_this] = ACTIONS(2577), + [sym_nullptr] = ACTIONS(2577), + }, + [756] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [757] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_R_DQUOTE] = ACTIONS(2645), + [anon_sym_LR_DQUOTE] = ACTIONS(2645), + [anon_sym_uR_DQUOTE] = ACTIONS(2645), + [anon_sym_UR_DQUOTE] = ACTIONS(2645), + [anon_sym_u8R_DQUOTE] = ACTIONS(2645), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + }, + [759] = { + [sym__declaration_modifiers] = STATE(2194), + [sym__declaration_specifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(2194), + [sym_attribute_declaration] = STATE(2194), + [sym_ms_declspec_modifier] = STATE(2194), + [sym_storage_class_specifier] = STATE(2194), + [sym_type_qualifier] = STATE(2194), + [sym__type_specifier] = STATE(4066), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2194), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3505), + [sym_identifier] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2861), + [anon_sym_BANG_EQ] = ACTIONS(2861), + [anon_sym_GT] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2861), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_EQ] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2877), + [anon_sym_STAR_EQ] = ACTIONS(2861), + [anon_sym_SLASH_EQ] = ACTIONS(2861), + [anon_sym_PERCENT_EQ] = ACTIONS(2861), + [anon_sym_PLUS_EQ] = ACTIONS(2861), + [anon_sym_DASH_EQ] = ACTIONS(2861), + [anon_sym_LT_LT_EQ] = ACTIONS(2861), + [anon_sym_GT_GT_EQ] = ACTIONS(2861), + [anon_sym_AMP_EQ] = ACTIONS(2861), + [anon_sym_CARET_EQ] = ACTIONS(2861), + [anon_sym_PIPE_EQ] = ACTIONS(2861), + [anon_sym_and_eq] = ACTIONS(2863), + [anon_sym_or_eq] = ACTIONS(2863), + [anon_sym_xor_eq] = ACTIONS(2863), + [anon_sym_not] = ACTIONS(2863), + [anon_sym_compl] = ACTIONS(2863), + [anon_sym_LT_EQ_GT] = ACTIONS(2861), + [anon_sym_or] = ACTIONS(2863), + [anon_sym_and] = ACTIONS(2863), + [anon_sym_bitor] = ACTIONS(2863), + [anon_sym_xor] = ACTIONS(2863), + [anon_sym_bitand] = ACTIONS(2863), + [anon_sym_not_eq] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_DASH_GT] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2881), + [anon_sym_co_await] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2881), + [anon_sym_DASH_GT_STAR] = ACTIONS(2861), + [anon_sym_LPAREN_RPAREN] = ACTIONS(2861), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2861), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2883), + }, + [760] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [762] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [766] = { + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token2] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_R_DQUOTE] = ACTIONS(2621), + [anon_sym_LR_DQUOTE] = ACTIONS(2621), + [anon_sym_uR_DQUOTE] = ACTIONS(2621), + [anon_sym_UR_DQUOTE] = ACTIONS(2621), + [anon_sym_u8R_DQUOTE] = ACTIONS(2621), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [769] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [771] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [772] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [773] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [774] = { + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [775] = { + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2465), + [aux_sym_preproc_include_token1] = ACTIONS(2465), + [aux_sym_preproc_def_token1] = ACTIONS(2465), + [aux_sym_preproc_if_token1] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), + [sym_preproc_directive] = ACTIONS(2465), + [anon_sym_LPAREN2] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_typedef] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym___attribute__] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), + [anon_sym___declspec] = ACTIONS(2465), + [anon_sym___based] = ACTIONS(2465), + [anon_sym___cdecl] = ACTIONS(2465), + [anon_sym___clrcall] = ACTIONS(2465), + [anon_sym___stdcall] = ACTIONS(2465), + [anon_sym___fastcall] = ACTIONS(2465), + [anon_sym___thiscall] = ACTIONS(2465), + [anon_sym___vectorcall] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_thread_local] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_volatile] = ACTIONS(2465), + [anon_sym_restrict] = ACTIONS(2465), + [anon_sym__Atomic] = ACTIONS(2465), + [anon_sym_mutable] = ACTIONS(2465), + [anon_sym_constexpr] = ACTIONS(2465), + [anon_sym_constinit] = ACTIONS(2465), + [anon_sym_consteval] = ACTIONS(2465), + [anon_sym_signed] = ACTIONS(2465), + [anon_sym_unsigned] = ACTIONS(2465), + [anon_sym_long] = ACTIONS(2465), + [anon_sym_short] = ACTIONS(2465), + [sym_primitive_type] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_compl] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_number_literal] = ACTIONS(2467), + [anon_sym_L_SQUOTE] = ACTIONS(2467), + [anon_sym_u_SQUOTE] = ACTIONS(2467), + [anon_sym_U_SQUOTE] = ACTIONS(2467), + [anon_sym_u8_SQUOTE] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_L_DQUOTE] = ACTIONS(2467), + [anon_sym_u_DQUOTE] = ACTIONS(2467), + [anon_sym_U_DQUOTE] = ACTIONS(2467), + [anon_sym_u8_DQUOTE] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_null] = ACTIONS(2465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2465), + [anon_sym_decltype] = ACTIONS(2465), + [anon_sym_virtual] = ACTIONS(2465), + [anon_sym_explicit] = ACTIONS(2465), + [anon_sym_typename] = ACTIONS(2465), + [anon_sym_template] = ACTIONS(2465), + [anon_sym_operator] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_delete] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [anon_sym_static_assert] = ACTIONS(2465), + [anon_sym_concept] = ACTIONS(2465), + [anon_sym_co_return] = ACTIONS(2465), + [anon_sym_co_yield] = ACTIONS(2465), + [anon_sym_R_DQUOTE] = ACTIONS(2467), + [anon_sym_LR_DQUOTE] = ACTIONS(2467), + [anon_sym_uR_DQUOTE] = ACTIONS(2467), + [anon_sym_UR_DQUOTE] = ACTIONS(2467), + [anon_sym_u8R_DQUOTE] = ACTIONS(2467), + [anon_sym_co_await] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_requires] = ACTIONS(2465), + [sym_this] = ACTIONS(2465), + [sym_nullptr] = ACTIONS(2465), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2469), + [aux_sym_preproc_include_token1] = ACTIONS(2469), + [aux_sym_preproc_def_token1] = ACTIONS(2469), + [aux_sym_preproc_if_token1] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), + [sym_preproc_directive] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_typedef] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym___attribute__] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), + [anon_sym___declspec] = ACTIONS(2469), + [anon_sym___based] = ACTIONS(2469), + [anon_sym___cdecl] = ACTIONS(2469), + [anon_sym___clrcall] = ACTIONS(2469), + [anon_sym___stdcall] = ACTIONS(2469), + [anon_sym___fastcall] = ACTIONS(2469), + [anon_sym___thiscall] = ACTIONS(2469), + [anon_sym___vectorcall] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_thread_local] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_volatile] = ACTIONS(2469), + [anon_sym_restrict] = ACTIONS(2469), + [anon_sym__Atomic] = ACTIONS(2469), + [anon_sym_mutable] = ACTIONS(2469), + [anon_sym_constexpr] = ACTIONS(2469), + [anon_sym_constinit] = ACTIONS(2469), + [anon_sym_consteval] = ACTIONS(2469), + [anon_sym_signed] = ACTIONS(2469), + [anon_sym_unsigned] = ACTIONS(2469), + [anon_sym_long] = ACTIONS(2469), + [anon_sym_short] = ACTIONS(2469), + [sym_primitive_type] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_compl] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_sizeof] = ACTIONS(2469), + [sym_number_literal] = ACTIONS(2471), + [anon_sym_L_SQUOTE] = ACTIONS(2471), + [anon_sym_u_SQUOTE] = ACTIONS(2471), + [anon_sym_U_SQUOTE] = ACTIONS(2471), + [anon_sym_u8_SQUOTE] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_L_DQUOTE] = ACTIONS(2471), + [anon_sym_u_DQUOTE] = ACTIONS(2471), + [anon_sym_U_DQUOTE] = ACTIONS(2471), + [anon_sym_u8_DQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_null] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2469), + [anon_sym_decltype] = ACTIONS(2469), + [anon_sym_virtual] = ACTIONS(2469), + [anon_sym_explicit] = ACTIONS(2469), + [anon_sym_typename] = ACTIONS(2469), + [anon_sym_template] = ACTIONS(2469), + [anon_sym_operator] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_delete] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [anon_sym_static_assert] = ACTIONS(2469), + [anon_sym_concept] = ACTIONS(2469), + [anon_sym_co_return] = ACTIONS(2469), + [anon_sym_co_yield] = ACTIONS(2469), + [anon_sym_R_DQUOTE] = ACTIONS(2471), + [anon_sym_LR_DQUOTE] = ACTIONS(2471), + [anon_sym_uR_DQUOTE] = ACTIONS(2471), + [anon_sym_UR_DQUOTE] = ACTIONS(2471), + [anon_sym_u8R_DQUOTE] = ACTIONS(2471), + [anon_sym_co_await] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_requires] = ACTIONS(2469), + [sym_this] = ACTIONS(2469), + [sym_nullptr] = ACTIONS(2469), + }, + [777] = { + [sym__declaration_modifiers] = STATE(2194), + [sym__declaration_specifiers] = STATE(5027), + [sym_attribute_specifier] = STATE(2194), + [sym_attribute_declaration] = STATE(2194), + [sym_ms_declspec_modifier] = STATE(2194), + [sym_storage_class_specifier] = STATE(2194), + [sym_type_qualifier] = STATE(2194), + [sym__type_specifier] = STATE(4066), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2194), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3505), + [sym_identifier] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_EQ] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2867), + [anon_sym_unsigned] = ACTIONS(2867), + [anon_sym_long] = ACTIONS(2867), + [anon_sym_short] = ACTIONS(2867), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2877), + [anon_sym_STAR_EQ] = ACTIONS(2885), + [anon_sym_SLASH_EQ] = ACTIONS(2885), + [anon_sym_PERCENT_EQ] = ACTIONS(2885), + [anon_sym_PLUS_EQ] = ACTIONS(2885), + [anon_sym_DASH_EQ] = ACTIONS(2885), + [anon_sym_LT_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_GT_EQ] = ACTIONS(2885), + [anon_sym_AMP_EQ] = ACTIONS(2885), + [anon_sym_CARET_EQ] = ACTIONS(2885), + [anon_sym_PIPE_EQ] = ACTIONS(2885), + [anon_sym_and_eq] = ACTIONS(2887), + [anon_sym_or_eq] = ACTIONS(2887), + [anon_sym_xor_eq] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_LT_EQ_GT] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2887), + [anon_sym_and] = ACTIONS(2887), + [anon_sym_bitor] = ACTIONS(2887), + [anon_sym_xor] = ACTIONS(2887), + [anon_sym_bitand] = ACTIONS(2887), + [anon_sym_not_eq] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_GT] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2889), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2889), + [anon_sym_DASH_GT_STAR] = ACTIONS(2885), + [anon_sym_LPAREN_RPAREN] = ACTIONS(2885), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2885), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2891), + }, + [778] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [779] = { + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [780] = { + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [781] = { + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [782] = { + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [783] = { + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [784] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token2] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [785] = { + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token2] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [786] = { + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token2] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [787] = { + [sym_identifier] = ACTIONS(2491), + [aux_sym_preproc_include_token1] = ACTIONS(2491), + [aux_sym_preproc_def_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token1] = ACTIONS(2491), + [aux_sym_preproc_if_token2] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), + [sym_preproc_directive] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP_AMP] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym___based] = ACTIONS(2491), + [anon_sym___cdecl] = ACTIONS(2491), + [anon_sym___clrcall] = ACTIONS(2491), + [anon_sym___stdcall] = ACTIONS(2491), + [anon_sym___fastcall] = ACTIONS(2491), + [anon_sym___thiscall] = ACTIONS(2491), + [anon_sym___vectorcall] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_explicit] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_operator] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_namespace] = ACTIONS(2491), + [anon_sym_using] = ACTIONS(2491), + [anon_sym_static_assert] = ACTIONS(2491), + [anon_sym_concept] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2495), + [aux_sym_preproc_include_token1] = ACTIONS(2495), + [aux_sym_preproc_def_token1] = ACTIONS(2495), + [aux_sym_preproc_if_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), + [sym_preproc_directive] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP_AMP] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym___based] = ACTIONS(2495), + [anon_sym___cdecl] = ACTIONS(2495), + [anon_sym___clrcall] = ACTIONS(2495), + [anon_sym___stdcall] = ACTIONS(2495), + [anon_sym___fastcall] = ACTIONS(2495), + [anon_sym___thiscall] = ACTIONS(2495), + [anon_sym___vectorcall] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_explicit] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_operator] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_namespace] = ACTIONS(2495), + [anon_sym_using] = ACTIONS(2495), + [anon_sym_static_assert] = ACTIONS(2495), + [anon_sym_concept] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [789] = { + [sym_identifier] = ACTIONS(2487), + [aux_sym_preproc_include_token1] = ACTIONS(2487), + [aux_sym_preproc_def_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2487), + [aux_sym_preproc_if_token2] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), + [sym_preproc_directive] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym___based] = ACTIONS(2487), + [anon_sym___cdecl] = ACTIONS(2487), + [anon_sym___clrcall] = ACTIONS(2487), + [anon_sym___stdcall] = ACTIONS(2487), + [anon_sym___fastcall] = ACTIONS(2487), + [anon_sym___thiscall] = ACTIONS(2487), + [anon_sym___vectorcall] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_case] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_explicit] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_namespace] = ACTIONS(2487), + [anon_sym_using] = ACTIONS(2487), + [anon_sym_static_assert] = ACTIONS(2487), + [anon_sym_concept] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [790] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_R_DQUOTE] = ACTIONS(2597), + [anon_sym_LR_DQUOTE] = ACTIONS(2597), + [anon_sym_uR_DQUOTE] = ACTIONS(2597), + [anon_sym_UR_DQUOTE] = ACTIONS(2597), + [anon_sym_u8R_DQUOTE] = ACTIONS(2597), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [792] = { + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [793] = { + [sym_identifier] = ACTIONS(2483), + [aux_sym_preproc_include_token1] = ACTIONS(2483), + [aux_sym_preproc_def_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token1] = ACTIONS(2483), + [aux_sym_preproc_if_token2] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), + [sym_preproc_directive] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym___based] = ACTIONS(2483), + [anon_sym___cdecl] = ACTIONS(2483), + [anon_sym___clrcall] = ACTIONS(2483), + [anon_sym___stdcall] = ACTIONS(2483), + [anon_sym___fastcall] = ACTIONS(2483), + [anon_sym___thiscall] = ACTIONS(2483), + [anon_sym___vectorcall] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_case] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_explicit] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_operator] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_namespace] = ACTIONS(2483), + [anon_sym_using] = ACTIONS(2483), + [anon_sym_static_assert] = ACTIONS(2483), + [anon_sym_concept] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [794] = { + [sym_identifier] = ACTIONS(2479), + [aux_sym_preproc_include_token1] = ACTIONS(2479), + [aux_sym_preproc_def_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token1] = ACTIONS(2479), + [aux_sym_preproc_if_token2] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), + [sym_preproc_directive] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym___based] = ACTIONS(2479), + [anon_sym___cdecl] = ACTIONS(2479), + [anon_sym___clrcall] = ACTIONS(2479), + [anon_sym___stdcall] = ACTIONS(2479), + [anon_sym___fastcall] = ACTIONS(2479), + [anon_sym___thiscall] = ACTIONS(2479), + [anon_sym___vectorcall] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_case] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_explicit] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_operator] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_namespace] = ACTIONS(2479), + [anon_sym_using] = ACTIONS(2479), + [anon_sym_static_assert] = ACTIONS(2479), + [anon_sym_concept] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [795] = { + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_if_token2] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [796] = { + [sym_identifier] = ACTIONS(2475), + [aux_sym_preproc_include_token1] = ACTIONS(2475), + [aux_sym_preproc_def_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token1] = ACTIONS(2475), + [aux_sym_preproc_if_token2] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym___based] = ACTIONS(2475), + [anon_sym___cdecl] = ACTIONS(2475), + [anon_sym___clrcall] = ACTIONS(2475), + [anon_sym___stdcall] = ACTIONS(2475), + [anon_sym___fastcall] = ACTIONS(2475), + [anon_sym___thiscall] = ACTIONS(2475), + [anon_sym___vectorcall] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_case] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_explicit] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_operator] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_namespace] = ACTIONS(2475), + [anon_sym_using] = ACTIONS(2475), + [anon_sym_static_assert] = ACTIONS(2475), + [anon_sym_concept] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [797] = { + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token2] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_R_DQUOTE] = ACTIONS(2593), + [anon_sym_LR_DQUOTE] = ACTIONS(2593), + [anon_sym_uR_DQUOTE] = ACTIONS(2593), + [anon_sym_UR_DQUOTE] = ACTIONS(2593), + [anon_sym_u8R_DQUOTE] = ACTIONS(2593), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + }, + [798] = { + [sym_identifier] = ACTIONS(2469), + [aux_sym_preproc_include_token1] = ACTIONS(2469), + [aux_sym_preproc_def_token1] = ACTIONS(2469), + [aux_sym_preproc_if_token1] = ACTIONS(2469), + [aux_sym_preproc_if_token2] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2469), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2469), + [sym_preproc_directive] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_typedef] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym___attribute__] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), + [anon_sym___declspec] = ACTIONS(2469), + [anon_sym___based] = ACTIONS(2469), + [anon_sym___cdecl] = ACTIONS(2469), + [anon_sym___clrcall] = ACTIONS(2469), + [anon_sym___stdcall] = ACTIONS(2469), + [anon_sym___fastcall] = ACTIONS(2469), + [anon_sym___thiscall] = ACTIONS(2469), + [anon_sym___vectorcall] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_thread_local] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_volatile] = ACTIONS(2469), + [anon_sym_restrict] = ACTIONS(2469), + [anon_sym__Atomic] = ACTIONS(2469), + [anon_sym_mutable] = ACTIONS(2469), + [anon_sym_constexpr] = ACTIONS(2469), + [anon_sym_constinit] = ACTIONS(2469), + [anon_sym_consteval] = ACTIONS(2469), + [anon_sym_signed] = ACTIONS(2469), + [anon_sym_unsigned] = ACTIONS(2469), + [anon_sym_long] = ACTIONS(2469), + [anon_sym_short] = ACTIONS(2469), + [sym_primitive_type] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_case] = ACTIONS(2469), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_compl] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_sizeof] = ACTIONS(2469), + [sym_number_literal] = ACTIONS(2471), + [anon_sym_L_SQUOTE] = ACTIONS(2471), + [anon_sym_u_SQUOTE] = ACTIONS(2471), + [anon_sym_U_SQUOTE] = ACTIONS(2471), + [anon_sym_u8_SQUOTE] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_L_DQUOTE] = ACTIONS(2471), + [anon_sym_u_DQUOTE] = ACTIONS(2471), + [anon_sym_U_DQUOTE] = ACTIONS(2471), + [anon_sym_u8_DQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_null] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2469), + [anon_sym_decltype] = ACTIONS(2469), + [anon_sym_virtual] = ACTIONS(2469), + [anon_sym_explicit] = ACTIONS(2469), + [anon_sym_typename] = ACTIONS(2469), + [anon_sym_template] = ACTIONS(2469), + [anon_sym_operator] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_delete] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_namespace] = ACTIONS(2469), + [anon_sym_using] = ACTIONS(2469), + [anon_sym_static_assert] = ACTIONS(2469), + [anon_sym_concept] = ACTIONS(2469), + [anon_sym_co_return] = ACTIONS(2469), + [anon_sym_co_yield] = ACTIONS(2469), + [anon_sym_R_DQUOTE] = ACTIONS(2471), + [anon_sym_LR_DQUOTE] = ACTIONS(2471), + [anon_sym_uR_DQUOTE] = ACTIONS(2471), + [anon_sym_UR_DQUOTE] = ACTIONS(2471), + [anon_sym_u8R_DQUOTE] = ACTIONS(2471), + [anon_sym_co_await] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_requires] = ACTIONS(2469), + [sym_this] = ACTIONS(2469), + [sym_nullptr] = ACTIONS(2469), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2507), + [aux_sym_preproc_include_token1] = ACTIONS(2507), + [aux_sym_preproc_def_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), + [sym_preproc_directive] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym___based] = ACTIONS(2507), + [anon_sym___cdecl] = ACTIONS(2507), + [anon_sym___clrcall] = ACTIONS(2507), + [anon_sym___stdcall] = ACTIONS(2507), + [anon_sym___fastcall] = ACTIONS(2507), + [anon_sym___thiscall] = ACTIONS(2507), + [anon_sym___vectorcall] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_explicit] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_operator] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_namespace] = ACTIONS(2507), + [anon_sym_using] = ACTIONS(2507), + [anon_sym_static_assert] = ACTIONS(2507), + [anon_sym_concept] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [800] = { + [sym_identifier] = ACTIONS(2465), + [aux_sym_preproc_include_token1] = ACTIONS(2465), + [aux_sym_preproc_def_token1] = ACTIONS(2465), + [aux_sym_preproc_if_token1] = ACTIONS(2465), + [aux_sym_preproc_if_token2] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2465), + [sym_preproc_directive] = ACTIONS(2465), + [anon_sym_LPAREN2] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_AMP_AMP] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_typedef] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym___attribute__] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), + [anon_sym___declspec] = ACTIONS(2465), + [anon_sym___based] = ACTIONS(2465), + [anon_sym___cdecl] = ACTIONS(2465), + [anon_sym___clrcall] = ACTIONS(2465), + [anon_sym___stdcall] = ACTIONS(2465), + [anon_sym___fastcall] = ACTIONS(2465), + [anon_sym___thiscall] = ACTIONS(2465), + [anon_sym___vectorcall] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_thread_local] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_volatile] = ACTIONS(2465), + [anon_sym_restrict] = ACTIONS(2465), + [anon_sym__Atomic] = ACTIONS(2465), + [anon_sym_mutable] = ACTIONS(2465), + [anon_sym_constexpr] = ACTIONS(2465), + [anon_sym_constinit] = ACTIONS(2465), + [anon_sym_consteval] = ACTIONS(2465), + [anon_sym_signed] = ACTIONS(2465), + [anon_sym_unsigned] = ACTIONS(2465), + [anon_sym_long] = ACTIONS(2465), + [anon_sym_short] = ACTIONS(2465), + [sym_primitive_type] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_case] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_compl] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_number_literal] = ACTIONS(2467), + [anon_sym_L_SQUOTE] = ACTIONS(2467), + [anon_sym_u_SQUOTE] = ACTIONS(2467), + [anon_sym_U_SQUOTE] = ACTIONS(2467), + [anon_sym_u8_SQUOTE] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_L_DQUOTE] = ACTIONS(2467), + [anon_sym_u_DQUOTE] = ACTIONS(2467), + [anon_sym_U_DQUOTE] = ACTIONS(2467), + [anon_sym_u8_DQUOTE] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_null] = ACTIONS(2465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2465), + [anon_sym_decltype] = ACTIONS(2465), + [anon_sym_virtual] = ACTIONS(2465), + [anon_sym_explicit] = ACTIONS(2465), + [anon_sym_typename] = ACTIONS(2465), + [anon_sym_template] = ACTIONS(2465), + [anon_sym_operator] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_delete] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_namespace] = ACTIONS(2465), + [anon_sym_using] = ACTIONS(2465), + [anon_sym_static_assert] = ACTIONS(2465), + [anon_sym_concept] = ACTIONS(2465), + [anon_sym_co_return] = ACTIONS(2465), + [anon_sym_co_yield] = ACTIONS(2465), + [anon_sym_R_DQUOTE] = ACTIONS(2467), + [anon_sym_LR_DQUOTE] = ACTIONS(2467), + [anon_sym_uR_DQUOTE] = ACTIONS(2467), + [anon_sym_UR_DQUOTE] = ACTIONS(2467), + [anon_sym_u8R_DQUOTE] = ACTIONS(2467), + [anon_sym_co_await] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_requires] = ACTIONS(2465), + [sym_this] = ACTIONS(2465), + [sym_nullptr] = ACTIONS(2465), + }, + [801] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [802] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_R_DQUOTE] = ACTIONS(2601), + [anon_sym_LR_DQUOTE] = ACTIONS(2601), + [anon_sym_uR_DQUOTE] = ACTIONS(2601), + [anon_sym_UR_DQUOTE] = ACTIONS(2601), + [anon_sym_u8R_DQUOTE] = ACTIONS(2601), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [804] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [805] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [806] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [807] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [808] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [809] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [810] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [811] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [812] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [813] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token2] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [814] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token2] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [815] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [816] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [817] = { + [ts_builtin_sym_end] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [818] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [819] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [820] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [821] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [822] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [823] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [824] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [825] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [826] = { + [ts_builtin_sym_end] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2519), + [aux_sym_preproc_include_token1] = ACTIONS(2519), + [aux_sym_preproc_def_token1] = ACTIONS(2519), + [aux_sym_preproc_if_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), + [sym_preproc_directive] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP_AMP] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym___based] = ACTIONS(2519), + [anon_sym___cdecl] = ACTIONS(2519), + [anon_sym___clrcall] = ACTIONS(2519), + [anon_sym___stdcall] = ACTIONS(2519), + [anon_sym___fastcall] = ACTIONS(2519), + [anon_sym___thiscall] = ACTIONS(2519), + [anon_sym___vectorcall] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_case] = ACTIONS(2519), + [anon_sym_default] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_explicit] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_operator] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2519), + [anon_sym_using] = ACTIONS(2519), + [anon_sym_static_assert] = ACTIONS(2519), + [anon_sym_concept] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [827] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [828] = { + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2525), + [aux_sym_preproc_include_token1] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), + [sym_preproc_directive] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP_AMP] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym___based] = ACTIONS(2525), + [anon_sym___cdecl] = ACTIONS(2525), + [anon_sym___clrcall] = ACTIONS(2525), + [anon_sym___stdcall] = ACTIONS(2525), + [anon_sym___fastcall] = ACTIONS(2525), + [anon_sym___thiscall] = ACTIONS(2525), + [anon_sym___vectorcall] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_explicit] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_operator] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [anon_sym_static_assert] = ACTIONS(2525), + [anon_sym_concept] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_R_DQUOTE] = ACTIONS(2527), + [anon_sym_LR_DQUOTE] = ACTIONS(2527), + [anon_sym_uR_DQUOTE] = ACTIONS(2527), + [anon_sym_UR_DQUOTE] = ACTIONS(2527), + [anon_sym_u8R_DQUOTE] = ACTIONS(2527), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + }, + [829] = { + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token2] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_R_DQUOTE] = ACTIONS(2589), + [anon_sym_LR_DQUOTE] = ACTIONS(2589), + [anon_sym_uR_DQUOTE] = ACTIONS(2589), + [anon_sym_UR_DQUOTE] = ACTIONS(2589), + [anon_sym_u8R_DQUOTE] = ACTIONS(2589), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + }, + [830] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [831] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [832] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [833] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [834] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [835] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [836] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [837] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [838] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [839] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [840] = { + [sym_identifier] = ACTIONS(2577), + [aux_sym_preproc_include_token1] = ACTIONS(2577), + [aux_sym_preproc_def_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token1] = ACTIONS(2577), + [aux_sym_preproc_if_token2] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2577), + [sym_preproc_directive] = ACTIONS(2577), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym___attribute__] = ACTIONS(2577), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), + [anon_sym___declspec] = ACTIONS(2577), + [anon_sym___based] = ACTIONS(2577), + [anon_sym___cdecl] = ACTIONS(2577), + [anon_sym___clrcall] = ACTIONS(2577), + [anon_sym___stdcall] = ACTIONS(2577), + [anon_sym___fastcall] = ACTIONS(2577), + [anon_sym___thiscall] = ACTIONS(2577), + [anon_sym___vectorcall] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_thread_local] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_mutable] = ACTIONS(2577), + [anon_sym_constexpr] = ACTIONS(2577), + [anon_sym_constinit] = ACTIONS(2577), + [anon_sym_consteval] = ACTIONS(2577), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_case] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_compl] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_L_SQUOTE] = ACTIONS(2579), + [anon_sym_u_SQUOTE] = ACTIONS(2579), + [anon_sym_U_SQUOTE] = ACTIONS(2579), + [anon_sym_u8_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_L_DQUOTE] = ACTIONS(2579), + [anon_sym_u_DQUOTE] = ACTIONS(2579), + [anon_sym_U_DQUOTE] = ACTIONS(2579), + [anon_sym_u8_DQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2577), + [anon_sym_decltype] = ACTIONS(2577), + [anon_sym_virtual] = ACTIONS(2577), + [anon_sym_explicit] = ACTIONS(2577), + [anon_sym_typename] = ACTIONS(2577), + [anon_sym_template] = ACTIONS(2577), + [anon_sym_operator] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_namespace] = ACTIONS(2577), + [anon_sym_using] = ACTIONS(2577), + [anon_sym_static_assert] = ACTIONS(2577), + [anon_sym_concept] = ACTIONS(2577), + [anon_sym_co_return] = ACTIONS(2577), + [anon_sym_co_yield] = ACTIONS(2577), + [anon_sym_R_DQUOTE] = ACTIONS(2579), + [anon_sym_LR_DQUOTE] = ACTIONS(2579), + [anon_sym_uR_DQUOTE] = ACTIONS(2579), + [anon_sym_UR_DQUOTE] = ACTIONS(2579), + [anon_sym_u8R_DQUOTE] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_requires] = ACTIONS(2577), + [sym_this] = ACTIONS(2577), + [sym_nullptr] = ACTIONS(2577), + }, + [841] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [842] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [843] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [844] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [845] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [846] = { + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [847] = { + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token2] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_R_DQUOTE] = ACTIONS(2553), + [anon_sym_LR_DQUOTE] = ACTIONS(2553), + [anon_sym_uR_DQUOTE] = ACTIONS(2553), + [anon_sym_UR_DQUOTE] = ACTIONS(2553), + [anon_sym_u8R_DQUOTE] = ACTIONS(2553), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + }, + [848] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_R_DQUOTE] = ACTIONS(2561), + [anon_sym_LR_DQUOTE] = ACTIONS(2561), + [anon_sym_uR_DQUOTE] = ACTIONS(2561), + [anon_sym_UR_DQUOTE] = ACTIONS(2561), + [anon_sym_u8R_DQUOTE] = ACTIONS(2561), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + }, + [849] = { + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_R_DQUOTE] = ACTIONS(2569), + [anon_sym_LR_DQUOTE] = ACTIONS(2569), + [anon_sym_uR_DQUOTE] = ACTIONS(2569), + [anon_sym_UR_DQUOTE] = ACTIONS(2569), + [anon_sym_u8R_DQUOTE] = ACTIONS(2569), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + }, + [850] = { + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token2] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_R_DQUOTE] = ACTIONS(2585), + [anon_sym_LR_DQUOTE] = ACTIONS(2585), + [anon_sym_uR_DQUOTE] = ACTIONS(2585), + [anon_sym_UR_DQUOTE] = ACTIONS(2585), + [anon_sym_u8R_DQUOTE] = ACTIONS(2585), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + }, + [851] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2399), + [aux_sym_preproc_include_token1] = ACTIONS(2399), + [aux_sym_preproc_def_token1] = ACTIONS(2399), + [aux_sym_preproc_if_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2399), + [sym_preproc_directive] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP_AMP] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym___based] = ACTIONS(2399), + [anon_sym___cdecl] = ACTIONS(2399), + [anon_sym___clrcall] = ACTIONS(2399), + [anon_sym___stdcall] = ACTIONS(2399), + [anon_sym___fastcall] = ACTIONS(2399), + [anon_sym___thiscall] = ACTIONS(2399), + [anon_sym___vectorcall] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2893), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_case] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_explicit] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_operator] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_namespace] = ACTIONS(2399), + [anon_sym_using] = ACTIONS(2399), + [anon_sym_static_assert] = ACTIONS(2399), + [anon_sym_concept] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), + }, + [853] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [854] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [855] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [856] = { + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [857] = { + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [858] = { + [sym_identifier] = ACTIONS(2539), + [aux_sym_preproc_include_token1] = ACTIONS(2539), + [aux_sym_preproc_def_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token1] = ACTIONS(2539), + [aux_sym_preproc_if_token2] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP_AMP] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym___based] = ACTIONS(2539), + [anon_sym___cdecl] = ACTIONS(2539), + [anon_sym___clrcall] = ACTIONS(2539), + [anon_sym___stdcall] = ACTIONS(2539), + [anon_sym___fastcall] = ACTIONS(2539), + [anon_sym___thiscall] = ACTIONS(2539), + [anon_sym___vectorcall] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_explicit] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_operator] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_static_assert] = ACTIONS(2539), + [anon_sym_concept] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [859] = { + [sym_identifier] = ACTIONS(2535), + [aux_sym_preproc_include_token1] = ACTIONS(2535), + [aux_sym_preproc_def_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token1] = ACTIONS(2535), + [aux_sym_preproc_if_token2] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2535), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2535), + [sym_preproc_directive] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP_AMP] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym___based] = ACTIONS(2535), + [anon_sym___cdecl] = ACTIONS(2535), + [anon_sym___clrcall] = ACTIONS(2535), + [anon_sym___stdcall] = ACTIONS(2535), + [anon_sym___fastcall] = ACTIONS(2535), + [anon_sym___thiscall] = ACTIONS(2535), + [anon_sym___vectorcall] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_case] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_explicit] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_operator] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_using] = ACTIONS(2535), + [anon_sym_static_assert] = ACTIONS(2535), + [anon_sym_concept] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [860] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [861] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [862] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [863] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [864] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [865] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [866] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [867] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [868] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [869] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [870] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [871] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [872] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [873] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [874] = { + [sym_identifier] = ACTIONS(2507), + [aux_sym_preproc_include_token1] = ACTIONS(2507), + [aux_sym_preproc_def_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2507), + [aux_sym_preproc_if_token2] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), + [sym_preproc_directive] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym___based] = ACTIONS(2507), + [anon_sym___cdecl] = ACTIONS(2507), + [anon_sym___clrcall] = ACTIONS(2507), + [anon_sym___stdcall] = ACTIONS(2507), + [anon_sym___fastcall] = ACTIONS(2507), + [anon_sym___thiscall] = ACTIONS(2507), + [anon_sym___vectorcall] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_case] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_explicit] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_operator] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_namespace] = ACTIONS(2507), + [anon_sym_using] = ACTIONS(2507), + [anon_sym_static_assert] = ACTIONS(2507), + [anon_sym_concept] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [875] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [876] = { + [sym_identifier] = ACTIONS(2573), + [aux_sym_preproc_include_token1] = ACTIONS(2573), + [aux_sym_preproc_def_token1] = ACTIONS(2573), + [aux_sym_preproc_if_token1] = ACTIONS(2573), + [aux_sym_preproc_if_token2] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2573), + [sym_preproc_directive] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_typedef] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym___attribute__] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), + [anon_sym___declspec] = ACTIONS(2573), + [anon_sym___based] = ACTIONS(2573), + [anon_sym___cdecl] = ACTIONS(2573), + [anon_sym___clrcall] = ACTIONS(2573), + [anon_sym___stdcall] = ACTIONS(2573), + [anon_sym___fastcall] = ACTIONS(2573), + [anon_sym___thiscall] = ACTIONS(2573), + [anon_sym___vectorcall] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_register] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_thread_local] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_volatile] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2573), + [anon_sym__Atomic] = ACTIONS(2573), + [anon_sym_mutable] = ACTIONS(2573), + [anon_sym_constexpr] = ACTIONS(2573), + [anon_sym_constinit] = ACTIONS(2573), + [anon_sym_consteval] = ACTIONS(2573), + [anon_sym_signed] = ACTIONS(2573), + [anon_sym_unsigned] = ACTIONS(2573), + [anon_sym_long] = ACTIONS(2573), + [anon_sym_short] = ACTIONS(2573), + [sym_primitive_type] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_case] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_goto] = ACTIONS(2573), + [anon_sym_not] = ACTIONS(2573), + [anon_sym_compl] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2573), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_L_SQUOTE] = ACTIONS(2575), + [anon_sym_u_SQUOTE] = ACTIONS(2575), + [anon_sym_U_SQUOTE] = ACTIONS(2575), + [anon_sym_u8_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_L_DQUOTE] = ACTIONS(2575), + [anon_sym_u_DQUOTE] = ACTIONS(2575), + [anon_sym_U_DQUOTE] = ACTIONS(2575), + [anon_sym_u8_DQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_null] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2573), + [anon_sym_decltype] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2573), + [anon_sym_explicit] = ACTIONS(2573), + [anon_sym_typename] = ACTIONS(2573), + [anon_sym_template] = ACTIONS(2573), + [anon_sym_operator] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_delete] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_namespace] = ACTIONS(2573), + [anon_sym_using] = ACTIONS(2573), + [anon_sym_static_assert] = ACTIONS(2573), + [anon_sym_concept] = ACTIONS(2573), + [anon_sym_co_return] = ACTIONS(2573), + [anon_sym_co_yield] = ACTIONS(2573), + [anon_sym_R_DQUOTE] = ACTIONS(2575), + [anon_sym_LR_DQUOTE] = ACTIONS(2575), + [anon_sym_uR_DQUOTE] = ACTIONS(2575), + [anon_sym_UR_DQUOTE] = ACTIONS(2575), + [anon_sym_u8R_DQUOTE] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_requires] = ACTIONS(2573), + [sym_this] = ACTIONS(2573), + [sym_nullptr] = ACTIONS(2573), + }, + [877] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_R_DQUOTE] = ACTIONS(2565), + [anon_sym_LR_DQUOTE] = ACTIONS(2565), + [anon_sym_uR_DQUOTE] = ACTIONS(2565), + [anon_sym_UR_DQUOTE] = ACTIONS(2565), + [anon_sym_u8R_DQUOTE] = ACTIONS(2565), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + }, + [879] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [880] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [881] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [882] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [883] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [884] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [885] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [886] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [887] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [888] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token2] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [889] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [890] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [891] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [892] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [893] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [894] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [895] = { + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [896] = { + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [897] = { + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [aux_sym_preproc_include_token1] = ACTIONS(2337), + [aux_sym_preproc_def_token1] = ACTIONS(2337), + [anon_sym_COMMA] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2337), + [sym_preproc_directive] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP_AMP] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym___based] = ACTIONS(2337), + [anon_sym___cdecl] = ACTIONS(2337), + [anon_sym___clrcall] = ACTIONS(2337), + [anon_sym___stdcall] = ACTIONS(2337), + [anon_sym___fastcall] = ACTIONS(2337), + [anon_sym___thiscall] = ACTIONS(2337), + [anon_sym___vectorcall] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_case] = ACTIONS(2337), + [anon_sym_default] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_explicit] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_operator] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_namespace] = ACTIONS(2337), + [anon_sym_using] = ACTIONS(2337), + [anon_sym_static_assert] = ACTIONS(2337), + [anon_sym_concept] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [898] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [899] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [900] = { + [sym_identifier] = ACTIONS(2511), + [aux_sym_preproc_include_token1] = ACTIONS(2511), + [aux_sym_preproc_def_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token1] = ACTIONS(2511), + [aux_sym_preproc_if_token2] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), + [sym_preproc_directive] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP_AMP] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym___based] = ACTIONS(2511), + [anon_sym___cdecl] = ACTIONS(2511), + [anon_sym___clrcall] = ACTIONS(2511), + [anon_sym___stdcall] = ACTIONS(2511), + [anon_sym___fastcall] = ACTIONS(2511), + [anon_sym___thiscall] = ACTIONS(2511), + [anon_sym___vectorcall] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_case] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_explicit] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_operator] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_using] = ACTIONS(2511), + [anon_sym_static_assert] = ACTIONS(2511), + [anon_sym_concept] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [901] = { + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_R_DQUOTE] = ACTIONS(2621), + [anon_sym_LR_DQUOTE] = ACTIONS(2621), + [anon_sym_uR_DQUOTE] = ACTIONS(2621), + [anon_sym_UR_DQUOTE] = ACTIONS(2621), + [anon_sym_u8R_DQUOTE] = ACTIONS(2621), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + }, + [902] = { + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token2] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_R_DQUOTE] = ACTIONS(2763), + [anon_sym_LR_DQUOTE] = ACTIONS(2763), + [anon_sym_uR_DQUOTE] = ACTIONS(2763), + [anon_sym_UR_DQUOTE] = ACTIONS(2763), + [anon_sym_u8R_DQUOTE] = ACTIONS(2763), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + }, + [903] = { + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_R_DQUOTE] = ACTIONS(2743), + [anon_sym_LR_DQUOTE] = ACTIONS(2743), + [anon_sym_uR_DQUOTE] = ACTIONS(2743), + [anon_sym_UR_DQUOTE] = ACTIONS(2743), + [anon_sym_u8R_DQUOTE] = ACTIONS(2743), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + }, + [904] = { + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token2] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_R_DQUOTE] = ACTIONS(2799), + [anon_sym_LR_DQUOTE] = ACTIONS(2799), + [anon_sym_uR_DQUOTE] = ACTIONS(2799), + [anon_sym_UR_DQUOTE] = ACTIONS(2799), + [anon_sym_u8R_DQUOTE] = ACTIONS(2799), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + }, + [905] = { + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [906] = { + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [907] = { + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_unaligned_ptr_modifier] = STATE(4390), + [sym_ms_pointer_modifier] = STATE(3249), + [sym__declarator] = STATE(5321), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3624), + [sym__expression] = STATE(2669), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2586), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4911), + [sym_qualified_identifier] = STATE(2587), + [sym_qualified_type_identifier] = STATE(6425), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2709), + [aux_sym_type_definition_repeat1] = STATE(3624), + [aux_sym_pointer_declarator_repeat1] = STATE(3249), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(2901), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2901), + [sym_ms_signed_ptr_modifier] = ACTIONS(2901), + [anon_sym__unaligned] = ACTIONS(2903), + [anon_sym___unaligned] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [908] = { + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_R_DQUOTE] = ACTIONS(2847), + [anon_sym_LR_DQUOTE] = ACTIONS(2847), + [anon_sym_uR_DQUOTE] = ACTIONS(2847), + [anon_sym_UR_DQUOTE] = ACTIONS(2847), + [anon_sym_u8R_DQUOTE] = ACTIONS(2847), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + }, + [909] = { + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [910] = { + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_R_DQUOTE] = ACTIONS(2751), + [anon_sym_LR_DQUOTE] = ACTIONS(2751), + [anon_sym_uR_DQUOTE] = ACTIONS(2751), + [anon_sym_UR_DQUOTE] = ACTIONS(2751), + [anon_sym_u8R_DQUOTE] = ACTIONS(2751), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + }, + [911] = { + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [912] = { + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_R_DQUOTE] = ACTIONS(2747), + [anon_sym_LR_DQUOTE] = ACTIONS(2747), + [anon_sym_uR_DQUOTE] = ACTIONS(2747), + [anon_sym_UR_DQUOTE] = ACTIONS(2747), + [anon_sym_u8R_DQUOTE] = ACTIONS(2747), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + }, + [913] = { + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_R_DQUOTE] = ACTIONS(2743), + [anon_sym_LR_DQUOTE] = ACTIONS(2743), + [anon_sym_uR_DQUOTE] = ACTIONS(2743), + [anon_sym_UR_DQUOTE] = ACTIONS(2743), + [anon_sym_u8R_DQUOTE] = ACTIONS(2743), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + }, + [914] = { + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_R_DQUOTE] = ACTIONS(2767), + [anon_sym_LR_DQUOTE] = ACTIONS(2767), + [anon_sym_uR_DQUOTE] = ACTIONS(2767), + [anon_sym_UR_DQUOTE] = ACTIONS(2767), + [anon_sym_u8R_DQUOTE] = ACTIONS(2767), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + }, + [915] = { + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token2] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_R_DQUOTE] = ACTIONS(2843), + [anon_sym_LR_DQUOTE] = ACTIONS(2843), + [anon_sym_uR_DQUOTE] = ACTIONS(2843), + [anon_sym_UR_DQUOTE] = ACTIONS(2843), + [anon_sym_u8R_DQUOTE] = ACTIONS(2843), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + }, + [916] = { + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [917] = { + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [918] = { + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [919] = { + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_R_DQUOTE] = ACTIONS(2771), + [anon_sym_LR_DQUOTE] = ACTIONS(2771), + [anon_sym_uR_DQUOTE] = ACTIONS(2771), + [anon_sym_UR_DQUOTE] = ACTIONS(2771), + [anon_sym_u8R_DQUOTE] = ACTIONS(2771), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + }, + [920] = { + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token2] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [921] = { + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_R_DQUOTE] = ACTIONS(2755), + [anon_sym_LR_DQUOTE] = ACTIONS(2755), + [anon_sym_uR_DQUOTE] = ACTIONS(2755), + [anon_sym_UR_DQUOTE] = ACTIONS(2755), + [anon_sym_u8R_DQUOTE] = ACTIONS(2755), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + }, + [922] = { + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [923] = { + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [924] = { + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_unaligned_ptr_modifier] = STATE(4390), + [sym_ms_pointer_modifier] = STATE(3249), + [sym__declarator] = STATE(5321), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_type_qualifier] = STATE(3624), + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2774), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2777), + [sym_qualified_type_identifier] = STATE(6210), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2502), + [aux_sym_type_definition_repeat1] = STATE(3624), + [aux_sym_pointer_declarator_repeat1] = STATE(3249), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(2901), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2901), + [sym_ms_signed_ptr_modifier] = ACTIONS(2901), + [anon_sym__unaligned] = ACTIONS(2903), + [anon_sym___unaligned] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym_mutable] = ACTIONS(2905), + [anon_sym_constexpr] = ACTIONS(2905), + [anon_sym_constinit] = ACTIONS(2905), + [anon_sym_consteval] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [925] = { + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token2] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_R_DQUOTE] = ACTIONS(2835), + [anon_sym_LR_DQUOTE] = ACTIONS(2835), + [anon_sym_uR_DQUOTE] = ACTIONS(2835), + [anon_sym_UR_DQUOTE] = ACTIONS(2835), + [anon_sym_u8R_DQUOTE] = ACTIONS(2835), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + }, + [926] = { + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [927] = { + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token2] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_R_DQUOTE] = ACTIONS(2823), + [anon_sym_LR_DQUOTE] = ACTIONS(2823), + [anon_sym_uR_DQUOTE] = ACTIONS(2823), + [anon_sym_UR_DQUOTE] = ACTIONS(2823), + [anon_sym_u8R_DQUOTE] = ACTIONS(2823), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + }, + [928] = { + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_R_DQUOTE] = ACTIONS(2763), + [anon_sym_LR_DQUOTE] = ACTIONS(2763), + [anon_sym_uR_DQUOTE] = ACTIONS(2763), + [anon_sym_UR_DQUOTE] = ACTIONS(2763), + [anon_sym_u8R_DQUOTE] = ACTIONS(2763), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + }, + [929] = { + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_R_DQUOTE] = ACTIONS(2783), + [anon_sym_LR_DQUOTE] = ACTIONS(2783), + [anon_sym_uR_DQUOTE] = ACTIONS(2783), + [anon_sym_UR_DQUOTE] = ACTIONS(2783), + [anon_sym_u8R_DQUOTE] = ACTIONS(2783), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + }, + [930] = { + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_R_DQUOTE] = ACTIONS(2739), + [anon_sym_LR_DQUOTE] = ACTIONS(2739), + [anon_sym_uR_DQUOTE] = ACTIONS(2739), + [anon_sym_UR_DQUOTE] = ACTIONS(2739), + [anon_sym_u8R_DQUOTE] = ACTIONS(2739), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + }, + [931] = { + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_R_DQUOTE] = ACTIONS(2735), + [anon_sym_LR_DQUOTE] = ACTIONS(2735), + [anon_sym_uR_DQUOTE] = ACTIONS(2735), + [anon_sym_UR_DQUOTE] = ACTIONS(2735), + [anon_sym_u8R_DQUOTE] = ACTIONS(2735), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + }, + [932] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [933] = { + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token2] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_R_DQUOTE] = ACTIONS(2771), + [anon_sym_LR_DQUOTE] = ACTIONS(2771), + [anon_sym_uR_DQUOTE] = ACTIONS(2771), + [anon_sym_UR_DQUOTE] = ACTIONS(2771), + [anon_sym_u8R_DQUOTE] = ACTIONS(2771), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + }, + [934] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token2] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [936] = { + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [937] = { + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [938] = { + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token2] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_R_DQUOTE] = ACTIONS(2783), + [anon_sym_LR_DQUOTE] = ACTIONS(2783), + [anon_sym_uR_DQUOTE] = ACTIONS(2783), + [anon_sym_UR_DQUOTE] = ACTIONS(2783), + [anon_sym_u8R_DQUOTE] = ACTIONS(2783), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + }, + [939] = { + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [940] = { + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [941] = { + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), + [sym_nullptr] = ACTIONS(2721), + }, + [942] = { + [sym_identifier] = ACTIONS(2717), + [aux_sym_preproc_include_token1] = ACTIONS(2717), + [aux_sym_preproc_def_token1] = ACTIONS(2717), + [aux_sym_preproc_if_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), + [sym_preproc_directive] = ACTIONS(2717), + [anon_sym_LPAREN2] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym___attribute__] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), + [anon_sym___declspec] = ACTIONS(2717), + [anon_sym___based] = ACTIONS(2717), + [anon_sym___cdecl] = ACTIONS(2717), + [anon_sym___clrcall] = ACTIONS(2717), + [anon_sym___stdcall] = ACTIONS(2717), + [anon_sym___fastcall] = ACTIONS(2717), + [anon_sym___thiscall] = ACTIONS(2717), + [anon_sym___vectorcall] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_register] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_thread_local] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_volatile] = ACTIONS(2717), + [anon_sym_restrict] = ACTIONS(2717), + [anon_sym__Atomic] = ACTIONS(2717), + [anon_sym_mutable] = ACTIONS(2717), + [anon_sym_constexpr] = ACTIONS(2717), + [anon_sym_constinit] = ACTIONS(2717), + [anon_sym_consteval] = ACTIONS(2717), + [anon_sym_signed] = ACTIONS(2717), + [anon_sym_unsigned] = ACTIONS(2717), + [anon_sym_long] = ACTIONS(2717), + [anon_sym_short] = ACTIONS(2717), + [sym_primitive_type] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_goto] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2717), + [anon_sym_compl] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_sizeof] = ACTIONS(2717), + [sym_number_literal] = ACTIONS(2719), + [anon_sym_L_SQUOTE] = ACTIONS(2719), + [anon_sym_u_SQUOTE] = ACTIONS(2719), + [anon_sym_U_SQUOTE] = ACTIONS(2719), + [anon_sym_u8_SQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_L_DQUOTE] = ACTIONS(2719), + [anon_sym_u_DQUOTE] = ACTIONS(2719), + [anon_sym_U_DQUOTE] = ACTIONS(2719), + [anon_sym_u8_DQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2717), + [anon_sym_decltype] = ACTIONS(2717), + [anon_sym_virtual] = ACTIONS(2717), + [anon_sym_explicit] = ACTIONS(2717), + [anon_sym_typename] = ACTIONS(2717), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_operator] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_static_assert] = ACTIONS(2717), + [anon_sym_concept] = ACTIONS(2717), + [anon_sym_co_return] = ACTIONS(2717), + [anon_sym_co_yield] = ACTIONS(2717), + [anon_sym_R_DQUOTE] = ACTIONS(2719), + [anon_sym_LR_DQUOTE] = ACTIONS(2719), + [anon_sym_uR_DQUOTE] = ACTIONS(2719), + [anon_sym_UR_DQUOTE] = ACTIONS(2719), + [anon_sym_u8R_DQUOTE] = ACTIONS(2719), + [anon_sym_co_await] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_requires] = ACTIONS(2717), + [sym_this] = ACTIONS(2717), + [sym_nullptr] = ACTIONS(2717), + }, + [943] = { + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [944] = { + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [945] = { + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token2] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [946] = { + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token2] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_R_DQUOTE] = ACTIONS(2787), + [anon_sym_LR_DQUOTE] = ACTIONS(2787), + [anon_sym_uR_DQUOTE] = ACTIONS(2787), + [anon_sym_UR_DQUOTE] = ACTIONS(2787), + [anon_sym_u8R_DQUOTE] = ACTIONS(2787), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + }, + [947] = { + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token2] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_R_DQUOTE] = ACTIONS(2791), + [anon_sym_LR_DQUOTE] = ACTIONS(2791), + [anon_sym_uR_DQUOTE] = ACTIONS(2791), + [anon_sym_UR_DQUOTE] = ACTIONS(2791), + [anon_sym_u8R_DQUOTE] = ACTIONS(2791), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + }, + [948] = { + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + [sym_nullptr] = ACTIONS(2709), + }, + [949] = { + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_R_DQUOTE] = ACTIONS(2799), + [anon_sym_LR_DQUOTE] = ACTIONS(2799), + [anon_sym_uR_DQUOTE] = ACTIONS(2799), + [anon_sym_UR_DQUOTE] = ACTIONS(2799), + [anon_sym_u8R_DQUOTE] = ACTIONS(2799), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + }, + [950] = { + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [951] = { + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token2] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_R_DQUOTE] = ACTIONS(2795), + [anon_sym_LR_DQUOTE] = ACTIONS(2795), + [anon_sym_uR_DQUOTE] = ACTIONS(2795), + [anon_sym_UR_DQUOTE] = ACTIONS(2795), + [anon_sym_u8R_DQUOTE] = ACTIONS(2795), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [953] = { + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [954] = { + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [955] = { + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token2] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_R_DQUOTE] = ACTIONS(2819), + [anon_sym_LR_DQUOTE] = ACTIONS(2819), + [anon_sym_uR_DQUOTE] = ACTIONS(2819), + [anon_sym_UR_DQUOTE] = ACTIONS(2819), + [anon_sym_u8R_DQUOTE] = ACTIONS(2819), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + }, + [956] = { + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token2] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_R_DQUOTE] = ACTIONS(2803), + [anon_sym_LR_DQUOTE] = ACTIONS(2803), + [anon_sym_uR_DQUOTE] = ACTIONS(2803), + [anon_sym_UR_DQUOTE] = ACTIONS(2803), + [anon_sym_u8R_DQUOTE] = ACTIONS(2803), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + }, + [957] = { + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token2] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_R_DQUOTE] = ACTIONS(2815), + [anon_sym_LR_DQUOTE] = ACTIONS(2815), + [anon_sym_uR_DQUOTE] = ACTIONS(2815), + [anon_sym_UR_DQUOTE] = ACTIONS(2815), + [anon_sym_u8R_DQUOTE] = ACTIONS(2815), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + }, + [958] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token2] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_R_DQUOTE] = ACTIONS(2807), + [anon_sym_LR_DQUOTE] = ACTIONS(2807), + [anon_sym_uR_DQUOTE] = ACTIONS(2807), + [anon_sym_UR_DQUOTE] = ACTIONS(2807), + [anon_sym_u8R_DQUOTE] = ACTIONS(2807), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + }, + [959] = { + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token2] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_R_DQUOTE] = ACTIONS(2811), + [anon_sym_LR_DQUOTE] = ACTIONS(2811), + [anon_sym_uR_DQUOTE] = ACTIONS(2811), + [anon_sym_UR_DQUOTE] = ACTIONS(2811), + [anon_sym_u8R_DQUOTE] = ACTIONS(2811), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_R_DQUOTE] = ACTIONS(2843), + [anon_sym_LR_DQUOTE] = ACTIONS(2843), + [anon_sym_uR_DQUOTE] = ACTIONS(2843), + [anon_sym_UR_DQUOTE] = ACTIONS(2843), + [anon_sym_u8R_DQUOTE] = ACTIONS(2843), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + }, + [961] = { + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [962] = { + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [963] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token2] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [964] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token2] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [965] = { + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [966] = { + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_R_DQUOTE] = ACTIONS(2839), + [anon_sym_LR_DQUOTE] = ACTIONS(2839), + [anon_sym_uR_DQUOTE] = ACTIONS(2839), + [anon_sym_UR_DQUOTE] = ACTIONS(2839), + [anon_sym_u8R_DQUOTE] = ACTIONS(2839), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + }, + [967] = { + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_R_DQUOTE] = ACTIONS(2755), + [anon_sym_LR_DQUOTE] = ACTIONS(2755), + [anon_sym_uR_DQUOTE] = ACTIONS(2755), + [anon_sym_UR_DQUOTE] = ACTIONS(2755), + [anon_sym_u8R_DQUOTE] = ACTIONS(2755), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + }, + [968] = { + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_R_DQUOTE] = ACTIONS(2787), + [anon_sym_LR_DQUOTE] = ACTIONS(2787), + [anon_sym_uR_DQUOTE] = ACTIONS(2787), + [anon_sym_UR_DQUOTE] = ACTIONS(2787), + [anon_sym_u8R_DQUOTE] = ACTIONS(2787), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + }, + [970] = { + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_R_DQUOTE] = ACTIONS(2791), + [anon_sym_LR_DQUOTE] = ACTIONS(2791), + [anon_sym_uR_DQUOTE] = ACTIONS(2791), + [anon_sym_UR_DQUOTE] = ACTIONS(2791), + [anon_sym_u8R_DQUOTE] = ACTIONS(2791), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + }, + [971] = { + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token2] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_R_DQUOTE] = ACTIONS(2767), + [anon_sym_LR_DQUOTE] = ACTIONS(2767), + [anon_sym_uR_DQUOTE] = ACTIONS(2767), + [anon_sym_UR_DQUOTE] = ACTIONS(2767), + [anon_sym_u8R_DQUOTE] = ACTIONS(2767), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + }, + [972] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [973] = { + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token2] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [974] = { + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token2] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_R_DQUOTE] = ACTIONS(2831), + [anon_sym_LR_DQUOTE] = ACTIONS(2831), + [anon_sym_uR_DQUOTE] = ACTIONS(2831), + [anon_sym_UR_DQUOTE] = ACTIONS(2831), + [anon_sym_u8R_DQUOTE] = ACTIONS(2831), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + }, + [975] = { + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_R_DQUOTE] = ACTIONS(2763), + [anon_sym_LR_DQUOTE] = ACTIONS(2763), + [anon_sym_uR_DQUOTE] = ACTIONS(2763), + [anon_sym_UR_DQUOTE] = ACTIONS(2763), + [anon_sym_u8R_DQUOTE] = ACTIONS(2763), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + }, + [976] = { + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_R_DQUOTE] = ACTIONS(2779), + [anon_sym_LR_DQUOTE] = ACTIONS(2779), + [anon_sym_uR_DQUOTE] = ACTIONS(2779), + [anon_sym_UR_DQUOTE] = ACTIONS(2779), + [anon_sym_u8R_DQUOTE] = ACTIONS(2779), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + }, + [977] = { + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token2] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_R_DQUOTE] = ACTIONS(2839), + [anon_sym_LR_DQUOTE] = ACTIONS(2839), + [anon_sym_uR_DQUOTE] = ACTIONS(2839), + [anon_sym_UR_DQUOTE] = ACTIONS(2839), + [anon_sym_u8R_DQUOTE] = ACTIONS(2839), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + }, + [978] = { + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_R_DQUOTE] = ACTIONS(2759), + [anon_sym_LR_DQUOTE] = ACTIONS(2759), + [anon_sym_uR_DQUOTE] = ACTIONS(2759), + [anon_sym_UR_DQUOTE] = ACTIONS(2759), + [anon_sym_u8R_DQUOTE] = ACTIONS(2759), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + }, + [979] = { + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [980] = { + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [981] = { + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token2] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_R_DQUOTE] = ACTIONS(2759), + [anon_sym_LR_DQUOTE] = ACTIONS(2759), + [anon_sym_uR_DQUOTE] = ACTIONS(2759), + [anon_sym_UR_DQUOTE] = ACTIONS(2759), + [anon_sym_u8R_DQUOTE] = ACTIONS(2759), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + }, + [982] = { + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [983] = { + [sym_identifier] = ACTIONS(2677), + [aux_sym_preproc_include_token1] = ACTIONS(2677), + [aux_sym_preproc_def_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token1] = ACTIONS(2677), + [aux_sym_preproc_if_token2] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), + [sym_preproc_directive] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym___attribute__] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), + [anon_sym___declspec] = ACTIONS(2677), + [anon_sym___based] = ACTIONS(2677), + [anon_sym___cdecl] = ACTIONS(2677), + [anon_sym___clrcall] = ACTIONS(2677), + [anon_sym___stdcall] = ACTIONS(2677), + [anon_sym___fastcall] = ACTIONS(2677), + [anon_sym___thiscall] = ACTIONS(2677), + [anon_sym___vectorcall] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_register] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_thread_local] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_volatile] = ACTIONS(2677), + [anon_sym_restrict] = ACTIONS(2677), + [anon_sym__Atomic] = ACTIONS(2677), + [anon_sym_mutable] = ACTIONS(2677), + [anon_sym_constexpr] = ACTIONS(2677), + [anon_sym_constinit] = ACTIONS(2677), + [anon_sym_consteval] = ACTIONS(2677), + [anon_sym_signed] = ACTIONS(2677), + [anon_sym_unsigned] = ACTIONS(2677), + [anon_sym_long] = ACTIONS(2677), + [anon_sym_short] = ACTIONS(2677), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_goto] = ACTIONS(2677), + [anon_sym_not] = ACTIONS(2677), + [anon_sym_compl] = ACTIONS(2677), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_sizeof] = ACTIONS(2677), + [sym_number_literal] = ACTIONS(2679), + [anon_sym_L_SQUOTE] = ACTIONS(2679), + [anon_sym_u_SQUOTE] = ACTIONS(2679), + [anon_sym_U_SQUOTE] = ACTIONS(2679), + [anon_sym_u8_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_L_DQUOTE] = ACTIONS(2679), + [anon_sym_u_DQUOTE] = ACTIONS(2679), + [anon_sym_U_DQUOTE] = ACTIONS(2679), + [anon_sym_u8_DQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2677), + [anon_sym_decltype] = ACTIONS(2677), + [anon_sym_virtual] = ACTIONS(2677), + [anon_sym_explicit] = ACTIONS(2677), + [anon_sym_typename] = ACTIONS(2677), + [anon_sym_template] = ACTIONS(2677), + [anon_sym_operator] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_static_assert] = ACTIONS(2677), + [anon_sym_concept] = ACTIONS(2677), + [anon_sym_co_return] = ACTIONS(2677), + [anon_sym_co_yield] = ACTIONS(2677), + [anon_sym_R_DQUOTE] = ACTIONS(2679), + [anon_sym_LR_DQUOTE] = ACTIONS(2679), + [anon_sym_uR_DQUOTE] = ACTIONS(2679), + [anon_sym_UR_DQUOTE] = ACTIONS(2679), + [anon_sym_u8R_DQUOTE] = ACTIONS(2679), + [anon_sym_co_await] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_requires] = ACTIONS(2677), + [sym_this] = ACTIONS(2677), + [sym_nullptr] = ACTIONS(2677), + }, + [984] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [985] = { + [sym_identifier] = ACTIONS(2669), + [aux_sym_preproc_include_token1] = ACTIONS(2669), + [aux_sym_preproc_def_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token1] = ACTIONS(2669), + [aux_sym_preproc_if_token2] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), + [sym_preproc_directive] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP_AMP] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym___attribute__] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), + [anon_sym___declspec] = ACTIONS(2669), + [anon_sym___based] = ACTIONS(2669), + [anon_sym___cdecl] = ACTIONS(2669), + [anon_sym___clrcall] = ACTIONS(2669), + [anon_sym___stdcall] = ACTIONS(2669), + [anon_sym___fastcall] = ACTIONS(2669), + [anon_sym___thiscall] = ACTIONS(2669), + [anon_sym___vectorcall] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_thread_local] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_mutable] = ACTIONS(2669), + [anon_sym_constexpr] = ACTIONS(2669), + [anon_sym_constinit] = ACTIONS(2669), + [anon_sym_consteval] = ACTIONS(2669), + [anon_sym_signed] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_sizeof] = ACTIONS(2669), + [sym_number_literal] = ACTIONS(2671), + [anon_sym_L_SQUOTE] = ACTIONS(2671), + [anon_sym_u_SQUOTE] = ACTIONS(2671), + [anon_sym_U_SQUOTE] = ACTIONS(2671), + [anon_sym_u8_SQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_L_DQUOTE] = ACTIONS(2671), + [anon_sym_u_DQUOTE] = ACTIONS(2671), + [anon_sym_U_DQUOTE] = ACTIONS(2671), + [anon_sym_u8_DQUOTE] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2669), + [anon_sym_decltype] = ACTIONS(2669), + [anon_sym_virtual] = ACTIONS(2669), + [anon_sym_explicit] = ACTIONS(2669), + [anon_sym_typename] = ACTIONS(2669), + [anon_sym_template] = ACTIONS(2669), + [anon_sym_operator] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_static_assert] = ACTIONS(2669), + [anon_sym_concept] = ACTIONS(2669), + [anon_sym_co_return] = ACTIONS(2669), + [anon_sym_co_yield] = ACTIONS(2669), + [anon_sym_R_DQUOTE] = ACTIONS(2671), + [anon_sym_LR_DQUOTE] = ACTIONS(2671), + [anon_sym_uR_DQUOTE] = ACTIONS(2671), + [anon_sym_UR_DQUOTE] = ACTIONS(2671), + [anon_sym_u8R_DQUOTE] = ACTIONS(2671), + [anon_sym_co_await] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_requires] = ACTIONS(2669), + [sym_this] = ACTIONS(2669), + [sym_nullptr] = ACTIONS(2669), + }, + [986] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [987] = { + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [988] = { + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_R_DQUOTE] = ACTIONS(2795), + [anon_sym_LR_DQUOTE] = ACTIONS(2795), + [anon_sym_uR_DQUOTE] = ACTIONS(2795), + [anon_sym_UR_DQUOTE] = ACTIONS(2795), + [anon_sym_u8R_DQUOTE] = ACTIONS(2795), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + }, + [989] = { + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token2] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [990] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token2] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [991] = { + [sym_identifier] = ACTIONS(2701), + [aux_sym_preproc_include_token1] = ACTIONS(2701), + [aux_sym_preproc_def_token1] = ACTIONS(2701), + [aux_sym_preproc_if_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2701), + [sym_preproc_directive] = ACTIONS(2701), + [anon_sym_LPAREN2] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym___attribute__] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2703), + [anon_sym___declspec] = ACTIONS(2701), + [anon_sym___based] = ACTIONS(2701), + [anon_sym___cdecl] = ACTIONS(2701), + [anon_sym___clrcall] = ACTIONS(2701), + [anon_sym___stdcall] = ACTIONS(2701), + [anon_sym___fastcall] = ACTIONS(2701), + [anon_sym___thiscall] = ACTIONS(2701), + [anon_sym___vectorcall] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_register] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_thread_local] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_volatile] = ACTIONS(2701), + [anon_sym_restrict] = ACTIONS(2701), + [anon_sym__Atomic] = ACTIONS(2701), + [anon_sym_mutable] = ACTIONS(2701), + [anon_sym_constexpr] = ACTIONS(2701), + [anon_sym_constinit] = ACTIONS(2701), + [anon_sym_consteval] = ACTIONS(2701), + [anon_sym_signed] = ACTIONS(2701), + [anon_sym_unsigned] = ACTIONS(2701), + [anon_sym_long] = ACTIONS(2701), + [anon_sym_short] = ACTIONS(2701), + [sym_primitive_type] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_goto] = ACTIONS(2701), + [anon_sym_not] = ACTIONS(2701), + [anon_sym_compl] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_sizeof] = ACTIONS(2701), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_L_SQUOTE] = ACTIONS(2703), + [anon_sym_u_SQUOTE] = ACTIONS(2703), + [anon_sym_U_SQUOTE] = ACTIONS(2703), + [anon_sym_u8_SQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_L_DQUOTE] = ACTIONS(2703), + [anon_sym_u_DQUOTE] = ACTIONS(2703), + [anon_sym_U_DQUOTE] = ACTIONS(2703), + [anon_sym_u8_DQUOTE] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2701), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_virtual] = ACTIONS(2701), + [anon_sym_explicit] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2701), + [anon_sym_template] = ACTIONS(2701), + [anon_sym_operator] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_static_assert] = ACTIONS(2701), + [anon_sym_concept] = ACTIONS(2701), + [anon_sym_co_return] = ACTIONS(2701), + [anon_sym_co_yield] = ACTIONS(2701), + [anon_sym_R_DQUOTE] = ACTIONS(2703), + [anon_sym_LR_DQUOTE] = ACTIONS(2703), + [anon_sym_uR_DQUOTE] = ACTIONS(2703), + [anon_sym_UR_DQUOTE] = ACTIONS(2703), + [anon_sym_u8R_DQUOTE] = ACTIONS(2703), + [anon_sym_co_await] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_requires] = ACTIONS(2701), + [sym_this] = ACTIONS(2701), + [sym_nullptr] = ACTIONS(2701), + }, + [992] = { + [sym_identifier] = ACTIONS(2705), + [aux_sym_preproc_include_token1] = ACTIONS(2705), + [aux_sym_preproc_def_token1] = ACTIONS(2705), + [aux_sym_preproc_if_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), + [sym_preproc_directive] = ACTIONS(2705), + [anon_sym_LPAREN2] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym___attribute__] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), + [anon_sym___declspec] = ACTIONS(2705), + [anon_sym___based] = ACTIONS(2705), + [anon_sym___cdecl] = ACTIONS(2705), + [anon_sym___clrcall] = ACTIONS(2705), + [anon_sym___stdcall] = ACTIONS(2705), + [anon_sym___fastcall] = ACTIONS(2705), + [anon_sym___thiscall] = ACTIONS(2705), + [anon_sym___vectorcall] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_register] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_thread_local] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_volatile] = ACTIONS(2705), + [anon_sym_restrict] = ACTIONS(2705), + [anon_sym__Atomic] = ACTIONS(2705), + [anon_sym_mutable] = ACTIONS(2705), + [anon_sym_constexpr] = ACTIONS(2705), + [anon_sym_constinit] = ACTIONS(2705), + [anon_sym_consteval] = ACTIONS(2705), + [anon_sym_signed] = ACTIONS(2705), + [anon_sym_unsigned] = ACTIONS(2705), + [anon_sym_long] = ACTIONS(2705), + [anon_sym_short] = ACTIONS(2705), + [sym_primitive_type] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2705), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_compl] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_number_literal] = ACTIONS(2707), + [anon_sym_L_SQUOTE] = ACTIONS(2707), + [anon_sym_u_SQUOTE] = ACTIONS(2707), + [anon_sym_U_SQUOTE] = ACTIONS(2707), + [anon_sym_u8_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_L_DQUOTE] = ACTIONS(2707), + [anon_sym_u_DQUOTE] = ACTIONS(2707), + [anon_sym_U_DQUOTE] = ACTIONS(2707), + [anon_sym_u8_DQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2705), + [anon_sym_decltype] = ACTIONS(2705), + [anon_sym_virtual] = ACTIONS(2705), + [anon_sym_explicit] = ACTIONS(2705), + [anon_sym_typename] = ACTIONS(2705), + [anon_sym_template] = ACTIONS(2705), + [anon_sym_operator] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_static_assert] = ACTIONS(2705), + [anon_sym_concept] = ACTIONS(2705), + [anon_sym_co_return] = ACTIONS(2705), + [anon_sym_co_yield] = ACTIONS(2705), + [anon_sym_R_DQUOTE] = ACTIONS(2707), + [anon_sym_LR_DQUOTE] = ACTIONS(2707), + [anon_sym_uR_DQUOTE] = ACTIONS(2707), + [anon_sym_UR_DQUOTE] = ACTIONS(2707), + [anon_sym_u8R_DQUOTE] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_requires] = ACTIONS(2705), + [sym_this] = ACTIONS(2705), + [sym_nullptr] = ACTIONS(2705), + }, + [993] = { + [sym_identifier] = ACTIONS(2713), + [aux_sym_preproc_include_token1] = ACTIONS(2713), + [aux_sym_preproc_def_token1] = ACTIONS(2713), + [aux_sym_preproc_if_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), + [sym_preproc_directive] = ACTIONS(2713), + [anon_sym_LPAREN2] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym___attribute__] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), + [anon_sym___declspec] = ACTIONS(2713), + [anon_sym___based] = ACTIONS(2713), + [anon_sym___cdecl] = ACTIONS(2713), + [anon_sym___clrcall] = ACTIONS(2713), + [anon_sym___stdcall] = ACTIONS(2713), + [anon_sym___fastcall] = ACTIONS(2713), + [anon_sym___thiscall] = ACTIONS(2713), + [anon_sym___vectorcall] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_register] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_thread_local] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_volatile] = ACTIONS(2713), + [anon_sym_restrict] = ACTIONS(2713), + [anon_sym__Atomic] = ACTIONS(2713), + [anon_sym_mutable] = ACTIONS(2713), + [anon_sym_constexpr] = ACTIONS(2713), + [anon_sym_constinit] = ACTIONS(2713), + [anon_sym_consteval] = ACTIONS(2713), + [anon_sym_signed] = ACTIONS(2713), + [anon_sym_unsigned] = ACTIONS(2713), + [anon_sym_long] = ACTIONS(2713), + [anon_sym_short] = ACTIONS(2713), + [sym_primitive_type] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_goto] = ACTIONS(2713), + [anon_sym_not] = ACTIONS(2713), + [anon_sym_compl] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2713), + [sym_number_literal] = ACTIONS(2715), + [anon_sym_L_SQUOTE] = ACTIONS(2715), + [anon_sym_u_SQUOTE] = ACTIONS(2715), + [anon_sym_U_SQUOTE] = ACTIONS(2715), + [anon_sym_u8_SQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_L_DQUOTE] = ACTIONS(2715), + [anon_sym_u_DQUOTE] = ACTIONS(2715), + [anon_sym_U_DQUOTE] = ACTIONS(2715), + [anon_sym_u8_DQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2713), + [anon_sym_decltype] = ACTIONS(2713), + [anon_sym_virtual] = ACTIONS(2713), + [anon_sym_explicit] = ACTIONS(2713), + [anon_sym_typename] = ACTIONS(2713), + [anon_sym_template] = ACTIONS(2713), + [anon_sym_operator] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_static_assert] = ACTIONS(2713), + [anon_sym_concept] = ACTIONS(2713), + [anon_sym_co_return] = ACTIONS(2713), + [anon_sym_co_yield] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2715), + [anon_sym_LR_DQUOTE] = ACTIONS(2715), + [anon_sym_uR_DQUOTE] = ACTIONS(2715), + [anon_sym_UR_DQUOTE] = ACTIONS(2715), + [anon_sym_u8R_DQUOTE] = ACTIONS(2715), + [anon_sym_co_await] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2713), + [sym_nullptr] = ACTIONS(2713), + }, + [994] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [995] = { + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_R_DQUOTE] = ACTIONS(2735), + [anon_sym_LR_DQUOTE] = ACTIONS(2735), + [anon_sym_uR_DQUOTE] = ACTIONS(2735), + [anon_sym_UR_DQUOTE] = ACTIONS(2735), + [anon_sym_u8R_DQUOTE] = ACTIONS(2735), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + }, + [996] = { + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token2] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_R_DQUOTE] = ACTIONS(2827), + [anon_sym_LR_DQUOTE] = ACTIONS(2827), + [anon_sym_uR_DQUOTE] = ACTIONS(2827), + [anon_sym_UR_DQUOTE] = ACTIONS(2827), + [anon_sym_u8R_DQUOTE] = ACTIONS(2827), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + }, + [997] = { + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_R_DQUOTE] = ACTIONS(2739), + [anon_sym_LR_DQUOTE] = ACTIONS(2739), + [anon_sym_uR_DQUOTE] = ACTIONS(2739), + [anon_sym_UR_DQUOTE] = ACTIONS(2739), + [anon_sym_u8R_DQUOTE] = ACTIONS(2739), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + }, + [998] = { + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token2] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_R_DQUOTE] = ACTIONS(2751), + [anon_sym_LR_DQUOTE] = ACTIONS(2751), + [anon_sym_uR_DQUOTE] = ACTIONS(2751), + [anon_sym_UR_DQUOTE] = ACTIONS(2751), + [anon_sym_u8R_DQUOTE] = ACTIONS(2751), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + }, + [999] = { + [sym_identifier] = ACTIONS(2661), + [aux_sym_preproc_include_token1] = ACTIONS(2661), + [aux_sym_preproc_def_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token1] = ACTIONS(2661), + [aux_sym_preproc_if_token2] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2661), + [sym_preproc_directive] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym___attribute__] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2663), + [anon_sym___declspec] = ACTIONS(2661), + [anon_sym___based] = ACTIONS(2661), + [anon_sym___cdecl] = ACTIONS(2661), + [anon_sym___clrcall] = ACTIONS(2661), + [anon_sym___stdcall] = ACTIONS(2661), + [anon_sym___fastcall] = ACTIONS(2661), + [anon_sym___thiscall] = ACTIONS(2661), + [anon_sym___vectorcall] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_thread_local] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_mutable] = ACTIONS(2661), + [anon_sym_constexpr] = ACTIONS(2661), + [anon_sym_constinit] = ACTIONS(2661), + [anon_sym_consteval] = ACTIONS(2661), + [anon_sym_signed] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_goto] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_compl] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_sizeof] = ACTIONS(2661), + [sym_number_literal] = ACTIONS(2663), + [anon_sym_L_SQUOTE] = ACTIONS(2663), + [anon_sym_u_SQUOTE] = ACTIONS(2663), + [anon_sym_U_SQUOTE] = ACTIONS(2663), + [anon_sym_u8_SQUOTE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_L_DQUOTE] = ACTIONS(2663), + [anon_sym_u_DQUOTE] = ACTIONS(2663), + [anon_sym_U_DQUOTE] = ACTIONS(2663), + [anon_sym_u8_DQUOTE] = ACTIONS(2663), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym_true] = ACTIONS(2661), + [sym_false] = ACTIONS(2661), + [sym_null] = ACTIONS(2661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2661), + [anon_sym_decltype] = ACTIONS(2661), + [anon_sym_virtual] = ACTIONS(2661), + [anon_sym_explicit] = ACTIONS(2661), + [anon_sym_typename] = ACTIONS(2661), + [anon_sym_template] = ACTIONS(2661), + [anon_sym_operator] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_delete] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_namespace] = ACTIONS(2661), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_static_assert] = ACTIONS(2661), + [anon_sym_concept] = ACTIONS(2661), + [anon_sym_co_return] = ACTIONS(2661), + [anon_sym_co_yield] = ACTIONS(2661), + [anon_sym_R_DQUOTE] = ACTIONS(2663), + [anon_sym_LR_DQUOTE] = ACTIONS(2663), + [anon_sym_uR_DQUOTE] = ACTIONS(2663), + [anon_sym_UR_DQUOTE] = ACTIONS(2663), + [anon_sym_u8R_DQUOTE] = ACTIONS(2663), + [anon_sym_co_await] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_requires] = ACTIONS(2661), + [sym_this] = ACTIONS(2661), + [sym_nullptr] = ACTIONS(2661), + }, + [1000] = { + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token2] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_R_DQUOTE] = ACTIONS(2847), + [anon_sym_LR_DQUOTE] = ACTIONS(2847), + [anon_sym_uR_DQUOTE] = ACTIONS(2847), + [anon_sym_UR_DQUOTE] = ACTIONS(2847), + [anon_sym_u8R_DQUOTE] = ACTIONS(2847), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + }, + [1001] = { + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_R_DQUOTE] = ACTIONS(2747), + [anon_sym_LR_DQUOTE] = ACTIONS(2747), + [anon_sym_uR_DQUOTE] = ACTIONS(2747), + [anon_sym_UR_DQUOTE] = ACTIONS(2747), + [anon_sym_u8R_DQUOTE] = ACTIONS(2747), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_R_DQUOTE] = ACTIONS(2835), + [anon_sym_LR_DQUOTE] = ACTIONS(2835), + [anon_sym_uR_DQUOTE] = ACTIONS(2835), + [anon_sym_UR_DQUOTE] = ACTIONS(2835), + [anon_sym_u8R_DQUOTE] = ACTIONS(2835), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + }, + [1003] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_R_DQUOTE] = ACTIONS(2831), + [anon_sym_LR_DQUOTE] = ACTIONS(2831), + [anon_sym_uR_DQUOTE] = ACTIONS(2831), + [anon_sym_UR_DQUOTE] = ACTIONS(2831), + [anon_sym_u8R_DQUOTE] = ACTIONS(2831), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + }, + [1004] = { + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_R_DQUOTE] = ACTIONS(2751), + [anon_sym_LR_DQUOTE] = ACTIONS(2751), + [anon_sym_uR_DQUOTE] = ACTIONS(2751), + [anon_sym_UR_DQUOTE] = ACTIONS(2751), + [anon_sym_u8R_DQUOTE] = ACTIONS(2751), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_R_DQUOTE] = ACTIONS(2827), + [anon_sym_LR_DQUOTE] = ACTIONS(2827), + [anon_sym_uR_DQUOTE] = ACTIONS(2827), + [anon_sym_UR_DQUOTE] = ACTIONS(2827), + [anon_sym_u8R_DQUOTE] = ACTIONS(2827), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + }, + [1006] = { + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_R_DQUOTE] = ACTIONS(2823), + [anon_sym_LR_DQUOTE] = ACTIONS(2823), + [anon_sym_uR_DQUOTE] = ACTIONS(2823), + [anon_sym_UR_DQUOTE] = ACTIONS(2823), + [anon_sym_u8R_DQUOTE] = ACTIONS(2823), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + }, + [1007] = { + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_R_DQUOTE] = ACTIONS(2747), + [anon_sym_LR_DQUOTE] = ACTIONS(2747), + [anon_sym_uR_DQUOTE] = ACTIONS(2747), + [anon_sym_UR_DQUOTE] = ACTIONS(2747), + [anon_sym_u8R_DQUOTE] = ACTIONS(2747), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + }, + [1008] = { + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_R_DQUOTE] = ACTIONS(2803), + [anon_sym_LR_DQUOTE] = ACTIONS(2803), + [anon_sym_uR_DQUOTE] = ACTIONS(2803), + [anon_sym_UR_DQUOTE] = ACTIONS(2803), + [anon_sym_u8R_DQUOTE] = ACTIONS(2803), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + }, + [1009] = { + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2653), + [aux_sym_preproc_include_token1] = ACTIONS(2653), + [aux_sym_preproc_def_token1] = ACTIONS(2653), + [aux_sym_preproc_if_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2653), + [sym_preproc_directive] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_TILDE] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_AMP_AMP] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_typedef] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym___attribute__] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2655), + [anon_sym___declspec] = ACTIONS(2653), + [anon_sym___based] = ACTIONS(2653), + [anon_sym___cdecl] = ACTIONS(2653), + [anon_sym___clrcall] = ACTIONS(2653), + [anon_sym___stdcall] = ACTIONS(2653), + [anon_sym___fastcall] = ACTIONS(2653), + [anon_sym___thiscall] = ACTIONS(2653), + [anon_sym___vectorcall] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_thread_local] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_mutable] = ACTIONS(2653), + [anon_sym_constexpr] = ACTIONS(2653), + [anon_sym_constinit] = ACTIONS(2653), + [anon_sym_consteval] = ACTIONS(2653), + [anon_sym_signed] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_switch] = ACTIONS(2653), + [anon_sym_case] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_goto] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_compl] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2655), + [anon_sym_sizeof] = ACTIONS(2653), + [sym_number_literal] = ACTIONS(2655), + [anon_sym_L_SQUOTE] = ACTIONS(2655), + [anon_sym_u_SQUOTE] = ACTIONS(2655), + [anon_sym_U_SQUOTE] = ACTIONS(2655), + [anon_sym_u8_SQUOTE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_L_DQUOTE] = ACTIONS(2655), + [anon_sym_u_DQUOTE] = ACTIONS(2655), + [anon_sym_U_DQUOTE] = ACTIONS(2655), + [anon_sym_u8_DQUOTE] = ACTIONS(2655), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym_true] = ACTIONS(2653), + [sym_false] = ACTIONS(2653), + [sym_null] = ACTIONS(2653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2653), + [anon_sym_decltype] = ACTIONS(2653), + [anon_sym_virtual] = ACTIONS(2653), + [anon_sym_explicit] = ACTIONS(2653), + [anon_sym_typename] = ACTIONS(2653), + [anon_sym_template] = ACTIONS(2653), + [anon_sym_operator] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [anon_sym_delete] = ACTIONS(2653), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_namespace] = ACTIONS(2653), + [anon_sym_using] = ACTIONS(2653), + [anon_sym_static_assert] = ACTIONS(2653), + [anon_sym_concept] = ACTIONS(2653), + [anon_sym_co_return] = ACTIONS(2653), + [anon_sym_co_yield] = ACTIONS(2653), + [anon_sym_R_DQUOTE] = ACTIONS(2655), + [anon_sym_LR_DQUOTE] = ACTIONS(2655), + [anon_sym_uR_DQUOTE] = ACTIONS(2655), + [anon_sym_UR_DQUOTE] = ACTIONS(2655), + [anon_sym_u8R_DQUOTE] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2653), + [anon_sym_new] = ACTIONS(2653), + [anon_sym_requires] = ACTIONS(2653), + [sym_this] = ACTIONS(2653), + [sym_nullptr] = ACTIONS(2653), + }, + [1010] = { + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token2] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_R_DQUOTE] = ACTIONS(2743), + [anon_sym_LR_DQUOTE] = ACTIONS(2743), + [anon_sym_uR_DQUOTE] = ACTIONS(2743), + [anon_sym_UR_DQUOTE] = ACTIONS(2743), + [anon_sym_u8R_DQUOTE] = ACTIONS(2743), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_R_DQUOTE] = ACTIONS(2799), + [anon_sym_LR_DQUOTE] = ACTIONS(2799), + [anon_sym_uR_DQUOTE] = ACTIONS(2799), + [anon_sym_UR_DQUOTE] = ACTIONS(2799), + [anon_sym_u8R_DQUOTE] = ACTIONS(2799), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + }, + [1012] = { + [sym_identifier] = ACTIONS(2725), + [aux_sym_preproc_include_token1] = ACTIONS(2725), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token2] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), + [sym_preproc_directive] = ACTIONS(2725), + [anon_sym_LPAREN2] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym___attribute__] = ACTIONS(2725), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), + [anon_sym___declspec] = ACTIONS(2725), + [anon_sym___based] = ACTIONS(2725), + [anon_sym___cdecl] = ACTIONS(2725), + [anon_sym___clrcall] = ACTIONS(2725), + [anon_sym___stdcall] = ACTIONS(2725), + [anon_sym___fastcall] = ACTIONS(2725), + [anon_sym___thiscall] = ACTIONS(2725), + [anon_sym___vectorcall] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_register] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_thread_local] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_volatile] = ACTIONS(2725), + [anon_sym_restrict] = ACTIONS(2725), + [anon_sym__Atomic] = ACTIONS(2725), + [anon_sym_mutable] = ACTIONS(2725), + [anon_sym_constexpr] = ACTIONS(2725), + [anon_sym_constinit] = ACTIONS(2725), + [anon_sym_consteval] = ACTIONS(2725), + [anon_sym_signed] = ACTIONS(2725), + [anon_sym_unsigned] = ACTIONS(2725), + [anon_sym_long] = ACTIONS(2725), + [anon_sym_short] = ACTIONS(2725), + [sym_primitive_type] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_compl] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2725), + [sym_number_literal] = ACTIONS(2727), + [anon_sym_L_SQUOTE] = ACTIONS(2727), + [anon_sym_u_SQUOTE] = ACTIONS(2727), + [anon_sym_U_SQUOTE] = ACTIONS(2727), + [anon_sym_u8_SQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_L_DQUOTE] = ACTIONS(2727), + [anon_sym_u_DQUOTE] = ACTIONS(2727), + [anon_sym_U_DQUOTE] = ACTIONS(2727), + [anon_sym_u8_DQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2725), + [anon_sym_decltype] = ACTIONS(2725), + [anon_sym_virtual] = ACTIONS(2725), + [anon_sym_explicit] = ACTIONS(2725), + [anon_sym_typename] = ACTIONS(2725), + [anon_sym_template] = ACTIONS(2725), + [anon_sym_operator] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_static_assert] = ACTIONS(2725), + [anon_sym_concept] = ACTIONS(2725), + [anon_sym_co_return] = ACTIONS(2725), + [anon_sym_co_yield] = ACTIONS(2725), + [anon_sym_R_DQUOTE] = ACTIONS(2727), + [anon_sym_LR_DQUOTE] = ACTIONS(2727), + [anon_sym_uR_DQUOTE] = ACTIONS(2727), + [anon_sym_UR_DQUOTE] = ACTIONS(2727), + [anon_sym_u8R_DQUOTE] = ACTIONS(2727), + [anon_sym_co_await] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_requires] = ACTIONS(2725), + [sym_this] = ACTIONS(2725), + [sym_nullptr] = ACTIONS(2725), + }, + [1013] = { + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token2] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_R_DQUOTE] = ACTIONS(2735), + [anon_sym_LR_DQUOTE] = ACTIONS(2735), + [anon_sym_uR_DQUOTE] = ACTIONS(2735), + [anon_sym_UR_DQUOTE] = ACTIONS(2735), + [anon_sym_u8R_DQUOTE] = ACTIONS(2735), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + }, + [1014] = { + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token2] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [1015] = { + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token2] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_R_DQUOTE] = ACTIONS(2739), + [anon_sym_LR_DQUOTE] = ACTIONS(2739), + [anon_sym_uR_DQUOTE] = ACTIONS(2739), + [anon_sym_UR_DQUOTE] = ACTIONS(2739), + [anon_sym_u8R_DQUOTE] = ACTIONS(2739), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + }, + [1016] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_R_DQUOTE] = ACTIONS(2807), + [anon_sym_LR_DQUOTE] = ACTIONS(2807), + [anon_sym_uR_DQUOTE] = ACTIONS(2807), + [anon_sym_UR_DQUOTE] = ACTIONS(2807), + [anon_sym_u8R_DQUOTE] = ACTIONS(2807), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + }, + [1017] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [1018] = { + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_R_DQUOTE] = ACTIONS(2811), + [anon_sym_LR_DQUOTE] = ACTIONS(2811), + [anon_sym_uR_DQUOTE] = ACTIONS(2811), + [anon_sym_UR_DQUOTE] = ACTIONS(2811), + [anon_sym_u8R_DQUOTE] = ACTIONS(2811), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_R_DQUOTE] = ACTIONS(2815), + [anon_sym_LR_DQUOTE] = ACTIONS(2815), + [anon_sym_uR_DQUOTE] = ACTIONS(2815), + [anon_sym_UR_DQUOTE] = ACTIONS(2815), + [anon_sym_u8R_DQUOTE] = ACTIONS(2815), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + }, + [1020] = { + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token2] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [1021] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2731), + [anon_sym_LR_DQUOTE] = ACTIONS(2731), + [anon_sym_uR_DQUOTE] = ACTIONS(2731), + [anon_sym_UR_DQUOTE] = ACTIONS(2731), + [anon_sym_u8R_DQUOTE] = ACTIONS(2731), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_R_DQUOTE] = ACTIONS(2819), + [anon_sym_LR_DQUOTE] = ACTIONS(2819), + [anon_sym_uR_DQUOTE] = ACTIONS(2819), + [anon_sym_UR_DQUOTE] = ACTIONS(2819), + [anon_sym_u8R_DQUOTE] = ACTIONS(2819), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + }, + [1023] = { + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [1024] = { + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_R_DQUOTE] = ACTIONS(2767), + [anon_sym_LR_DQUOTE] = ACTIONS(2767), + [anon_sym_uR_DQUOTE] = ACTIONS(2767), + [anon_sym_UR_DQUOTE] = ACTIONS(2767), + [anon_sym_u8R_DQUOTE] = ACTIONS(2767), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + }, + [1025] = { + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_R_DQUOTE] = ACTIONS(2771), + [anon_sym_LR_DQUOTE] = ACTIONS(2771), + [anon_sym_uR_DQUOTE] = ACTIONS(2771), + [anon_sym_UR_DQUOTE] = ACTIONS(2771), + [anon_sym_u8R_DQUOTE] = ACTIONS(2771), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + }, + [1026] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [1027] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_R_DQUOTE] = ACTIONS(2775), + [anon_sym_LR_DQUOTE] = ACTIONS(2775), + [anon_sym_uR_DQUOTE] = ACTIONS(2775), + [anon_sym_UR_DQUOTE] = ACTIONS(2775), + [anon_sym_u8R_DQUOTE] = ACTIONS(2775), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + }, + [1028] = { + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_R_DQUOTE] = ACTIONS(2787), + [anon_sym_LR_DQUOTE] = ACTIONS(2787), + [anon_sym_uR_DQUOTE] = ACTIONS(2787), + [anon_sym_UR_DQUOTE] = ACTIONS(2787), + [anon_sym_u8R_DQUOTE] = ACTIONS(2787), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + }, + [1029] = { + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_R_DQUOTE] = ACTIONS(2791), + [anon_sym_LR_DQUOTE] = ACTIONS(2791), + [anon_sym_uR_DQUOTE] = ACTIONS(2791), + [anon_sym_UR_DQUOTE] = ACTIONS(2791), + [anon_sym_u8R_DQUOTE] = ACTIONS(2791), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + }, + [1030] = { + [sym_identifier] = ACTIONS(2649), + [aux_sym_preproc_include_token1] = ACTIONS(2649), + [aux_sym_preproc_def_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token1] = ACTIONS(2649), + [aux_sym_preproc_if_token2] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2649), + [sym_preproc_directive] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_typedef] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym___attribute__] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2651), + [anon_sym___declspec] = ACTIONS(2649), + [anon_sym___based] = ACTIONS(2649), + [anon_sym___cdecl] = ACTIONS(2649), + [anon_sym___clrcall] = ACTIONS(2649), + [anon_sym___stdcall] = ACTIONS(2649), + [anon_sym___fastcall] = ACTIONS(2649), + [anon_sym___thiscall] = ACTIONS(2649), + [anon_sym___vectorcall] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_thread_local] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_mutable] = ACTIONS(2649), + [anon_sym_constexpr] = ACTIONS(2649), + [anon_sym_constinit] = ACTIONS(2649), + [anon_sym_consteval] = ACTIONS(2649), + [anon_sym_signed] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2649), + [anon_sym_case] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_compl] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_sizeof] = ACTIONS(2649), + [sym_number_literal] = ACTIONS(2651), + [anon_sym_L_SQUOTE] = ACTIONS(2651), + [anon_sym_u_SQUOTE] = ACTIONS(2651), + [anon_sym_U_SQUOTE] = ACTIONS(2651), + [anon_sym_u8_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_L_DQUOTE] = ACTIONS(2651), + [anon_sym_u_DQUOTE] = ACTIONS(2651), + [anon_sym_U_DQUOTE] = ACTIONS(2651), + [anon_sym_u8_DQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_null] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2649), + [anon_sym_decltype] = ACTIONS(2649), + [anon_sym_virtual] = ACTIONS(2649), + [anon_sym_explicit] = ACTIONS(2649), + [anon_sym_typename] = ACTIONS(2649), + [anon_sym_template] = ACTIONS(2649), + [anon_sym_operator] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [anon_sym_delete] = ACTIONS(2649), + [anon_sym_throw] = ACTIONS(2649), + [anon_sym_namespace] = ACTIONS(2649), + [anon_sym_using] = ACTIONS(2649), + [anon_sym_static_assert] = ACTIONS(2649), + [anon_sym_concept] = ACTIONS(2649), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2649), + [anon_sym_R_DQUOTE] = ACTIONS(2651), + [anon_sym_LR_DQUOTE] = ACTIONS(2651), + [anon_sym_uR_DQUOTE] = ACTIONS(2651), + [anon_sym_UR_DQUOTE] = ACTIONS(2651), + [anon_sym_u8R_DQUOTE] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2649), + [anon_sym_new] = ACTIONS(2649), + [anon_sym_requires] = ACTIONS(2649), + [sym_this] = ACTIONS(2649), + [sym_nullptr] = ACTIONS(2649), + }, + [1031] = { + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_R_DQUOTE] = ACTIONS(2795), + [anon_sym_LR_DQUOTE] = ACTIONS(2795), + [anon_sym_uR_DQUOTE] = ACTIONS(2795), + [anon_sym_UR_DQUOTE] = ACTIONS(2795), + [anon_sym_u8R_DQUOTE] = ACTIONS(2795), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + }, + [1032] = { + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_R_DQUOTE] = ACTIONS(2803), + [anon_sym_LR_DQUOTE] = ACTIONS(2803), + [anon_sym_uR_DQUOTE] = ACTIONS(2803), + [anon_sym_UR_DQUOTE] = ACTIONS(2803), + [anon_sym_u8R_DQUOTE] = ACTIONS(2803), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + }, + [1033] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_R_DQUOTE] = ACTIONS(2807), + [anon_sym_LR_DQUOTE] = ACTIONS(2807), + [anon_sym_uR_DQUOTE] = ACTIONS(2807), + [anon_sym_UR_DQUOTE] = ACTIONS(2807), + [anon_sym_u8R_DQUOTE] = ACTIONS(2807), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + }, + [1034] = { + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_R_DQUOTE] = ACTIONS(2811), + [anon_sym_LR_DQUOTE] = ACTIONS(2811), + [anon_sym_uR_DQUOTE] = ACTIONS(2811), + [anon_sym_UR_DQUOTE] = ACTIONS(2811), + [anon_sym_u8R_DQUOTE] = ACTIONS(2811), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + }, + [1035] = { + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_RBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_R_DQUOTE] = ACTIONS(2815), + [anon_sym_LR_DQUOTE] = ACTIONS(2815), + [anon_sym_uR_DQUOTE] = ACTIONS(2815), + [anon_sym_UR_DQUOTE] = ACTIONS(2815), + [anon_sym_u8R_DQUOTE] = ACTIONS(2815), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + }, + [1036] = { + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_R_DQUOTE] = ACTIONS(2779), + [anon_sym_LR_DQUOTE] = ACTIONS(2779), + [anon_sym_uR_DQUOTE] = ACTIONS(2779), + [anon_sym_UR_DQUOTE] = ACTIONS(2779), + [anon_sym_u8R_DQUOTE] = ACTIONS(2779), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + }, + [1037] = { + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_R_DQUOTE] = ACTIONS(2759), + [anon_sym_LR_DQUOTE] = ACTIONS(2759), + [anon_sym_uR_DQUOTE] = ACTIONS(2759), + [anon_sym_UR_DQUOTE] = ACTIONS(2759), + [anon_sym_u8R_DQUOTE] = ACTIONS(2759), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + }, + [1038] = { + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_R_DQUOTE] = ACTIONS(2819), + [anon_sym_LR_DQUOTE] = ACTIONS(2819), + [anon_sym_uR_DQUOTE] = ACTIONS(2819), + [anon_sym_UR_DQUOTE] = ACTIONS(2819), + [anon_sym_u8R_DQUOTE] = ACTIONS(2819), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + }, + [1039] = { + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token2] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [1040] = { + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [1041] = { + [sym_identifier] = ACTIONS(2657), + [aux_sym_preproc_include_token1] = ACTIONS(2657), + [aux_sym_preproc_def_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token1] = ACTIONS(2657), + [aux_sym_preproc_if_token2] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2657), + [sym_preproc_directive] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_AMP_AMP] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_typedef] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym___attribute__] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2659), + [anon_sym___declspec] = ACTIONS(2657), + [anon_sym___based] = ACTIONS(2657), + [anon_sym___cdecl] = ACTIONS(2657), + [anon_sym___clrcall] = ACTIONS(2657), + [anon_sym___stdcall] = ACTIONS(2657), + [anon_sym___fastcall] = ACTIONS(2657), + [anon_sym___thiscall] = ACTIONS(2657), + [anon_sym___vectorcall] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_thread_local] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_mutable] = ACTIONS(2657), + [anon_sym_constexpr] = ACTIONS(2657), + [anon_sym_constinit] = ACTIONS(2657), + [anon_sym_consteval] = ACTIONS(2657), + [anon_sym_signed] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_switch] = ACTIONS(2657), + [anon_sym_case] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_goto] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_compl] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2659), + [anon_sym_sizeof] = ACTIONS(2657), + [sym_number_literal] = ACTIONS(2659), + [anon_sym_L_SQUOTE] = ACTIONS(2659), + [anon_sym_u_SQUOTE] = ACTIONS(2659), + [anon_sym_U_SQUOTE] = ACTIONS(2659), + [anon_sym_u8_SQUOTE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_L_DQUOTE] = ACTIONS(2659), + [anon_sym_u_DQUOTE] = ACTIONS(2659), + [anon_sym_U_DQUOTE] = ACTIONS(2659), + [anon_sym_u8_DQUOTE] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2659), + [sym_true] = ACTIONS(2657), + [sym_false] = ACTIONS(2657), + [sym_null] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2657), + [anon_sym_decltype] = ACTIONS(2657), + [anon_sym_virtual] = ACTIONS(2657), + [anon_sym_explicit] = ACTIONS(2657), + [anon_sym_typename] = ACTIONS(2657), + [anon_sym_template] = ACTIONS(2657), + [anon_sym_operator] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2657), + [anon_sym_throw] = ACTIONS(2657), + [anon_sym_namespace] = ACTIONS(2657), + [anon_sym_using] = ACTIONS(2657), + [anon_sym_static_assert] = ACTIONS(2657), + [anon_sym_concept] = ACTIONS(2657), + [anon_sym_co_return] = ACTIONS(2657), + [anon_sym_co_yield] = ACTIONS(2657), + [anon_sym_R_DQUOTE] = ACTIONS(2659), + [anon_sym_LR_DQUOTE] = ACTIONS(2659), + [anon_sym_uR_DQUOTE] = ACTIONS(2659), + [anon_sym_UR_DQUOTE] = ACTIONS(2659), + [anon_sym_u8R_DQUOTE] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2657), + [anon_sym_new] = ACTIONS(2657), + [anon_sym_requires] = ACTIONS(2657), + [sym_this] = ACTIONS(2657), + [sym_nullptr] = ACTIONS(2657), + }, + [1042] = { + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_R_DQUOTE] = ACTIONS(2783), + [anon_sym_LR_DQUOTE] = ACTIONS(2783), + [anon_sym_uR_DQUOTE] = ACTIONS(2783), + [anon_sym_UR_DQUOTE] = ACTIONS(2783), + [anon_sym_u8R_DQUOTE] = ACTIONS(2783), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + }, + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2665), + [aux_sym_preproc_include_token1] = ACTIONS(2665), + [aux_sym_preproc_def_token1] = ACTIONS(2665), + [aux_sym_preproc_if_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), + [sym_preproc_directive] = ACTIONS(2665), + [anon_sym_LPAREN2] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym___attribute__] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), + [anon_sym___declspec] = ACTIONS(2665), + [anon_sym___based] = ACTIONS(2665), + [anon_sym___cdecl] = ACTIONS(2665), + [anon_sym___clrcall] = ACTIONS(2665), + [anon_sym___stdcall] = ACTIONS(2665), + [anon_sym___fastcall] = ACTIONS(2665), + [anon_sym___thiscall] = ACTIONS(2665), + [anon_sym___vectorcall] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_thread_local] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_mutable] = ACTIONS(2665), + [anon_sym_constexpr] = ACTIONS(2665), + [anon_sym_constinit] = ACTIONS(2665), + [anon_sym_consteval] = ACTIONS(2665), + [anon_sym_signed] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_class] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_switch] = ACTIONS(2665), + [anon_sym_case] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_do] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_goto] = ACTIONS(2665), + [anon_sym_not] = ACTIONS(2665), + [anon_sym_compl] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_sizeof] = ACTIONS(2665), + [sym_number_literal] = ACTIONS(2667), + [anon_sym_L_SQUOTE] = ACTIONS(2667), + [anon_sym_u_SQUOTE] = ACTIONS(2667), + [anon_sym_U_SQUOTE] = ACTIONS(2667), + [anon_sym_u8_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_L_DQUOTE] = ACTIONS(2667), + [anon_sym_u_DQUOTE] = ACTIONS(2667), + [anon_sym_U_DQUOTE] = ACTIONS(2667), + [anon_sym_u8_DQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym_true] = ACTIONS(2665), + [sym_false] = ACTIONS(2665), + [sym_null] = ACTIONS(2665), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2665), + [anon_sym_decltype] = ACTIONS(2665), + [anon_sym_virtual] = ACTIONS(2665), + [anon_sym_explicit] = ACTIONS(2665), + [anon_sym_typename] = ACTIONS(2665), + [anon_sym_template] = ACTIONS(2665), + [anon_sym_operator] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [anon_sym_delete] = ACTIONS(2665), + [anon_sym_throw] = ACTIONS(2665), + [anon_sym_namespace] = ACTIONS(2665), + [anon_sym_using] = ACTIONS(2665), + [anon_sym_static_assert] = ACTIONS(2665), + [anon_sym_concept] = ACTIONS(2665), + [anon_sym_co_return] = ACTIONS(2665), + [anon_sym_co_yield] = ACTIONS(2665), + [anon_sym_R_DQUOTE] = ACTIONS(2667), + [anon_sym_LR_DQUOTE] = ACTIONS(2667), + [anon_sym_uR_DQUOTE] = ACTIONS(2667), + [anon_sym_UR_DQUOTE] = ACTIONS(2667), + [anon_sym_u8R_DQUOTE] = ACTIONS(2667), + [anon_sym_co_await] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(2665), + [anon_sym_requires] = ACTIONS(2665), + [sym_this] = ACTIONS(2665), + [sym_nullptr] = ACTIONS(2665), + }, + [1044] = { + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2681), + [aux_sym_preproc_include_token1] = ACTIONS(2681), + [aux_sym_preproc_def_token1] = ACTIONS(2681), + [aux_sym_preproc_if_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), + [sym_preproc_directive] = ACTIONS(2681), + [anon_sym_LPAREN2] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym___attribute__] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), + [anon_sym___declspec] = ACTIONS(2681), + [anon_sym___based] = ACTIONS(2681), + [anon_sym___cdecl] = ACTIONS(2681), + [anon_sym___clrcall] = ACTIONS(2681), + [anon_sym___stdcall] = ACTIONS(2681), + [anon_sym___fastcall] = ACTIONS(2681), + [anon_sym___thiscall] = ACTIONS(2681), + [anon_sym___vectorcall] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_thread_local] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_mutable] = ACTIONS(2681), + [anon_sym_constexpr] = ACTIONS(2681), + [anon_sym_constinit] = ACTIONS(2681), + [anon_sym_consteval] = ACTIONS(2681), + [anon_sym_signed] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_goto] = ACTIONS(2681), + [anon_sym_not] = ACTIONS(2681), + [anon_sym_compl] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_sizeof] = ACTIONS(2681), + [sym_number_literal] = ACTIONS(2683), + [anon_sym_L_SQUOTE] = ACTIONS(2683), + [anon_sym_u_SQUOTE] = ACTIONS(2683), + [anon_sym_U_SQUOTE] = ACTIONS(2683), + [anon_sym_u8_SQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_L_DQUOTE] = ACTIONS(2683), + [anon_sym_u_DQUOTE] = ACTIONS(2683), + [anon_sym_U_DQUOTE] = ACTIONS(2683), + [anon_sym_u8_DQUOTE] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2681), + [anon_sym_decltype] = ACTIONS(2681), + [anon_sym_virtual] = ACTIONS(2681), + [anon_sym_explicit] = ACTIONS(2681), + [anon_sym_typename] = ACTIONS(2681), + [anon_sym_template] = ACTIONS(2681), + [anon_sym_operator] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_static_assert] = ACTIONS(2681), + [anon_sym_concept] = ACTIONS(2681), + [anon_sym_co_return] = ACTIONS(2681), + [anon_sym_co_yield] = ACTIONS(2681), + [anon_sym_R_DQUOTE] = ACTIONS(2683), + [anon_sym_LR_DQUOTE] = ACTIONS(2683), + [anon_sym_uR_DQUOTE] = ACTIONS(2683), + [anon_sym_UR_DQUOTE] = ACTIONS(2683), + [anon_sym_u8R_DQUOTE] = ACTIONS(2683), + [anon_sym_co_await] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_requires] = ACTIONS(2681), + [sym_this] = ACTIONS(2681), + [sym_nullptr] = ACTIONS(2681), + }, + [1045] = { + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token2] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_R_DQUOTE] = ACTIONS(2779), + [anon_sym_LR_DQUOTE] = ACTIONS(2779), + [anon_sym_uR_DQUOTE] = ACTIONS(2779), + [anon_sym_UR_DQUOTE] = ACTIONS(2779), + [anon_sym_u8R_DQUOTE] = ACTIONS(2779), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + }, + [1046] = { + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2689), + [aux_sym_preproc_include_token1] = ACTIONS(2689), + [aux_sym_preproc_def_token1] = ACTIONS(2689), + [aux_sym_preproc_if_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2689), + [sym_preproc_directive] = ACTIONS(2689), + [anon_sym_LPAREN2] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym___attribute__] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2691), + [anon_sym___declspec] = ACTIONS(2689), + [anon_sym___based] = ACTIONS(2689), + [anon_sym___cdecl] = ACTIONS(2689), + [anon_sym___clrcall] = ACTIONS(2689), + [anon_sym___stdcall] = ACTIONS(2689), + [anon_sym___fastcall] = ACTIONS(2689), + [anon_sym___thiscall] = ACTIONS(2689), + [anon_sym___vectorcall] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_register] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_thread_local] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_volatile] = ACTIONS(2689), + [anon_sym_restrict] = ACTIONS(2689), + [anon_sym__Atomic] = ACTIONS(2689), + [anon_sym_mutable] = ACTIONS(2689), + [anon_sym_constexpr] = ACTIONS(2689), + [anon_sym_constinit] = ACTIONS(2689), + [anon_sym_consteval] = ACTIONS(2689), + [anon_sym_signed] = ACTIONS(2689), + [anon_sym_unsigned] = ACTIONS(2689), + [anon_sym_long] = ACTIONS(2689), + [anon_sym_short] = ACTIONS(2689), + [sym_primitive_type] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_goto] = ACTIONS(2689), + [anon_sym_not] = ACTIONS(2689), + [anon_sym_compl] = ACTIONS(2689), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2691), + [anon_sym_u_SQUOTE] = ACTIONS(2691), + [anon_sym_U_SQUOTE] = ACTIONS(2691), + [anon_sym_u8_SQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_L_DQUOTE] = ACTIONS(2691), + [anon_sym_u_DQUOTE] = ACTIONS(2691), + [anon_sym_U_DQUOTE] = ACTIONS(2691), + [anon_sym_u8_DQUOTE] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2689), + [anon_sym_decltype] = ACTIONS(2689), + [anon_sym_virtual] = ACTIONS(2689), + [anon_sym_explicit] = ACTIONS(2689), + [anon_sym_typename] = ACTIONS(2689), + [anon_sym_template] = ACTIONS(2689), + [anon_sym_operator] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_static_assert] = ACTIONS(2689), + [anon_sym_concept] = ACTIONS(2689), + [anon_sym_co_return] = ACTIONS(2689), + [anon_sym_co_yield] = ACTIONS(2689), + [anon_sym_R_DQUOTE] = ACTIONS(2691), + [anon_sym_LR_DQUOTE] = ACTIONS(2691), + [anon_sym_uR_DQUOTE] = ACTIONS(2691), + [anon_sym_UR_DQUOTE] = ACTIONS(2691), + [anon_sym_u8R_DQUOTE] = ACTIONS(2691), + [anon_sym_co_await] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_requires] = ACTIONS(2689), + [sym_this] = ACTIONS(2689), + [sym_nullptr] = ACTIONS(2689), + }, + [1047] = { + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_R_DQUOTE] = ACTIONS(2823), + [anon_sym_LR_DQUOTE] = ACTIONS(2823), + [anon_sym_uR_DQUOTE] = ACTIONS(2823), + [anon_sym_UR_DQUOTE] = ACTIONS(2823), + [anon_sym_u8R_DQUOTE] = ACTIONS(2823), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + }, + [1048] = { + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_R_DQUOTE] = ACTIONS(2827), + [anon_sym_LR_DQUOTE] = ACTIONS(2827), + [anon_sym_uR_DQUOTE] = ACTIONS(2827), + [anon_sym_UR_DQUOTE] = ACTIONS(2827), + [anon_sym_u8R_DQUOTE] = ACTIONS(2827), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + }, + [1049] = { + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [1050] = { + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [aux_sym_preproc_include_token1] = ACTIONS(2685), + [aux_sym_preproc_def_token1] = ACTIONS(2685), + [aux_sym_preproc_if_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), + [sym_preproc_directive] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym___attribute__] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), + [anon_sym___declspec] = ACTIONS(2685), + [anon_sym___based] = ACTIONS(2685), + [anon_sym___cdecl] = ACTIONS(2685), + [anon_sym___clrcall] = ACTIONS(2685), + [anon_sym___stdcall] = ACTIONS(2685), + [anon_sym___fastcall] = ACTIONS(2685), + [anon_sym___thiscall] = ACTIONS(2685), + [anon_sym___vectorcall] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_register] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_thread_local] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_volatile] = ACTIONS(2685), + [anon_sym_restrict] = ACTIONS(2685), + [anon_sym__Atomic] = ACTIONS(2685), + [anon_sym_mutable] = ACTIONS(2685), + [anon_sym_constexpr] = ACTIONS(2685), + [anon_sym_constinit] = ACTIONS(2685), + [anon_sym_consteval] = ACTIONS(2685), + [anon_sym_signed] = ACTIONS(2685), + [anon_sym_unsigned] = ACTIONS(2685), + [anon_sym_long] = ACTIONS(2685), + [anon_sym_short] = ACTIONS(2685), + [sym_primitive_type] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_compl] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2685), + [sym_number_literal] = ACTIONS(2687), + [anon_sym_L_SQUOTE] = ACTIONS(2687), + [anon_sym_u_SQUOTE] = ACTIONS(2687), + [anon_sym_U_SQUOTE] = ACTIONS(2687), + [anon_sym_u8_SQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_L_DQUOTE] = ACTIONS(2687), + [anon_sym_u_DQUOTE] = ACTIONS(2687), + [anon_sym_U_DQUOTE] = ACTIONS(2687), + [anon_sym_u8_DQUOTE] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2685), + [anon_sym_decltype] = ACTIONS(2685), + [anon_sym_virtual] = ACTIONS(2685), + [anon_sym_explicit] = ACTIONS(2685), + [anon_sym_typename] = ACTIONS(2685), + [anon_sym_template] = ACTIONS(2685), + [anon_sym_operator] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_static_assert] = ACTIONS(2685), + [anon_sym_concept] = ACTIONS(2685), + [anon_sym_co_return] = ACTIONS(2685), + [anon_sym_co_yield] = ACTIONS(2685), + [anon_sym_R_DQUOTE] = ACTIONS(2687), + [anon_sym_LR_DQUOTE] = ACTIONS(2687), + [anon_sym_uR_DQUOTE] = ACTIONS(2687), + [anon_sym_UR_DQUOTE] = ACTIONS(2687), + [anon_sym_u8R_DQUOTE] = ACTIONS(2687), + [anon_sym_co_await] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_requires] = ACTIONS(2685), + [sym_this] = ACTIONS(2685), + [sym_nullptr] = ACTIONS(2685), + }, + [1051] = { + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_R_DQUOTE] = ACTIONS(2831), + [anon_sym_LR_DQUOTE] = ACTIONS(2831), + [anon_sym_uR_DQUOTE] = ACTIONS(2831), + [anon_sym_UR_DQUOTE] = ACTIONS(2831), + [anon_sym_u8R_DQUOTE] = ACTIONS(2831), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + }, + [1052] = { + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_R_DQUOTE] = ACTIONS(2835), + [anon_sym_LR_DQUOTE] = ACTIONS(2835), + [anon_sym_uR_DQUOTE] = ACTIONS(2835), + [anon_sym_UR_DQUOTE] = ACTIONS(2835), + [anon_sym_u8R_DQUOTE] = ACTIONS(2835), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + }, + [1053] = { + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_R_DQUOTE] = ACTIONS(2839), + [anon_sym_LR_DQUOTE] = ACTIONS(2839), + [anon_sym_uR_DQUOTE] = ACTIONS(2839), + [anon_sym_UR_DQUOTE] = ACTIONS(2839), + [anon_sym_u8R_DQUOTE] = ACTIONS(2839), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + }, + [1054] = { + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_R_DQUOTE] = ACTIONS(2847), + [anon_sym_LR_DQUOTE] = ACTIONS(2847), + [anon_sym_uR_DQUOTE] = ACTIONS(2847), + [anon_sym_UR_DQUOTE] = ACTIONS(2847), + [anon_sym_u8R_DQUOTE] = ACTIONS(2847), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + }, + [1055] = { + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_R_DQUOTE] = ACTIONS(2843), + [anon_sym_LR_DQUOTE] = ACTIONS(2843), + [anon_sym_uR_DQUOTE] = ACTIONS(2843), + [anon_sym_UR_DQUOTE] = ACTIONS(2843), + [anon_sym_u8R_DQUOTE] = ACTIONS(2843), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + }, + [1056] = { + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token2] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_R_DQUOTE] = ACTIONS(2755), + [anon_sym_LR_DQUOTE] = ACTIONS(2755), + [anon_sym_uR_DQUOTE] = ACTIONS(2755), + [anon_sym_UR_DQUOTE] = ACTIONS(2755), + [anon_sym_u8R_DQUOTE] = ACTIONS(2755), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + }, + [1057] = { + [sym_identifier] = ACTIONS(2697), + [aux_sym_preproc_include_token1] = ACTIONS(2697), + [aux_sym_preproc_def_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token1] = ACTIONS(2697), + [aux_sym_preproc_if_token2] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2697), + [sym_preproc_directive] = ACTIONS(2697), + [anon_sym_LPAREN2] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym___attribute__] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2699), + [anon_sym___declspec] = ACTIONS(2697), + [anon_sym___based] = ACTIONS(2697), + [anon_sym___cdecl] = ACTIONS(2697), + [anon_sym___clrcall] = ACTIONS(2697), + [anon_sym___stdcall] = ACTIONS(2697), + [anon_sym___fastcall] = ACTIONS(2697), + [anon_sym___thiscall] = ACTIONS(2697), + [anon_sym___vectorcall] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_register] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_thread_local] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_volatile] = ACTIONS(2697), + [anon_sym_restrict] = ACTIONS(2697), + [anon_sym__Atomic] = ACTIONS(2697), + [anon_sym_mutable] = ACTIONS(2697), + [anon_sym_constexpr] = ACTIONS(2697), + [anon_sym_constinit] = ACTIONS(2697), + [anon_sym_consteval] = ACTIONS(2697), + [anon_sym_signed] = ACTIONS(2697), + [anon_sym_unsigned] = ACTIONS(2697), + [anon_sym_long] = ACTIONS(2697), + [anon_sym_short] = ACTIONS(2697), + [sym_primitive_type] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_goto] = ACTIONS(2697), + [anon_sym_not] = ACTIONS(2697), + [anon_sym_compl] = ACTIONS(2697), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_sizeof] = ACTIONS(2697), + [sym_number_literal] = ACTIONS(2699), + [anon_sym_L_SQUOTE] = ACTIONS(2699), + [anon_sym_u_SQUOTE] = ACTIONS(2699), + [anon_sym_U_SQUOTE] = ACTIONS(2699), + [anon_sym_u8_SQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_L_DQUOTE] = ACTIONS(2699), + [anon_sym_u_DQUOTE] = ACTIONS(2699), + [anon_sym_U_DQUOTE] = ACTIONS(2699), + [anon_sym_u8_DQUOTE] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2697), + [anon_sym_decltype] = ACTIONS(2697), + [anon_sym_virtual] = ACTIONS(2697), + [anon_sym_explicit] = ACTIONS(2697), + [anon_sym_typename] = ACTIONS(2697), + [anon_sym_template] = ACTIONS(2697), + [anon_sym_operator] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_static_assert] = ACTIONS(2697), + [anon_sym_concept] = ACTIONS(2697), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2697), + [anon_sym_R_DQUOTE] = ACTIONS(2699), + [anon_sym_LR_DQUOTE] = ACTIONS(2699), + [anon_sym_uR_DQUOTE] = ACTIONS(2699), + [anon_sym_UR_DQUOTE] = ACTIONS(2699), + [anon_sym_u8R_DQUOTE] = ACTIONS(2699), + [anon_sym_co_await] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_requires] = ACTIONS(2697), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + }, + [1058] = { + [sym_identifier] = ACTIONS(2673), + [aux_sym_preproc_include_token1] = ACTIONS(2673), + [aux_sym_preproc_def_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token1] = ACTIONS(2673), + [aux_sym_preproc_if_token2] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), + [sym_preproc_directive] = ACTIONS(2673), + [anon_sym_LPAREN2] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_AMP_AMP] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_typedef] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym___attribute__] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), + [anon_sym___declspec] = ACTIONS(2673), + [anon_sym___based] = ACTIONS(2673), + [anon_sym___cdecl] = ACTIONS(2673), + [anon_sym___clrcall] = ACTIONS(2673), + [anon_sym___stdcall] = ACTIONS(2673), + [anon_sym___fastcall] = ACTIONS(2673), + [anon_sym___thiscall] = ACTIONS(2673), + [anon_sym___vectorcall] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_register] = ACTIONS(2673), + [anon_sym_inline] = ACTIONS(2673), + [anon_sym_thread_local] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_volatile] = ACTIONS(2673), + [anon_sym_restrict] = ACTIONS(2673), + [anon_sym__Atomic] = ACTIONS(2673), + [anon_sym_mutable] = ACTIONS(2673), + [anon_sym_constexpr] = ACTIONS(2673), + [anon_sym_constinit] = ACTIONS(2673), + [anon_sym_consteval] = ACTIONS(2673), + [anon_sym_signed] = ACTIONS(2673), + [anon_sym_unsigned] = ACTIONS(2673), + [anon_sym_long] = ACTIONS(2673), + [anon_sym_short] = ACTIONS(2673), + [sym_primitive_type] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_goto] = ACTIONS(2673), + [anon_sym_not] = ACTIONS(2673), + [anon_sym_compl] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_sizeof] = ACTIONS(2673), + [sym_number_literal] = ACTIONS(2675), + [anon_sym_L_SQUOTE] = ACTIONS(2675), + [anon_sym_u_SQUOTE] = ACTIONS(2675), + [anon_sym_U_SQUOTE] = ACTIONS(2675), + [anon_sym_u8_SQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_L_DQUOTE] = ACTIONS(2675), + [anon_sym_u_DQUOTE] = ACTIONS(2675), + [anon_sym_U_DQUOTE] = ACTIONS(2675), + [anon_sym_u8_DQUOTE] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2673), + [anon_sym_decltype] = ACTIONS(2673), + [anon_sym_virtual] = ACTIONS(2673), + [anon_sym_explicit] = ACTIONS(2673), + [anon_sym_typename] = ACTIONS(2673), + [anon_sym_template] = ACTIONS(2673), + [anon_sym_operator] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_static_assert] = ACTIONS(2673), + [anon_sym_concept] = ACTIONS(2673), + [anon_sym_co_return] = ACTIONS(2673), + [anon_sym_co_yield] = ACTIONS(2673), + [anon_sym_R_DQUOTE] = ACTIONS(2675), + [anon_sym_LR_DQUOTE] = ACTIONS(2675), + [anon_sym_uR_DQUOTE] = ACTIONS(2675), + [anon_sym_UR_DQUOTE] = ACTIONS(2675), + [anon_sym_u8R_DQUOTE] = ACTIONS(2675), + [anon_sym_co_await] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_requires] = ACTIONS(2673), + [sym_this] = ACTIONS(2673), + [sym_nullptr] = ACTIONS(2673), + }, + [1059] = { + [sym_identifier] = ACTIONS(2693), + [aux_sym_preproc_include_token1] = ACTIONS(2693), + [aux_sym_preproc_def_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token1] = ACTIONS(2693), + [aux_sym_preproc_if_token2] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2693), + [sym_preproc_directive] = ACTIONS(2693), + [anon_sym_LPAREN2] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym___attribute__] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2695), + [anon_sym___declspec] = ACTIONS(2693), + [anon_sym___based] = ACTIONS(2693), + [anon_sym___cdecl] = ACTIONS(2693), + [anon_sym___clrcall] = ACTIONS(2693), + [anon_sym___stdcall] = ACTIONS(2693), + [anon_sym___fastcall] = ACTIONS(2693), + [anon_sym___thiscall] = ACTIONS(2693), + [anon_sym___vectorcall] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_register] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_thread_local] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_volatile] = ACTIONS(2693), + [anon_sym_restrict] = ACTIONS(2693), + [anon_sym__Atomic] = ACTIONS(2693), + [anon_sym_mutable] = ACTIONS(2693), + [anon_sym_constexpr] = ACTIONS(2693), + [anon_sym_constinit] = ACTIONS(2693), + [anon_sym_consteval] = ACTIONS(2693), + [anon_sym_signed] = ACTIONS(2693), + [anon_sym_unsigned] = ACTIONS(2693), + [anon_sym_long] = ACTIONS(2693), + [anon_sym_short] = ACTIONS(2693), + [sym_primitive_type] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_goto] = ACTIONS(2693), + [anon_sym_not] = ACTIONS(2693), + [anon_sym_compl] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_sizeof] = ACTIONS(2693), + [sym_number_literal] = ACTIONS(2695), + [anon_sym_L_SQUOTE] = ACTIONS(2695), + [anon_sym_u_SQUOTE] = ACTIONS(2695), + [anon_sym_U_SQUOTE] = ACTIONS(2695), + [anon_sym_u8_SQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2693), + [anon_sym_decltype] = ACTIONS(2693), + [anon_sym_virtual] = ACTIONS(2693), + [anon_sym_explicit] = ACTIONS(2693), + [anon_sym_typename] = ACTIONS(2693), + [anon_sym_template] = ACTIONS(2693), + [anon_sym_operator] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_static_assert] = ACTIONS(2693), + [anon_sym_concept] = ACTIONS(2693), + [anon_sym_co_return] = ACTIONS(2693), + [anon_sym_co_yield] = ACTIONS(2693), + [anon_sym_R_DQUOTE] = ACTIONS(2695), + [anon_sym_LR_DQUOTE] = ACTIONS(2695), + [anon_sym_uR_DQUOTE] = ACTIONS(2695), + [anon_sym_UR_DQUOTE] = ACTIONS(2695), + [anon_sym_u8R_DQUOTE] = ACTIONS(2695), + [anon_sym_co_await] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_requires] = ACTIONS(2693), + [sym_this] = ACTIONS(2693), + [sym_nullptr] = ACTIONS(2693), + }, + [1060] = { + [sym__expression] = STATE(3442), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(3441), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1061] = { + [sym__expression] = STATE(3655), + [sym_comma_expression] = STATE(6929), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1062] = { + [sym__expression] = STATE(3714), + [sym_comma_expression] = STATE(6666), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1063] = { + [sym__expression] = STATE(3759), + [sym_comma_expression] = STATE(6907), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1064] = { + [sym__expression] = STATE(3769), + [sym_comma_expression] = STATE(6909), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1065] = { + [sym__expression] = STATE(3803), + [sym_comma_expression] = STATE(6921), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1066] = { + [sym__expression] = STATE(3653), + [sym_comma_expression] = STATE(6937), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1067] = { + [sym__expression] = STATE(3787), + [sym_comma_expression] = STATE(6626), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1068] = { + [sym__expression] = STATE(3788), + [sym_comma_expression] = STATE(6631), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1069] = { + [sym__expression] = STATE(3727), + [sym_comma_expression] = STATE(6700), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1070] = { + [sym__expression] = STATE(3690), + [sym_comma_expression] = STATE(6763), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1071] = { + [sym__expression] = STATE(3778), + [sym_comma_expression] = STATE(6627), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1072] = { + [sym__expression] = STATE(3696), + [sym_comma_expression] = STATE(6910), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1073] = { + [sym__expression] = STATE(3700), + [sym_comma_expression] = STATE(6904), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1074] = { + [sym__expression] = STATE(3679), + [sym_comma_expression] = STATE(6770), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1075] = { + [sym__expression] = STATE(3728), + [sym_comma_expression] = STATE(6698), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2947), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2958), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1076] = { + [sym__expression] = STATE(3689), + [sym_comma_expression] = STATE(6765), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1077] = { + [sym__expression] = STATE(3717), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2987), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1078] = { + [sym__expression] = STATE(3726), + [sym_comma_expression] = STATE(6705), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2933), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1079] = { + [sym__expression] = STATE(3442), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(3441), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2995), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(1505), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1080] = { + [sym__expression] = STATE(3711), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_initializer_list] = STATE(3981), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2415), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1081] = { + [sym__expression] = STATE(3843), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_initializer_list] = STATE(3441), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_COLON] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_LT_EQ_GT] = ACTIONS(1505), + [anon_sym_or] = ACTIONS(1513), + [anon_sym_and] = ACTIONS(1513), + [anon_sym_bitor] = ACTIONS(1513), + [anon_sym_xor] = ACTIONS(1513), + [anon_sym_bitand] = ACTIONS(1513), + [anon_sym_not_eq] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DASH_GT] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1082] = { + [sym_function_definition] = STATE(2264), + [sym_declaration] = STATE(2264), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4252), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2145), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3417), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(2264), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(2264), + [sym_operator_cast] = STATE(5457), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(2264), + [sym_operator_cast_declaration] = STATE(2264), + [sym_constructor_or_destructor_definition] = STATE(2264), + [sym_constructor_or_destructor_declaration] = STATE(2264), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2264), + [sym_concept_definition] = STATE(2264), + [sym_requires_clause] = STATE(1090), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3041), + [anon_sym_concept] = ACTIONS(3043), + [anon_sym_requires] = ACTIONS(3045), + }, + [1083] = { + [sym_function_definition] = STATE(981), + [sym_declaration] = STATE(981), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4248), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2166), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4994), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3412), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(981), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1952), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(981), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1952), + [sym_operator_cast_definition] = STATE(981), + [sym_operator_cast_declaration] = STATE(981), + [sym_constructor_or_destructor_definition] = STATE(981), + [sym_constructor_or_destructor_declaration] = STATE(981), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(981), + [sym_concept_definition] = STATE(981), + [sym_requires_clause] = STATE(1093), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1952), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3049), + [anon_sym_concept] = ACTIONS(612), + [anon_sym_requires] = ACTIONS(3045), + }, + [1084] = { + [sym_function_definition] = STATE(514), + [sym_declaration] = STATE(514), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4981), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(514), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1955), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(514), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1955), + [sym_operator_cast_definition] = STATE(514), + [sym_operator_cast_declaration] = STATE(514), + [sym_constructor_or_destructor_definition] = STATE(514), + [sym_constructor_or_destructor_declaration] = STATE(514), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(514), + [sym_concept_definition] = STATE(514), + [sym_requires_clause] = STATE(1092), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1955), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3053), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_requires] = ACTIONS(3045), + }, + [1085] = { + [sym_function_definition] = STATE(1037), + [sym_declaration] = STATE(1037), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4249), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2160), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4989), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(1037), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1988), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(1037), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1988), + [sym_operator_cast_definition] = STATE(1037), + [sym_operator_cast_declaration] = STATE(1037), + [sym_constructor_or_destructor_definition] = STATE(1037), + [sym_constructor_or_destructor_declaration] = STATE(1037), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(1037), + [sym_concept_definition] = STATE(1037), + [sym_requires_clause] = STATE(1091), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1988), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3057), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_requires] = ACTIONS(3045), + }, + [1086] = { + [sym_function_definition] = STATE(2094), + [sym_declaration] = STATE(2094), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2119), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3397), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(2094), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(2094), + [sym_operator_cast] = STATE(5486), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(2094), + [sym_operator_cast_declaration] = STATE(2094), + [sym_constructor_or_destructor_definition] = STATE(2094), + [sym_constructor_or_destructor_declaration] = STATE(2094), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2094), + [sym_concept_definition] = STATE(2094), + [sym_requires_clause] = STATE(1095), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_concept] = ACTIONS(3061), + [anon_sym_requires] = ACTIONS(3045), + }, + [1087] = { + [sym_function_definition] = STATE(978), + [sym_declaration] = STATE(978), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4967), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(978), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1971), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(978), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1971), + [sym_operator_cast_definition] = STATE(978), + [sym_operator_cast_declaration] = STATE(978), + [sym_constructor_or_destructor_definition] = STATE(978), + [sym_constructor_or_destructor_declaration] = STATE(978), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(978), + [sym_concept_definition] = STATE(978), + [sym_requires_clause] = STATE(1089), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1971), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3065), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_requires] = ACTIONS(3045), + }, + [1088] = { + [sym_function_definition] = STATE(2397), + [sym_declaration] = STATE(2397), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2118), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3402), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(2397), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(2397), + [sym_operator_cast] = STATE(5459), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(2397), + [sym_operator_cast_declaration] = STATE(2397), + [sym_constructor_or_destructor_definition] = STATE(2397), + [sym_constructor_or_destructor_declaration] = STATE(2397), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2397), + [sym_concept_definition] = STATE(2397), + [sym_requires_clause] = STATE(1094), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2285), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3067), + [anon_sym_concept] = ACTIONS(3069), + [anon_sym_requires] = ACTIONS(3045), + }, + [1089] = { + [sym_function_definition] = STATE(1023), + [sym_declaration] = STATE(1023), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2055), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4967), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3403), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(1023), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1971), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(1023), + [sym_operator_cast] = STATE(5452), + [sym__constructor_specifiers] = STATE(1971), + [sym_operator_cast_definition] = STATE(1023), + [sym_operator_cast_declaration] = STATE(1023), + [sym_constructor_or_destructor_definition] = STATE(1023), + [sym_constructor_or_destructor_declaration] = STATE(1023), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(1023), + [sym_concept_definition] = STATE(1023), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5452), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1971), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3063), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3065), + [anon_sym_concept] = ACTIONS(207), + }, + [1090] = { + [sym_function_definition] = STATE(2244), + [sym_declaration] = STATE(2244), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4252), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2145), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4970), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3417), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(2244), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1962), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(2244), + [sym_operator_cast] = STATE(5457), + [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast_definition] = STATE(2244), + [sym_operator_cast_declaration] = STATE(2244), + [sym_constructor_or_destructor_definition] = STATE(2244), + [sym_constructor_or_destructor_declaration] = STATE(2244), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2244), + [sym_concept_definition] = STATE(2244), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5457), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1962), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2217), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3041), + [anon_sym_concept] = ACTIONS(3043), + }, + [1091] = { + [sym_function_definition] = STATE(911), + [sym_declaration] = STATE(911), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4249), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2160), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4989), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(911), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1988), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(911), + [sym_operator_cast] = STATE(5472), + [sym__constructor_specifiers] = STATE(1988), + [sym_operator_cast_definition] = STATE(911), + [sym_operator_cast_declaration] = STATE(911), + [sym_constructor_or_destructor_definition] = STATE(911), + [sym_constructor_or_destructor_declaration] = STATE(911), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(911), + [sym_concept_definition] = STATE(911), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5472), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1988), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3057), + [anon_sym_concept] = ACTIONS(131), + }, + [1092] = { + [sym_function_definition] = STATE(485), + [sym_declaration] = STATE(485), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4212), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2136), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4981), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3392), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(485), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1955), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(485), + [sym_operator_cast] = STATE(5448), + [sym__constructor_specifiers] = STATE(1955), + [sym_operator_cast_definition] = STATE(485), + [sym_operator_cast_declaration] = STATE(485), + [sym_constructor_or_destructor_definition] = STATE(485), + [sym_constructor_or_destructor_declaration] = STATE(485), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(485), + [sym_concept_definition] = STATE(485), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5448), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1955), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3051), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3053), + [anon_sym_concept] = ACTIONS(287), + }, + [1093] = { + [sym_function_definition] = STATE(1030), + [sym_declaration] = STATE(1030), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4248), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2166), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4994), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3412), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(1030), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1952), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(1030), + [sym_operator_cast] = STATE(5487), + [sym__constructor_specifiers] = STATE(1952), + [sym_operator_cast_definition] = STATE(1030), + [sym_operator_cast_declaration] = STATE(1030), + [sym_constructor_or_destructor_definition] = STATE(1030), + [sym_constructor_or_destructor_declaration] = STATE(1030), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(1030), + [sym_concept_definition] = STATE(1030), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5487), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1952), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3047), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3049), + [anon_sym_concept] = ACTIONS(612), + }, + [1094] = { + [sym_function_definition] = STATE(2256), + [sym_declaration] = STATE(2256), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2118), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4982), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3402), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(2256), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1960), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(2256), + [sym_operator_cast] = STATE(5459), + [sym__constructor_specifiers] = STATE(1960), + [sym_operator_cast_definition] = STATE(2256), + [sym_operator_cast_declaration] = STATE(2256), + [sym_constructor_or_destructor_definition] = STATE(2256), + [sym_constructor_or_destructor_declaration] = STATE(2256), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2256), + [sym_concept_definition] = STATE(2256), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5459), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1960), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2285), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3067), + [anon_sym_concept] = ACTIONS(3069), + }, + [1095] = { + [sym_function_definition] = STATE(2046), + [sym_declaration] = STATE(2046), + [sym__declaration_modifiers] = STATE(3361), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(3361), + [sym_attribute_declaration] = STATE(3361), + [sym_ms_declspec_modifier] = STATE(3361), + [sym_ms_based_modifier] = STATE(6985), + [sym_ms_call_modifier] = STATE(2119), + [sym__declarator] = STATE(5475), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(4949), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(3361), + [sym_type_qualifier] = STATE(3361), + [sym__type_specifier] = STATE(3397), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym__empty_declaration] = STATE(2046), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(3361), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(3504), + [sym_template_declaration] = STATE(2046), + [sym_operator_cast] = STATE(5486), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(2046), + [sym_operator_cast_declaration] = STATE(2046), + [sym_constructor_or_destructor_definition] = STATE(2046), + [sym_constructor_or_destructor_declaration] = STATE(2046), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_alias_declaration] = STATE(2046), + [sym_concept_definition] = STATE(2046), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4774), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_qualified_operator_cast_identifier] = STATE(5486), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [sym_identifier] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1633), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_concept] = ACTIONS(3061), + }, + [1096] = { + [sym_identifier] = ACTIONS(3071), + [anon_sym_COMMA] = ACTIONS(3073), + [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_LPAREN2] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3071), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3071), + [anon_sym___attribute__] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3073), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), + [anon_sym___declspec] = ACTIONS(3071), + [anon_sym___based] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3071), + [anon_sym_register] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_thread_local] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3071), + [anon_sym_volatile] = ACTIONS(3071), + [anon_sym_restrict] = ACTIONS(3071), + [anon_sym__Atomic] = ACTIONS(3071), + [anon_sym_mutable] = ACTIONS(3071), + [anon_sym_constexpr] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = ACTIONS(3071), + [anon_sym_signed] = ACTIONS(3071), + [anon_sym_unsigned] = ACTIONS(3071), + [anon_sym_long] = ACTIONS(3071), + [anon_sym_short] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3071), + [anon_sym_class] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3071), + [anon_sym_union] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_switch] = ACTIONS(3071), + [anon_sym_case] = ACTIONS(3071), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_do] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_goto] = ACTIONS(3071), + [anon_sym_not] = ACTIONS(3071), + [anon_sym_compl] = ACTIONS(3071), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_sizeof] = ACTIONS(3071), + [sym_number_literal] = ACTIONS(3073), + [anon_sym_L_SQUOTE] = ACTIONS(3073), + [anon_sym_u_SQUOTE] = ACTIONS(3073), + [anon_sym_U_SQUOTE] = ACTIONS(3073), + [anon_sym_u8_SQUOTE] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_L_DQUOTE] = ACTIONS(3073), + [anon_sym_u_DQUOTE] = ACTIONS(3073), + [anon_sym_U_DQUOTE] = ACTIONS(3073), + [anon_sym_u8_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [sym_true] = ACTIONS(3071), + [sym_false] = ACTIONS(3071), + [sym_null] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3071), + [anon_sym_decltype] = ACTIONS(3071), + [anon_sym_virtual] = ACTIONS(3071), + [anon_sym_explicit] = ACTIONS(3071), + [anon_sym_typename] = ACTIONS(3071), + [anon_sym_template] = ACTIONS(3071), + [anon_sym_GT2] = ACTIONS(3073), + [anon_sym_operator] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_delete] = ACTIONS(3071), + [anon_sym_throw] = ACTIONS(3071), + [anon_sym_co_return] = ACTIONS(3071), + [anon_sym_co_yield] = ACTIONS(3071), + [anon_sym_R_DQUOTE] = ACTIONS(3073), + [anon_sym_LR_DQUOTE] = ACTIONS(3073), + [anon_sym_uR_DQUOTE] = ACTIONS(3073), + [anon_sym_UR_DQUOTE] = ACTIONS(3073), + [anon_sym_u8R_DQUOTE] = ACTIONS(3073), + [anon_sym_co_await] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_requires] = ACTIONS(3071), + [sym_this] = ACTIONS(3071), + [sym_nullptr] = ACTIONS(3071), + }, + [1097] = { + [sym_identifier] = ACTIONS(3075), + [anon_sym_COMMA] = ACTIONS(3077), + [anon_sym_RPAREN] = ACTIONS(3077), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP_AMP] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym___based] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_explicit] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_GT2] = ACTIONS(3077), + [anon_sym_operator] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), + [sym_nullptr] = ACTIONS(3075), + }, + [1098] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5319), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym__expression] = STATE(2669), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2586), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4911), + [sym_qualified_identifier] = STATE(2587), + [sym_qualified_type_identifier] = STATE(6425), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1099] = { + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5319), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2774), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2777), + [sym_qualified_type_identifier] = STATE(6210), + [sym_operator_name] = STATE(5152), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1100] = { + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3082), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym___based] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_null] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_explicit] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [sym_nullptr] = ACTIONS(3087), + }, + [1101] = { + [sym_catch_clause] = STATE(1101), + [aux_sym_constructor_try_statement_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_typedef] = ACTIONS(2361), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym___attribute__] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2363), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2363), + [anon_sym___declspec] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_register] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym_thread_local] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_restrict] = ACTIONS(2361), + [anon_sym__Atomic] = ACTIONS(2361), + [anon_sym_mutable] = ACTIONS(2361), + [anon_sym_constexpr] = ACTIONS(2361), + [anon_sym_constinit] = ACTIONS(2361), + [anon_sym_consteval] = ACTIONS(2361), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [sym_primitive_type] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2361), + [anon_sym_switch] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_do] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_goto] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_compl] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2361), + [sym_number_literal] = ACTIONS(2363), + [anon_sym_L_SQUOTE] = ACTIONS(2363), + [anon_sym_u_SQUOTE] = ACTIONS(2363), + [anon_sym_U_SQUOTE] = ACTIONS(2363), + [anon_sym_u8_SQUOTE] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_L_DQUOTE] = ACTIONS(2363), + [anon_sym_u_DQUOTE] = ACTIONS(2363), + [anon_sym_U_DQUOTE] = ACTIONS(2363), + [anon_sym_u8_DQUOTE] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2361), + [anon_sym_decltype] = ACTIONS(2361), + [anon_sym_virtual] = ACTIONS(2361), + [anon_sym_typename] = ACTIONS(2361), + [anon_sym_template] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_delete] = ACTIONS(2361), + [anon_sym_throw] = ACTIONS(2361), + [anon_sym_co_return] = ACTIONS(2361), + [anon_sym_co_yield] = ACTIONS(2361), + [anon_sym_catch] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(2363), + [anon_sym_LR_DQUOTE] = ACTIONS(2363), + [anon_sym_uR_DQUOTE] = ACTIONS(2363), + [anon_sym_UR_DQUOTE] = ACTIONS(2363), + [anon_sym_u8R_DQUOTE] = ACTIONS(2363), + [anon_sym_co_await] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_requires] = ACTIONS(2361), + [sym_this] = ACTIONS(2361), + [sym_nullptr] = ACTIONS(2361), + }, + [1102] = { + [sym_catch_clause] = STATE(1101), + [aux_sym_constructor_try_statement_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym___attribute__] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), + [anon_sym___declspec] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_thread_local] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_restrict] = ACTIONS(2355), + [anon_sym__Atomic] = ACTIONS(2355), + [anon_sym_mutable] = ACTIONS(2355), + [anon_sym_constexpr] = ACTIONS(2355), + [anon_sym_constinit] = ACTIONS(2355), + [anon_sym_consteval] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [sym_primitive_type] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_switch] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_goto] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_compl] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2357), + [anon_sym_PLUS_PLUS] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2355), + [sym_number_literal] = ACTIONS(2357), + [anon_sym_L_SQUOTE] = ACTIONS(2357), + [anon_sym_u_SQUOTE] = ACTIONS(2357), + [anon_sym_U_SQUOTE] = ACTIONS(2357), + [anon_sym_u8_SQUOTE] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_L_DQUOTE] = ACTIONS(2357), + [anon_sym_u_DQUOTE] = ACTIONS(2357), + [anon_sym_U_DQUOTE] = ACTIONS(2357), + [anon_sym_u8_DQUOTE] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_null] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2355), + [anon_sym_decltype] = ACTIONS(2355), + [anon_sym_virtual] = ACTIONS(2355), + [anon_sym_typename] = ACTIONS(2355), + [anon_sym_template] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_delete] = ACTIONS(2355), + [anon_sym_throw] = ACTIONS(2355), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(3096), + [anon_sym_R_DQUOTE] = ACTIONS(2357), + [anon_sym_LR_DQUOTE] = ACTIONS(2357), + [anon_sym_uR_DQUOTE] = ACTIONS(2357), + [anon_sym_UR_DQUOTE] = ACTIONS(2357), + [anon_sym_u8R_DQUOTE] = ACTIONS(2357), + [anon_sym_co_await] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_requires] = ACTIONS(2355), + [sym_this] = ACTIONS(2355), + [sym_nullptr] = ACTIONS(2355), + }, + [1103] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5344), + [sym__abstract_declarator] = STATE(5666), + [sym_parenthesized_declarator] = STATE(5152), + [sym_abstract_parenthesized_declarator] = STATE(5097), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_abstract_pointer_declarator] = STATE(5097), + [sym_function_declarator] = STATE(5152), + [sym_abstract_function_declarator] = STATE(5097), + [sym_array_declarator] = STATE(5152), + [sym_abstract_array_declarator] = STATE(5097), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_list] = STATE(4350), + [sym_parameter_declaration] = STATE(5821), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5821), + [sym_variadic_parameter_declaration] = STATE(5821), + [sym_reference_declarator] = STATE(5152), + [sym_abstract_reference_declarator] = STATE(5097), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(3418), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4923), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + }, + [1104] = { + [sym_type_qualifier] = STATE(1110), + [sym__expression] = STATE(3973), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1105] = { + [sym_type_qualifier] = STATE(1111), + [sym__expression] = STATE(3877), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1111), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1106] = { + [sym_type_qualifier] = STATE(1121), + [sym__expression] = STATE(3876), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1121), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1107] = { + [sym_identifier] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_typedef] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2386), + [anon_sym___declspec] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_inline] = ACTIONS(2384), + [anon_sym_thread_local] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_volatile] = ACTIONS(2384), + [anon_sym_restrict] = ACTIONS(2384), + [anon_sym__Atomic] = ACTIONS(2384), + [anon_sym_mutable] = ACTIONS(2384), + [anon_sym_constexpr] = ACTIONS(2384), + [anon_sym_constinit] = ACTIONS(2384), + [anon_sym_consteval] = ACTIONS(2384), + [anon_sym_signed] = ACTIONS(2384), + [anon_sym_unsigned] = ACTIONS(2384), + [anon_sym_long] = ACTIONS(2384), + [anon_sym_short] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_goto] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2384), + [anon_sym_compl] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2386), + [anon_sym_L_SQUOTE] = ACTIONS(2386), + [anon_sym_u_SQUOTE] = ACTIONS(2386), + [anon_sym_U_SQUOTE] = ACTIONS(2386), + [anon_sym_u8_SQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_L_DQUOTE] = ACTIONS(2386), + [anon_sym_u_DQUOTE] = ACTIONS(2386), + [anon_sym_U_DQUOTE] = ACTIONS(2386), + [anon_sym_u8_DQUOTE] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2384), + [anon_sym_decltype] = ACTIONS(2384), + [anon_sym_virtual] = ACTIONS(2384), + [anon_sym_typename] = ACTIONS(2384), + [anon_sym_template] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_co_return] = ACTIONS(2384), + [anon_sym_co_yield] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_R_DQUOTE] = ACTIONS(2386), + [anon_sym_LR_DQUOTE] = ACTIONS(2386), + [anon_sym_uR_DQUOTE] = ACTIONS(2386), + [anon_sym_UR_DQUOTE] = ACTIONS(2386), + [anon_sym_u8R_DQUOTE] = ACTIONS(2386), + [anon_sym_co_await] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_requires] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_nullptr] = ACTIONS(2384), + }, + [1108] = { + [sym_type_qualifier] = STATE(1116), + [sym__expression] = STATE(3840), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1116), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1109] = { + [sym_type_qualifier] = STATE(1118), + [sym__expression] = STATE(3835), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1110] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3837), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1111] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3866), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1112] = { + [sym_identifier] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2327), + [anon_sym_BANG] = ACTIONS(2327), + [anon_sym_TILDE] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_AMP] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_typedef] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym___attribute__] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2327), + [anon_sym___declspec] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_static] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_inline] = ACTIONS(2329), + [anon_sym_thread_local] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [anon_sym_volatile] = ACTIONS(2329), + [anon_sym_restrict] = ACTIONS(2329), + [anon_sym__Atomic] = ACTIONS(2329), + [anon_sym_mutable] = ACTIONS(2329), + [anon_sym_constexpr] = ACTIONS(2329), + [anon_sym_constinit] = ACTIONS(2329), + [anon_sym_consteval] = ACTIONS(2329), + [anon_sym_signed] = ACTIONS(2329), + [anon_sym_unsigned] = ACTIONS(2329), + [anon_sym_long] = ACTIONS(2329), + [anon_sym_short] = ACTIONS(2329), + [sym_primitive_type] = ACTIONS(2329), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_class] = ACTIONS(2329), + [anon_sym_struct] = ACTIONS(2329), + [anon_sym_union] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_switch] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_goto] = ACTIONS(2329), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_compl] = ACTIONS(2329), + [anon_sym_DASH_DASH] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(2327), + [anon_sym_sizeof] = ACTIONS(2329), + [sym_number_literal] = ACTIONS(2327), + [anon_sym_L_SQUOTE] = ACTIONS(2327), + [anon_sym_u_SQUOTE] = ACTIONS(2327), + [anon_sym_U_SQUOTE] = ACTIONS(2327), + [anon_sym_u8_SQUOTE] = ACTIONS(2327), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_L_DQUOTE] = ACTIONS(2327), + [anon_sym_u_DQUOTE] = ACTIONS(2327), + [anon_sym_U_DQUOTE] = ACTIONS(2327), + [anon_sym_u8_DQUOTE] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym_true] = ACTIONS(2329), + [sym_false] = ACTIONS(2329), + [sym_null] = ACTIONS(2329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2329), + [anon_sym_decltype] = ACTIONS(2329), + [anon_sym_virtual] = ACTIONS(2329), + [anon_sym_typename] = ACTIONS(2329), + [anon_sym_template] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_delete] = ACTIONS(2329), + [anon_sym_throw] = ACTIONS(2329), + [anon_sym_co_return] = ACTIONS(2329), + [anon_sym_co_yield] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_R_DQUOTE] = ACTIONS(2327), + [anon_sym_LR_DQUOTE] = ACTIONS(2327), + [anon_sym_uR_DQUOTE] = ACTIONS(2327), + [anon_sym_UR_DQUOTE] = ACTIONS(2327), + [anon_sym_u8R_DQUOTE] = ACTIONS(2327), + [anon_sym_co_await] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_requires] = ACTIONS(2329), + [sym_this] = ACTIONS(2329), + [sym_nullptr] = ACTIONS(2329), + }, + [1113] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1114] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3868), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1115] = { + [sym_type_qualifier] = STATE(1114), + [sym__expression] = STATE(3874), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1114), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1116] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3924), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1117] = { + [sym_identifier] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_BANG] = ACTIONS(2335), + [anon_sym_TILDE] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_typedef] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym___attribute__] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2335), + [anon_sym___declspec] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_thread_local] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_restrict] = ACTIONS(2337), + [anon_sym__Atomic] = ACTIONS(2337), + [anon_sym_mutable] = ACTIONS(2337), + [anon_sym_constexpr] = ACTIONS(2337), + [anon_sym_constinit] = ACTIONS(2337), + [anon_sym_consteval] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [sym_primitive_type] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_switch] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_compl] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2337), + [sym_number_literal] = ACTIONS(2335), + [anon_sym_L_SQUOTE] = ACTIONS(2335), + [anon_sym_u_SQUOTE] = ACTIONS(2335), + [anon_sym_U_SQUOTE] = ACTIONS(2335), + [anon_sym_u8_SQUOTE] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_L_DQUOTE] = ACTIONS(2335), + [anon_sym_u_DQUOTE] = ACTIONS(2335), + [anon_sym_U_DQUOTE] = ACTIONS(2335), + [anon_sym_u8_DQUOTE] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_null] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2337), + [anon_sym_decltype] = ACTIONS(2337), + [anon_sym_virtual] = ACTIONS(2337), + [anon_sym_typename] = ACTIONS(2337), + [anon_sym_template] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_delete] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2337), + [anon_sym_co_return] = ACTIONS(2337), + [anon_sym_co_yield] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_R_DQUOTE] = ACTIONS(2335), + [anon_sym_LR_DQUOTE] = ACTIONS(2335), + [anon_sym_uR_DQUOTE] = ACTIONS(2335), + [anon_sym_UR_DQUOTE] = ACTIONS(2335), + [anon_sym_u8R_DQUOTE] = ACTIONS(2335), + [anon_sym_co_await] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_requires] = ACTIONS(2337), + [sym_this] = ACTIONS(2337), + [sym_nullptr] = ACTIONS(2337), + }, + [1118] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3904), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1119] = { + [sym_type_qualifier] = STATE(1113), + [sym__expression] = STATE(3978), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1120] = { + [sym_type_qualifier] = STATE(1110), + [sym__expression] = STATE(3973), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(1110), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1121] = { + [sym_type_qualifier] = STATE(2569), + [sym__expression] = STATE(3957), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_type_definition_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_volatile] = ACTIONS(3122), + [anon_sym_restrict] = ACTIONS(3122), + [anon_sym__Atomic] = ACTIONS(3122), + [anon_sym_mutable] = ACTIONS(3122), + [anon_sym_constexpr] = ACTIONS(3122), + [anon_sym_constinit] = ACTIONS(3122), + [anon_sym_consteval] = ACTIONS(3122), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1122] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1123] = { + [sym_identifier] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_R_DQUOTE] = ACTIONS(2501), + [anon_sym_LR_DQUOTE] = ACTIONS(2501), + [anon_sym_uR_DQUOTE] = ACTIONS(2501), + [anon_sym_UR_DQUOTE] = ACTIONS(2501), + [anon_sym_u8R_DQUOTE] = ACTIONS(2501), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + }, + [1124] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1125] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1126] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1127] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1128] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1129] = { + [sym_identifier] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_R_DQUOTE] = ACTIONS(2625), + [anon_sym_LR_DQUOTE] = ACTIONS(2625), + [anon_sym_uR_DQUOTE] = ACTIONS(2625), + [anon_sym_UR_DQUOTE] = ACTIONS(2625), + [anon_sym_u8R_DQUOTE] = ACTIONS(2625), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + }, + [1130] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1131] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1132] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1133] = { + [sym_identifier] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_R_DQUOTE] = ACTIONS(2633), + [anon_sym_LR_DQUOTE] = ACTIONS(2633), + [anon_sym_uR_DQUOTE] = ACTIONS(2633), + [anon_sym_UR_DQUOTE] = ACTIONS(2633), + [anon_sym_u8R_DQUOTE] = ACTIONS(2633), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + }, + [1134] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1135] = { + [sym_identifier] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_R_DQUOTE] = ACTIONS(2637), + [anon_sym_LR_DQUOTE] = ACTIONS(2637), + [anon_sym_uR_DQUOTE] = ACTIONS(2637), + [anon_sym_UR_DQUOTE] = ACTIONS(2637), + [anon_sym_u8R_DQUOTE] = ACTIONS(2637), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + }, + [1136] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1137] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1138] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1139] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1140] = { + [sym_identifier] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_R_DQUOTE] = ACTIONS(2565), + [anon_sym_LR_DQUOTE] = ACTIONS(2565), + [anon_sym_uR_DQUOTE] = ACTIONS(2565), + [anon_sym_UR_DQUOTE] = ACTIONS(2565), + [anon_sym_u8R_DQUOTE] = ACTIONS(2565), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + }, + [1141] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1142] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1143] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1144] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1145] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1146] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1147] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1148] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1149] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1150] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1151] = { + [sym_identifier] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [1152] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1153] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1154] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1155] = { + [sym_identifier] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_R_DQUOTE] = ACTIONS(2585), + [anon_sym_LR_DQUOTE] = ACTIONS(2585), + [anon_sym_uR_DQUOTE] = ACTIONS(2585), + [anon_sym_UR_DQUOTE] = ACTIONS(2585), + [anon_sym_u8R_DQUOTE] = ACTIONS(2585), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + }, + [1156] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1157] = { + [sym_identifier] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_R_DQUOTE] = ACTIONS(2605), + [anon_sym_LR_DQUOTE] = ACTIONS(2605), + [anon_sym_uR_DQUOTE] = ACTIONS(2605), + [anon_sym_UR_DQUOTE] = ACTIONS(2605), + [anon_sym_u8R_DQUOTE] = ACTIONS(2605), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + }, + [1158] = { + [sym_identifier] = ACTIONS(2577), + [anon_sym_LPAREN2] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_typedef] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym___attribute__] = ACTIONS(2577), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2579), + [anon_sym___declspec] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_register] = ACTIONS(2577), + [anon_sym_inline] = ACTIONS(2577), + [anon_sym_thread_local] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_volatile] = ACTIONS(2577), + [anon_sym_restrict] = ACTIONS(2577), + [anon_sym__Atomic] = ACTIONS(2577), + [anon_sym_mutable] = ACTIONS(2577), + [anon_sym_constexpr] = ACTIONS(2577), + [anon_sym_constinit] = ACTIONS(2577), + [anon_sym_consteval] = ACTIONS(2577), + [anon_sym_signed] = ACTIONS(2577), + [anon_sym_unsigned] = ACTIONS(2577), + [anon_sym_long] = ACTIONS(2577), + [anon_sym_short] = ACTIONS(2577), + [sym_primitive_type] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_class] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_else] = ACTIONS(2577), + [anon_sym_switch] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_do] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_goto] = ACTIONS(2577), + [anon_sym_not] = ACTIONS(2577), + [anon_sym_compl] = ACTIONS(2577), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_sizeof] = ACTIONS(2577), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_L_SQUOTE] = ACTIONS(2579), + [anon_sym_u_SQUOTE] = ACTIONS(2579), + [anon_sym_U_SQUOTE] = ACTIONS(2579), + [anon_sym_u8_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_L_DQUOTE] = ACTIONS(2579), + [anon_sym_u_DQUOTE] = ACTIONS(2579), + [anon_sym_U_DQUOTE] = ACTIONS(2579), + [anon_sym_u8_DQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [sym_true] = ACTIONS(2577), + [sym_false] = ACTIONS(2577), + [sym_null] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2577), + [anon_sym_decltype] = ACTIONS(2577), + [anon_sym_virtual] = ACTIONS(2577), + [anon_sym_typename] = ACTIONS(2577), + [anon_sym_template] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [anon_sym_delete] = ACTIONS(2577), + [anon_sym_throw] = ACTIONS(2577), + [anon_sym_co_return] = ACTIONS(2577), + [anon_sym_co_yield] = ACTIONS(2577), + [anon_sym_R_DQUOTE] = ACTIONS(2579), + [anon_sym_LR_DQUOTE] = ACTIONS(2579), + [anon_sym_uR_DQUOTE] = ACTIONS(2579), + [anon_sym_UR_DQUOTE] = ACTIONS(2579), + [anon_sym_u8R_DQUOTE] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2577), + [anon_sym_requires] = ACTIONS(2577), + [sym_this] = ACTIONS(2577), + [sym_nullptr] = ACTIONS(2577), + }, + [1159] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1160] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1161] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1162] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1163] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1164] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1165] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1166] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1167] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1168] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1169] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1170] = { + [sym_identifier] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_R_DQUOTE] = ACTIONS(2645), + [anon_sym_LR_DQUOTE] = ACTIONS(2645), + [anon_sym_uR_DQUOTE] = ACTIONS(2645), + [anon_sym_UR_DQUOTE] = ACTIONS(2645), + [anon_sym_u8R_DQUOTE] = ACTIONS(2645), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + }, + [1171] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1172] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1173] = { + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_R_DQUOTE] = ACTIONS(2617), + [anon_sym_LR_DQUOTE] = ACTIONS(2617), + [anon_sym_uR_DQUOTE] = ACTIONS(2617), + [anon_sym_UR_DQUOTE] = ACTIONS(2617), + [anon_sym_u8R_DQUOTE] = ACTIONS(2617), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + }, + [1174] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1175] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1176] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1177] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1178] = { + [sym_identifier] = ACTIONS(2465), + [anon_sym_LPAREN2] = ACTIONS(2467), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_typedef] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym___attribute__] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2467), + [anon_sym___declspec] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_static] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_thread_local] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_volatile] = ACTIONS(2465), + [anon_sym_restrict] = ACTIONS(2465), + [anon_sym__Atomic] = ACTIONS(2465), + [anon_sym_mutable] = ACTIONS(2465), + [anon_sym_constexpr] = ACTIONS(2465), + [anon_sym_constinit] = ACTIONS(2465), + [anon_sym_consteval] = ACTIONS(2465), + [anon_sym_signed] = ACTIONS(2465), + [anon_sym_unsigned] = ACTIONS(2465), + [anon_sym_long] = ACTIONS(2465), + [anon_sym_short] = ACTIONS(2465), + [sym_primitive_type] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_switch] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_goto] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_compl] = ACTIONS(2465), + [anon_sym_DASH_DASH] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(2467), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_number_literal] = ACTIONS(2467), + [anon_sym_L_SQUOTE] = ACTIONS(2467), + [anon_sym_u_SQUOTE] = ACTIONS(2467), + [anon_sym_U_SQUOTE] = ACTIONS(2467), + [anon_sym_u8_SQUOTE] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_L_DQUOTE] = ACTIONS(2467), + [anon_sym_u_DQUOTE] = ACTIONS(2467), + [anon_sym_U_DQUOTE] = ACTIONS(2467), + [anon_sym_u8_DQUOTE] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_null] = ACTIONS(2465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2465), + [anon_sym_decltype] = ACTIONS(2465), + [anon_sym_virtual] = ACTIONS(2465), + [anon_sym_typename] = ACTIONS(2465), + [anon_sym_template] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_delete] = ACTIONS(2465), + [anon_sym_throw] = ACTIONS(2465), + [anon_sym_co_return] = ACTIONS(2465), + [anon_sym_co_yield] = ACTIONS(2465), + [anon_sym_R_DQUOTE] = ACTIONS(2467), + [anon_sym_LR_DQUOTE] = ACTIONS(2467), + [anon_sym_uR_DQUOTE] = ACTIONS(2467), + [anon_sym_UR_DQUOTE] = ACTIONS(2467), + [anon_sym_u8R_DQUOTE] = ACTIONS(2467), + [anon_sym_co_await] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_requires] = ACTIONS(2465), + [sym_this] = ACTIONS(2465), + [sym_nullptr] = ACTIONS(2465), + }, + [1179] = { + [sym_identifier] = ACTIONS(2469), + [anon_sym_LPAREN2] = ACTIONS(2471), + [anon_sym_BANG] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_typedef] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym___attribute__] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2471), + [anon_sym___declspec] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_thread_local] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_volatile] = ACTIONS(2469), + [anon_sym_restrict] = ACTIONS(2469), + [anon_sym__Atomic] = ACTIONS(2469), + [anon_sym_mutable] = ACTIONS(2469), + [anon_sym_constexpr] = ACTIONS(2469), + [anon_sym_constinit] = ACTIONS(2469), + [anon_sym_consteval] = ACTIONS(2469), + [anon_sym_signed] = ACTIONS(2469), + [anon_sym_unsigned] = ACTIONS(2469), + [anon_sym_long] = ACTIONS(2469), + [anon_sym_short] = ACTIONS(2469), + [sym_primitive_type] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_switch] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_goto] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_compl] = ACTIONS(2469), + [anon_sym_DASH_DASH] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(2471), + [anon_sym_sizeof] = ACTIONS(2469), + [sym_number_literal] = ACTIONS(2471), + [anon_sym_L_SQUOTE] = ACTIONS(2471), + [anon_sym_u_SQUOTE] = ACTIONS(2471), + [anon_sym_U_SQUOTE] = ACTIONS(2471), + [anon_sym_u8_SQUOTE] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_L_DQUOTE] = ACTIONS(2471), + [anon_sym_u_DQUOTE] = ACTIONS(2471), + [anon_sym_U_DQUOTE] = ACTIONS(2471), + [anon_sym_u8_DQUOTE] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_null] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2469), + [anon_sym_decltype] = ACTIONS(2469), + [anon_sym_virtual] = ACTIONS(2469), + [anon_sym_typename] = ACTIONS(2469), + [anon_sym_template] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_delete] = ACTIONS(2469), + [anon_sym_throw] = ACTIONS(2469), + [anon_sym_co_return] = ACTIONS(2469), + [anon_sym_co_yield] = ACTIONS(2469), + [anon_sym_R_DQUOTE] = ACTIONS(2471), + [anon_sym_LR_DQUOTE] = ACTIONS(2471), + [anon_sym_uR_DQUOTE] = ACTIONS(2471), + [anon_sym_UR_DQUOTE] = ACTIONS(2471), + [anon_sym_u8R_DQUOTE] = ACTIONS(2471), + [anon_sym_co_await] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_requires] = ACTIONS(2469), + [sym_this] = ACTIONS(2469), + [sym_nullptr] = ACTIONS(2469), + }, + [1180] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1181] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1182] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1183] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1184] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1185] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1186] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1187] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1188] = { + [sym_identifier] = ACTIONS(2475), + [anon_sym_LPAREN2] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_TILDE] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_typedef] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym___attribute__] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), + [anon_sym___declspec] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_inline] = ACTIONS(2475), + [anon_sym_thread_local] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_volatile] = ACTIONS(2475), + [anon_sym_restrict] = ACTIONS(2475), + [anon_sym__Atomic] = ACTIONS(2475), + [anon_sym_mutable] = ACTIONS(2475), + [anon_sym_constexpr] = ACTIONS(2475), + [anon_sym_constinit] = ACTIONS(2475), + [anon_sym_consteval] = ACTIONS(2475), + [anon_sym_signed] = ACTIONS(2475), + [anon_sym_unsigned] = ACTIONS(2475), + [anon_sym_long] = ACTIONS(2475), + [anon_sym_short] = ACTIONS(2475), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_class] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_switch] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2475), + [anon_sym_compl] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2477), + [anon_sym_PLUS_PLUS] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2475), + [sym_number_literal] = ACTIONS(2477), + [anon_sym_L_SQUOTE] = ACTIONS(2477), + [anon_sym_u_SQUOTE] = ACTIONS(2477), + [anon_sym_U_SQUOTE] = ACTIONS(2477), + [anon_sym_u8_SQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2477), + [anon_sym_L_DQUOTE] = ACTIONS(2477), + [anon_sym_u_DQUOTE] = ACTIONS(2477), + [anon_sym_U_DQUOTE] = ACTIONS(2477), + [anon_sym_u8_DQUOTE] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2475), + [anon_sym_decltype] = ACTIONS(2475), + [anon_sym_virtual] = ACTIONS(2475), + [anon_sym_typename] = ACTIONS(2475), + [anon_sym_template] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_delete] = ACTIONS(2475), + [anon_sym_throw] = ACTIONS(2475), + [anon_sym_co_return] = ACTIONS(2475), + [anon_sym_co_yield] = ACTIONS(2475), + [anon_sym_R_DQUOTE] = ACTIONS(2477), + [anon_sym_LR_DQUOTE] = ACTIONS(2477), + [anon_sym_uR_DQUOTE] = ACTIONS(2477), + [anon_sym_UR_DQUOTE] = ACTIONS(2477), + [anon_sym_u8R_DQUOTE] = ACTIONS(2477), + [anon_sym_co_await] = ACTIONS(2475), + [anon_sym_new] = ACTIONS(2475), + [anon_sym_requires] = ACTIONS(2475), + [sym_this] = ACTIONS(2475), + [sym_nullptr] = ACTIONS(2475), + }, + [1189] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1190] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1191] = { + [sym_identifier] = ACTIONS(2479), + [anon_sym_LPAREN2] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_typedef] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym___attribute__] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), + [anon_sym___declspec] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_register] = ACTIONS(2479), + [anon_sym_inline] = ACTIONS(2479), + [anon_sym_thread_local] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_volatile] = ACTIONS(2479), + [anon_sym_restrict] = ACTIONS(2479), + [anon_sym__Atomic] = ACTIONS(2479), + [anon_sym_mutable] = ACTIONS(2479), + [anon_sym_constexpr] = ACTIONS(2479), + [anon_sym_constinit] = ACTIONS(2479), + [anon_sym_consteval] = ACTIONS(2479), + [anon_sym_signed] = ACTIONS(2479), + [anon_sym_unsigned] = ACTIONS(2479), + [anon_sym_long] = ACTIONS(2479), + [anon_sym_short] = ACTIONS(2479), + [sym_primitive_type] = ACTIONS(2479), + [anon_sym_enum] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2479), + [anon_sym_switch] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_do] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_goto] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_compl] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_sizeof] = ACTIONS(2479), + [sym_number_literal] = ACTIONS(2481), + [anon_sym_L_SQUOTE] = ACTIONS(2481), + [anon_sym_u_SQUOTE] = ACTIONS(2481), + [anon_sym_U_SQUOTE] = ACTIONS(2481), + [anon_sym_u8_SQUOTE] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_L_DQUOTE] = ACTIONS(2481), + [anon_sym_u_DQUOTE] = ACTIONS(2481), + [anon_sym_U_DQUOTE] = ACTIONS(2481), + [anon_sym_u8_DQUOTE] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2479), + [anon_sym_decltype] = ACTIONS(2479), + [anon_sym_virtual] = ACTIONS(2479), + [anon_sym_typename] = ACTIONS(2479), + [anon_sym_template] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [anon_sym_delete] = ACTIONS(2479), + [anon_sym_throw] = ACTIONS(2479), + [anon_sym_co_return] = ACTIONS(2479), + [anon_sym_co_yield] = ACTIONS(2479), + [anon_sym_R_DQUOTE] = ACTIONS(2481), + [anon_sym_LR_DQUOTE] = ACTIONS(2481), + [anon_sym_uR_DQUOTE] = ACTIONS(2481), + [anon_sym_UR_DQUOTE] = ACTIONS(2481), + [anon_sym_u8R_DQUOTE] = ACTIONS(2481), + [anon_sym_co_await] = ACTIONS(2479), + [anon_sym_new] = ACTIONS(2479), + [anon_sym_requires] = ACTIONS(2479), + [sym_this] = ACTIONS(2479), + [sym_nullptr] = ACTIONS(2479), + }, + [1192] = { + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_typedef] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym___attribute__] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), + [anon_sym___declspec] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_register] = ACTIONS(2483), + [anon_sym_inline] = ACTIONS(2483), + [anon_sym_thread_local] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_volatile] = ACTIONS(2483), + [anon_sym_restrict] = ACTIONS(2483), + [anon_sym__Atomic] = ACTIONS(2483), + [anon_sym_mutable] = ACTIONS(2483), + [anon_sym_constexpr] = ACTIONS(2483), + [anon_sym_constinit] = ACTIONS(2483), + [anon_sym_consteval] = ACTIONS(2483), + [anon_sym_signed] = ACTIONS(2483), + [anon_sym_unsigned] = ACTIONS(2483), + [anon_sym_long] = ACTIONS(2483), + [anon_sym_short] = ACTIONS(2483), + [sym_primitive_type] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_class] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_switch] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_do] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_goto] = ACTIONS(2483), + [anon_sym_not] = ACTIONS(2483), + [anon_sym_compl] = ACTIONS(2483), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_sizeof] = ACTIONS(2483), + [sym_number_literal] = ACTIONS(2485), + [anon_sym_L_SQUOTE] = ACTIONS(2485), + [anon_sym_u_SQUOTE] = ACTIONS(2485), + [anon_sym_U_SQUOTE] = ACTIONS(2485), + [anon_sym_u8_SQUOTE] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_L_DQUOTE] = ACTIONS(2485), + [anon_sym_u_DQUOTE] = ACTIONS(2485), + [anon_sym_U_DQUOTE] = ACTIONS(2485), + [anon_sym_u8_DQUOTE] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2483), + [anon_sym_decltype] = ACTIONS(2483), + [anon_sym_virtual] = ACTIONS(2483), + [anon_sym_typename] = ACTIONS(2483), + [anon_sym_template] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [anon_sym_delete] = ACTIONS(2483), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_co_return] = ACTIONS(2483), + [anon_sym_co_yield] = ACTIONS(2483), + [anon_sym_R_DQUOTE] = ACTIONS(2485), + [anon_sym_LR_DQUOTE] = ACTIONS(2485), + [anon_sym_uR_DQUOTE] = ACTIONS(2485), + [anon_sym_UR_DQUOTE] = ACTIONS(2485), + [anon_sym_u8R_DQUOTE] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2483), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_requires] = ACTIONS(2483), + [sym_this] = ACTIONS(2483), + [sym_nullptr] = ACTIONS(2483), + }, + [1193] = { + [sym_identifier] = ACTIONS(2487), + [anon_sym_LPAREN2] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_typedef] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym___attribute__] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), + [anon_sym___declspec] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_register] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_thread_local] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_volatile] = ACTIONS(2487), + [anon_sym_restrict] = ACTIONS(2487), + [anon_sym__Atomic] = ACTIONS(2487), + [anon_sym_mutable] = ACTIONS(2487), + [anon_sym_constexpr] = ACTIONS(2487), + [anon_sym_constinit] = ACTIONS(2487), + [anon_sym_consteval] = ACTIONS(2487), + [anon_sym_signed] = ACTIONS(2487), + [anon_sym_unsigned] = ACTIONS(2487), + [anon_sym_long] = ACTIONS(2487), + [anon_sym_short] = ACTIONS(2487), + [sym_primitive_type] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_do] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_goto] = ACTIONS(2487), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_compl] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_number_literal] = ACTIONS(2489), + [anon_sym_L_SQUOTE] = ACTIONS(2489), + [anon_sym_u_SQUOTE] = ACTIONS(2489), + [anon_sym_U_SQUOTE] = ACTIONS(2489), + [anon_sym_u8_SQUOTE] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_L_DQUOTE] = ACTIONS(2489), + [anon_sym_u_DQUOTE] = ACTIONS(2489), + [anon_sym_U_DQUOTE] = ACTIONS(2489), + [anon_sym_u8_DQUOTE] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2487), + [anon_sym_decltype] = ACTIONS(2487), + [anon_sym_virtual] = ACTIONS(2487), + [anon_sym_typename] = ACTIONS(2487), + [anon_sym_template] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_delete] = ACTIONS(2487), + [anon_sym_throw] = ACTIONS(2487), + [anon_sym_co_return] = ACTIONS(2487), + [anon_sym_co_yield] = ACTIONS(2487), + [anon_sym_R_DQUOTE] = ACTIONS(2489), + [anon_sym_LR_DQUOTE] = ACTIONS(2489), + [anon_sym_uR_DQUOTE] = ACTIONS(2489), + [anon_sym_UR_DQUOTE] = ACTIONS(2489), + [anon_sym_u8R_DQUOTE] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_requires] = ACTIONS(2487), + [sym_this] = ACTIONS(2487), + [sym_nullptr] = ACTIONS(2487), + }, + [1194] = { + [sym_identifier] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_TILDE] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_typedef] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym___attribute__] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), + [anon_sym___declspec] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_static] = ACTIONS(2491), + [anon_sym_register] = ACTIONS(2491), + [anon_sym_inline] = ACTIONS(2491), + [anon_sym_thread_local] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_volatile] = ACTIONS(2491), + [anon_sym_restrict] = ACTIONS(2491), + [anon_sym__Atomic] = ACTIONS(2491), + [anon_sym_mutable] = ACTIONS(2491), + [anon_sym_constexpr] = ACTIONS(2491), + [anon_sym_constinit] = ACTIONS(2491), + [anon_sym_consteval] = ACTIONS(2491), + [anon_sym_signed] = ACTIONS(2491), + [anon_sym_unsigned] = ACTIONS(2491), + [anon_sym_long] = ACTIONS(2491), + [anon_sym_short] = ACTIONS(2491), + [sym_primitive_type] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_class] = ACTIONS(2491), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2491), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_do] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_compl] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2493), + [anon_sym_PLUS_PLUS] = ACTIONS(2493), + [anon_sym_sizeof] = ACTIONS(2491), + [sym_number_literal] = ACTIONS(2493), + [anon_sym_L_SQUOTE] = ACTIONS(2493), + [anon_sym_u_SQUOTE] = ACTIONS(2493), + [anon_sym_U_SQUOTE] = ACTIONS(2493), + [anon_sym_u8_SQUOTE] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_L_DQUOTE] = ACTIONS(2493), + [anon_sym_u_DQUOTE] = ACTIONS(2493), + [anon_sym_U_DQUOTE] = ACTIONS(2493), + [anon_sym_u8_DQUOTE] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2491), + [anon_sym_decltype] = ACTIONS(2491), + [anon_sym_virtual] = ACTIONS(2491), + [anon_sym_typename] = ACTIONS(2491), + [anon_sym_template] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [anon_sym_delete] = ACTIONS(2491), + [anon_sym_throw] = ACTIONS(2491), + [anon_sym_co_return] = ACTIONS(2491), + [anon_sym_co_yield] = ACTIONS(2491), + [anon_sym_R_DQUOTE] = ACTIONS(2493), + [anon_sym_LR_DQUOTE] = ACTIONS(2493), + [anon_sym_uR_DQUOTE] = ACTIONS(2493), + [anon_sym_UR_DQUOTE] = ACTIONS(2493), + [anon_sym_u8R_DQUOTE] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2491), + [anon_sym_new] = ACTIONS(2491), + [anon_sym_requires] = ACTIONS(2491), + [sym_this] = ACTIONS(2491), + [sym_nullptr] = ACTIONS(2491), + }, + [1195] = { + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_R_DQUOTE] = ACTIONS(2621), + [anon_sym_LR_DQUOTE] = ACTIONS(2621), + [anon_sym_uR_DQUOTE] = ACTIONS(2621), + [anon_sym_UR_DQUOTE] = ACTIONS(2621), + [anon_sym_u8R_DQUOTE] = ACTIONS(2621), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + }, + [1196] = { + [sym_identifier] = ACTIONS(2495), + [anon_sym_LPAREN2] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_TILDE] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_typedef] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym___attribute__] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), + [anon_sym___declspec] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_register] = ACTIONS(2495), + [anon_sym_inline] = ACTIONS(2495), + [anon_sym_thread_local] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_volatile] = ACTIONS(2495), + [anon_sym_restrict] = ACTIONS(2495), + [anon_sym__Atomic] = ACTIONS(2495), + [anon_sym_mutable] = ACTIONS(2495), + [anon_sym_constexpr] = ACTIONS(2495), + [anon_sym_constinit] = ACTIONS(2495), + [anon_sym_consteval] = ACTIONS(2495), + [anon_sym_signed] = ACTIONS(2495), + [anon_sym_unsigned] = ACTIONS(2495), + [anon_sym_long] = ACTIONS(2495), + [anon_sym_short] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_class] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_else] = ACTIONS(2495), + [anon_sym_switch] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_do] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_goto] = ACTIONS(2495), + [anon_sym_not] = ACTIONS(2495), + [anon_sym_compl] = ACTIONS(2495), + [anon_sym_DASH_DASH] = ACTIONS(2497), + [anon_sym_PLUS_PLUS] = ACTIONS(2497), + [anon_sym_sizeof] = ACTIONS(2495), + [sym_number_literal] = ACTIONS(2497), + [anon_sym_L_SQUOTE] = ACTIONS(2497), + [anon_sym_u_SQUOTE] = ACTIONS(2497), + [anon_sym_U_SQUOTE] = ACTIONS(2497), + [anon_sym_u8_SQUOTE] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_L_DQUOTE] = ACTIONS(2497), + [anon_sym_u_DQUOTE] = ACTIONS(2497), + [anon_sym_U_DQUOTE] = ACTIONS(2497), + [anon_sym_u8_DQUOTE] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2495), + [anon_sym_decltype] = ACTIONS(2495), + [anon_sym_virtual] = ACTIONS(2495), + [anon_sym_typename] = ACTIONS(2495), + [anon_sym_template] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [anon_sym_delete] = ACTIONS(2495), + [anon_sym_throw] = ACTIONS(2495), + [anon_sym_co_return] = ACTIONS(2495), + [anon_sym_co_yield] = ACTIONS(2495), + [anon_sym_R_DQUOTE] = ACTIONS(2497), + [anon_sym_LR_DQUOTE] = ACTIONS(2497), + [anon_sym_uR_DQUOTE] = ACTIONS(2497), + [anon_sym_UR_DQUOTE] = ACTIONS(2497), + [anon_sym_u8R_DQUOTE] = ACTIONS(2497), + [anon_sym_co_await] = ACTIONS(2495), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_requires] = ACTIONS(2495), + [sym_this] = ACTIONS(2495), + [sym_nullptr] = ACTIONS(2495), + }, + [1197] = { + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_R_DQUOTE] = ACTIONS(2569), + [anon_sym_LR_DQUOTE] = ACTIONS(2569), + [anon_sym_uR_DQUOTE] = ACTIONS(2569), + [anon_sym_UR_DQUOTE] = ACTIONS(2569), + [anon_sym_u8R_DQUOTE] = ACTIONS(2569), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + }, + [1198] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1204), + [sym_compound_requirement] = STATE(1204), + [sym__requirement] = STATE(1204), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1204), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1199] = { + [sym_identifier] = ACTIONS(3071), + [anon_sym_LPAREN2] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3071), + [anon_sym___attribute__] = ACTIONS(3071), + [anon_sym_COLON_COLON] = ACTIONS(3073), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3073), + [anon_sym___declspec] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_static] = ACTIONS(3071), + [anon_sym_register] = ACTIONS(3071), + [anon_sym_inline] = ACTIONS(3071), + [anon_sym_thread_local] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3071), + [anon_sym_volatile] = ACTIONS(3071), + [anon_sym_restrict] = ACTIONS(3071), + [anon_sym__Atomic] = ACTIONS(3071), + [anon_sym_mutable] = ACTIONS(3071), + [anon_sym_constexpr] = ACTIONS(3071), + [anon_sym_constinit] = ACTIONS(3071), + [anon_sym_consteval] = ACTIONS(3071), + [anon_sym_signed] = ACTIONS(3071), + [anon_sym_unsigned] = ACTIONS(3071), + [anon_sym_long] = ACTIONS(3071), + [anon_sym_short] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3071), + [anon_sym_class] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3071), + [anon_sym_union] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_switch] = ACTIONS(3071), + [anon_sym_case] = ACTIONS(3071), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_do] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_goto] = ACTIONS(3071), + [anon_sym_not] = ACTIONS(3071), + [anon_sym_compl] = ACTIONS(3071), + [anon_sym_DASH_DASH] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3073), + [anon_sym_sizeof] = ACTIONS(3071), + [sym_number_literal] = ACTIONS(3073), + [anon_sym_L_SQUOTE] = ACTIONS(3073), + [anon_sym_u_SQUOTE] = ACTIONS(3073), + [anon_sym_U_SQUOTE] = ACTIONS(3073), + [anon_sym_u8_SQUOTE] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3073), + [anon_sym_L_DQUOTE] = ACTIONS(3073), + [anon_sym_u_DQUOTE] = ACTIONS(3073), + [anon_sym_U_DQUOTE] = ACTIONS(3073), + [anon_sym_u8_DQUOTE] = ACTIONS(3073), + [anon_sym_DQUOTE] = ACTIONS(3073), + [sym_true] = ACTIONS(3071), + [sym_false] = ACTIONS(3071), + [sym_null] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3071), + [anon_sym_decltype] = ACTIONS(3071), + [anon_sym_virtual] = ACTIONS(3071), + [anon_sym_typename] = ACTIONS(3071), + [anon_sym_template] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [anon_sym_delete] = ACTIONS(3071), + [anon_sym_throw] = ACTIONS(3071), + [anon_sym_co_return] = ACTIONS(3071), + [anon_sym_co_yield] = ACTIONS(3071), + [anon_sym_R_DQUOTE] = ACTIONS(3073), + [anon_sym_LR_DQUOTE] = ACTIONS(3073), + [anon_sym_uR_DQUOTE] = ACTIONS(3073), + [anon_sym_UR_DQUOTE] = ACTIONS(3073), + [anon_sym_u8R_DQUOTE] = ACTIONS(3073), + [anon_sym_co_await] = ACTIONS(3071), + [anon_sym_new] = ACTIONS(3071), + [anon_sym_requires] = ACTIONS(3071), + [sym_this] = ACTIONS(3071), + [sym_nullptr] = ACTIONS(3071), + }, + [1200] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(2397), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_typedef] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym___attribute__] = ACTIONS(2395), + [anon_sym_COLON_COLON] = ACTIONS(2397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2397), + [anon_sym___declspec] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_thread_local] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_restrict] = ACTIONS(2395), + [anon_sym__Atomic] = ACTIONS(2395), + [anon_sym_mutable] = ACTIONS(2395), + [anon_sym_constexpr] = ACTIONS(2395), + [anon_sym_constinit] = ACTIONS(2395), + [anon_sym_consteval] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [sym_primitive_type] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_switch] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_goto] = ACTIONS(2395), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_compl] = ACTIONS(2395), + [anon_sym_DASH_DASH] = ACTIONS(2397), + [anon_sym_PLUS_PLUS] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2395), + [sym_number_literal] = ACTIONS(2397), + [anon_sym_L_SQUOTE] = ACTIONS(2397), + [anon_sym_u_SQUOTE] = ACTIONS(2397), + [anon_sym_U_SQUOTE] = ACTIONS(2397), + [anon_sym_u8_SQUOTE] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_L_DQUOTE] = ACTIONS(2397), + [anon_sym_u_DQUOTE] = ACTIONS(2397), + [anon_sym_U_DQUOTE] = ACTIONS(2397), + [anon_sym_u8_DQUOTE] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_null] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2395), + [anon_sym_decltype] = ACTIONS(2395), + [anon_sym_virtual] = ACTIONS(2395), + [anon_sym_typename] = ACTIONS(2395), + [anon_sym_template] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_delete] = ACTIONS(2395), + [anon_sym_throw] = ACTIONS(2395), + [anon_sym_co_return] = ACTIONS(2395), + [anon_sym_co_yield] = ACTIONS(2395), + [anon_sym_R_DQUOTE] = ACTIONS(2397), + [anon_sym_LR_DQUOTE] = ACTIONS(2397), + [anon_sym_uR_DQUOTE] = ACTIONS(2397), + [anon_sym_UR_DQUOTE] = ACTIONS(2397), + [anon_sym_u8R_DQUOTE] = ACTIONS(2397), + [anon_sym_co_await] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_requires] = ACTIONS(2395), + [sym_this] = ACTIONS(2395), + [sym_nullptr] = ACTIONS(2395), + }, + [1201] = { + [sym_identifier] = ACTIONS(2511), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2513), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_typedef] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym___attribute__] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2513), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), + [anon_sym___declspec] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_inline] = ACTIONS(2511), + [anon_sym_thread_local] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_volatile] = ACTIONS(2511), + [anon_sym_restrict] = ACTIONS(2511), + [anon_sym__Atomic] = ACTIONS(2511), + [anon_sym_mutable] = ACTIONS(2511), + [anon_sym_constexpr] = ACTIONS(2511), + [anon_sym_constinit] = ACTIONS(2511), + [anon_sym_consteval] = ACTIONS(2511), + [anon_sym_signed] = ACTIONS(2511), + [anon_sym_unsigned] = ACTIONS(2511), + [anon_sym_long] = ACTIONS(2511), + [anon_sym_short] = ACTIONS(2511), + [sym_primitive_type] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_switch] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2511), + [anon_sym_compl] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2513), + [anon_sym_sizeof] = ACTIONS(2511), + [sym_number_literal] = ACTIONS(2513), + [anon_sym_L_SQUOTE] = ACTIONS(2513), + [anon_sym_u_SQUOTE] = ACTIONS(2513), + [anon_sym_U_SQUOTE] = ACTIONS(2513), + [anon_sym_u8_SQUOTE] = ACTIONS(2513), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_L_DQUOTE] = ACTIONS(2513), + [anon_sym_u_DQUOTE] = ACTIONS(2513), + [anon_sym_U_DQUOTE] = ACTIONS(2513), + [anon_sym_u8_DQUOTE] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2513), + [sym_true] = ACTIONS(2511), + [sym_false] = ACTIONS(2511), + [sym_null] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2511), + [anon_sym_decltype] = ACTIONS(2511), + [anon_sym_virtual] = ACTIONS(2511), + [anon_sym_typename] = ACTIONS(2511), + [anon_sym_template] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_delete] = ACTIONS(2511), + [anon_sym_throw] = ACTIONS(2511), + [anon_sym_co_return] = ACTIONS(2511), + [anon_sym_co_yield] = ACTIONS(2511), + [anon_sym_R_DQUOTE] = ACTIONS(2513), + [anon_sym_LR_DQUOTE] = ACTIONS(2513), + [anon_sym_uR_DQUOTE] = ACTIONS(2513), + [anon_sym_UR_DQUOTE] = ACTIONS(2513), + [anon_sym_u8R_DQUOTE] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_requires] = ACTIONS(2511), + [sym_this] = ACTIONS(2511), + [sym_nullptr] = ACTIONS(2511), + }, + [1202] = { + [sym_identifier] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_R_DQUOTE] = ACTIONS(2505), + [anon_sym_LR_DQUOTE] = ACTIONS(2505), + [anon_sym_uR_DQUOTE] = ACTIONS(2505), + [anon_sym_UR_DQUOTE] = ACTIONS(2505), + [anon_sym_u8R_DQUOTE] = ACTIONS(2505), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + }, + [1203] = { + [sym_identifier] = ACTIONS(2507), + [anon_sym_LPAREN2] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_TILDE] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_typedef] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym___attribute__] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), + [anon_sym___declspec] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_inline] = ACTIONS(2507), + [anon_sym_thread_local] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_volatile] = ACTIONS(2507), + [anon_sym_restrict] = ACTIONS(2507), + [anon_sym__Atomic] = ACTIONS(2507), + [anon_sym_mutable] = ACTIONS(2507), + [anon_sym_constexpr] = ACTIONS(2507), + [anon_sym_constinit] = ACTIONS(2507), + [anon_sym_consteval] = ACTIONS(2507), + [anon_sym_signed] = ACTIONS(2507), + [anon_sym_unsigned] = ACTIONS(2507), + [anon_sym_long] = ACTIONS(2507), + [anon_sym_short] = ACTIONS(2507), + [sym_primitive_type] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_switch] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_not] = ACTIONS(2507), + [anon_sym_compl] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2509), + [anon_sym_sizeof] = ACTIONS(2507), + [sym_number_literal] = ACTIONS(2509), + [anon_sym_L_SQUOTE] = ACTIONS(2509), + [anon_sym_u_SQUOTE] = ACTIONS(2509), + [anon_sym_U_SQUOTE] = ACTIONS(2509), + [anon_sym_u8_SQUOTE] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_L_DQUOTE] = ACTIONS(2509), + [anon_sym_u_DQUOTE] = ACTIONS(2509), + [anon_sym_U_DQUOTE] = ACTIONS(2509), + [anon_sym_u8_DQUOTE] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_null] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2507), + [anon_sym_decltype] = ACTIONS(2507), + [anon_sym_virtual] = ACTIONS(2507), + [anon_sym_typename] = ACTIONS(2507), + [anon_sym_template] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_delete] = ACTIONS(2507), + [anon_sym_throw] = ACTIONS(2507), + [anon_sym_co_return] = ACTIONS(2507), + [anon_sym_co_yield] = ACTIONS(2507), + [anon_sym_R_DQUOTE] = ACTIONS(2509), + [anon_sym_LR_DQUOTE] = ACTIONS(2509), + [anon_sym_uR_DQUOTE] = ACTIONS(2509), + [anon_sym_UR_DQUOTE] = ACTIONS(2509), + [anon_sym_u8R_DQUOTE] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_requires] = ACTIONS(2507), + [sym_this] = ACTIONS(2507), + [sym_nullptr] = ACTIONS(2507), + }, + [1204] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1205] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1134), + [sym_compound_requirement] = STATE(1134), + [sym__requirement] = STATE(1134), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1134), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1206] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_R_DQUOTE] = ACTIONS(2561), + [anon_sym_LR_DQUOTE] = ACTIONS(2561), + [anon_sym_uR_DQUOTE] = ACTIONS(2561), + [anon_sym_UR_DQUOTE] = ACTIONS(2561), + [anon_sym_u8R_DQUOTE] = ACTIONS(2561), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + }, + [1207] = { + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2401), + [anon_sym_BANG] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2401), + [anon_sym_typedef] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym___attribute__] = ACTIONS(2399), + [anon_sym_COLON_COLON] = ACTIONS(2401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2401), + [anon_sym___declspec] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_thread_local] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_restrict] = ACTIONS(2399), + [anon_sym__Atomic] = ACTIONS(2399), + [anon_sym_mutable] = ACTIONS(2399), + [anon_sym_constexpr] = ACTIONS(2399), + [anon_sym_constinit] = ACTIONS(2399), + [anon_sym_consteval] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [sym_primitive_type] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_compl] = ACTIONS(2399), + [anon_sym_DASH_DASH] = ACTIONS(2401), + [anon_sym_PLUS_PLUS] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2399), + [sym_number_literal] = ACTIONS(2401), + [anon_sym_L_SQUOTE] = ACTIONS(2401), + [anon_sym_u_SQUOTE] = ACTIONS(2401), + [anon_sym_U_SQUOTE] = ACTIONS(2401), + [anon_sym_u8_SQUOTE] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_L_DQUOTE] = ACTIONS(2401), + [anon_sym_u_DQUOTE] = ACTIONS(2401), + [anon_sym_U_DQUOTE] = ACTIONS(2401), + [anon_sym_u8_DQUOTE] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_null] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2399), + [anon_sym_decltype] = ACTIONS(2399), + [anon_sym_virtual] = ACTIONS(2399), + [anon_sym_typename] = ACTIONS(2399), + [anon_sym_template] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_delete] = ACTIONS(2399), + [anon_sym_throw] = ACTIONS(2399), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2399), + [anon_sym_R_DQUOTE] = ACTIONS(2401), + [anon_sym_LR_DQUOTE] = ACTIONS(2401), + [anon_sym_uR_DQUOTE] = ACTIONS(2401), + [anon_sym_UR_DQUOTE] = ACTIONS(2401), + [anon_sym_u8R_DQUOTE] = ACTIONS(2401), + [anon_sym_co_await] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_requires] = ACTIONS(2399), + [sym_this] = ACTIONS(2399), + [sym_nullptr] = ACTIONS(2399), + }, + [1208] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1209] = { + [sym_identifier] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_R_DQUOTE] = ACTIONS(2613), + [anon_sym_LR_DQUOTE] = ACTIONS(2613), + [anon_sym_uR_DQUOTE] = ACTIONS(2613), + [anon_sym_UR_DQUOTE] = ACTIONS(2613), + [anon_sym_u8R_DQUOTE] = ACTIONS(2613), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + }, + [1210] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1211] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1212] = { + [sym_identifier] = ACTIONS(2519), + [anon_sym_LPAREN2] = ACTIONS(2521), + [anon_sym_BANG] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2521), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_typedef] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym___attribute__] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), + [anon_sym___declspec] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_inline] = ACTIONS(2519), + [anon_sym_thread_local] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [anon_sym_volatile] = ACTIONS(2519), + [anon_sym_restrict] = ACTIONS(2519), + [anon_sym__Atomic] = ACTIONS(2519), + [anon_sym_mutable] = ACTIONS(2519), + [anon_sym_constexpr] = ACTIONS(2519), + [anon_sym_constinit] = ACTIONS(2519), + [anon_sym_consteval] = ACTIONS(2519), + [anon_sym_signed] = ACTIONS(2519), + [anon_sym_unsigned] = ACTIONS(2519), + [anon_sym_long] = ACTIONS(2519), + [anon_sym_short] = ACTIONS(2519), + [sym_primitive_type] = ACTIONS(2519), + [anon_sym_enum] = ACTIONS(2519), + [anon_sym_class] = ACTIONS(2519), + [anon_sym_struct] = ACTIONS(2519), + [anon_sym_union] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_switch] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_compl] = ACTIONS(2519), + [anon_sym_DASH_DASH] = ACTIONS(2521), + [anon_sym_PLUS_PLUS] = ACTIONS(2521), + [anon_sym_sizeof] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2521), + [anon_sym_u_SQUOTE] = ACTIONS(2521), + [anon_sym_U_SQUOTE] = ACTIONS(2521), + [anon_sym_u8_SQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_L_DQUOTE] = ACTIONS(2521), + [anon_sym_u_DQUOTE] = ACTIONS(2521), + [anon_sym_U_DQUOTE] = ACTIONS(2521), + [anon_sym_u8_DQUOTE] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym_true] = ACTIONS(2519), + [sym_false] = ACTIONS(2519), + [sym_null] = ACTIONS(2519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2519), + [anon_sym_decltype] = ACTIONS(2519), + [anon_sym_virtual] = ACTIONS(2519), + [anon_sym_typename] = ACTIONS(2519), + [anon_sym_template] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_delete] = ACTIONS(2519), + [anon_sym_throw] = ACTIONS(2519), + [anon_sym_co_return] = ACTIONS(2519), + [anon_sym_co_yield] = ACTIONS(2519), + [anon_sym_R_DQUOTE] = ACTIONS(2521), + [anon_sym_LR_DQUOTE] = ACTIONS(2521), + [anon_sym_uR_DQUOTE] = ACTIONS(2521), + [anon_sym_UR_DQUOTE] = ACTIONS(2521), + [anon_sym_u8R_DQUOTE] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(2519), + [anon_sym_requires] = ACTIONS(2519), + [sym_this] = ACTIONS(2519), + [sym_nullptr] = ACTIONS(2519), + }, + [1213] = { + [sym_identifier] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [1214] = { + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_R_DQUOTE] = ACTIONS(2589), + [anon_sym_LR_DQUOTE] = ACTIONS(2589), + [anon_sym_uR_DQUOTE] = ACTIONS(2589), + [anon_sym_UR_DQUOTE] = ACTIONS(2589), + [anon_sym_u8R_DQUOTE] = ACTIONS(2589), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + }, + [1215] = { + [sym_identifier] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_R_DQUOTE] = ACTIONS(2553), + [anon_sym_LR_DQUOTE] = ACTIONS(2553), + [anon_sym_uR_DQUOTE] = ACTIONS(2553), + [anon_sym_UR_DQUOTE] = ACTIONS(2553), + [anon_sym_u8R_DQUOTE] = ACTIONS(2553), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + }, + [1216] = { + [sym_identifier] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_R_DQUOTE] = ACTIONS(2527), + [anon_sym_LR_DQUOTE] = ACTIONS(2527), + [anon_sym_uR_DQUOTE] = ACTIONS(2527), + [anon_sym_UR_DQUOTE] = ACTIONS(2527), + [anon_sym_u8R_DQUOTE] = ACTIONS(2527), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + }, + [1217] = { + [sym_identifier] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_R_DQUOTE] = ACTIONS(2557), + [anon_sym_LR_DQUOTE] = ACTIONS(2557), + [anon_sym_uR_DQUOTE] = ACTIONS(2557), + [anon_sym_UR_DQUOTE] = ACTIONS(2557), + [anon_sym_u8R_DQUOTE] = ACTIONS(2557), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + }, + [1218] = { + [sym_identifier] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_typedef] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym___attribute__] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2537), + [anon_sym___declspec] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_inline] = ACTIONS(2535), + [anon_sym_thread_local] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_volatile] = ACTIONS(2535), + [anon_sym_restrict] = ACTIONS(2535), + [anon_sym__Atomic] = ACTIONS(2535), + [anon_sym_mutable] = ACTIONS(2535), + [anon_sym_constexpr] = ACTIONS(2535), + [anon_sym_constinit] = ACTIONS(2535), + [anon_sym_consteval] = ACTIONS(2535), + [anon_sym_signed] = ACTIONS(2535), + [anon_sym_unsigned] = ACTIONS(2535), + [anon_sym_long] = ACTIONS(2535), + [anon_sym_short] = ACTIONS(2535), + [sym_primitive_type] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_class] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_switch] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_goto] = ACTIONS(2535), + [anon_sym_not] = ACTIONS(2535), + [anon_sym_compl] = ACTIONS(2535), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_sizeof] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_L_SQUOTE] = ACTIONS(2537), + [anon_sym_u_SQUOTE] = ACTIONS(2537), + [anon_sym_U_SQUOTE] = ACTIONS(2537), + [anon_sym_u8_SQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_L_DQUOTE] = ACTIONS(2537), + [anon_sym_u_DQUOTE] = ACTIONS(2537), + [anon_sym_U_DQUOTE] = ACTIONS(2537), + [anon_sym_u8_DQUOTE] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2535), + [anon_sym_decltype] = ACTIONS(2535), + [anon_sym_virtual] = ACTIONS(2535), + [anon_sym_typename] = ACTIONS(2535), + [anon_sym_template] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_delete] = ACTIONS(2535), + [anon_sym_throw] = ACTIONS(2535), + [anon_sym_co_return] = ACTIONS(2535), + [anon_sym_co_yield] = ACTIONS(2535), + [anon_sym_R_DQUOTE] = ACTIONS(2537), + [anon_sym_LR_DQUOTE] = ACTIONS(2537), + [anon_sym_uR_DQUOTE] = ACTIONS(2537), + [anon_sym_UR_DQUOTE] = ACTIONS(2537), + [anon_sym_u8R_DQUOTE] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_requires] = ACTIONS(2535), + [sym_this] = ACTIONS(2535), + [sym_nullptr] = ACTIONS(2535), + }, + [1219] = { + [sym_identifier] = ACTIONS(2539), + [anon_sym_LPAREN2] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym___attribute__] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2541), + [anon_sym___declspec] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_thread_local] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_mutable] = ACTIONS(2539), + [anon_sym_constexpr] = ACTIONS(2539), + [anon_sym_constinit] = ACTIONS(2539), + [anon_sym_consteval] = ACTIONS(2539), + [anon_sym_signed] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_not] = ACTIONS(2539), + [anon_sym_compl] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2541), + [anon_sym_u_DQUOTE] = ACTIONS(2541), + [anon_sym_U_DQUOTE] = ACTIONS(2541), + [anon_sym_u8_DQUOTE] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2539), + [anon_sym_decltype] = ACTIONS(2539), + [anon_sym_virtual] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2539), + [anon_sym_template] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_co_return] = ACTIONS(2539), + [anon_sym_co_yield] = ACTIONS(2539), + [anon_sym_R_DQUOTE] = ACTIONS(2541), + [anon_sym_LR_DQUOTE] = ACTIONS(2541), + [anon_sym_uR_DQUOTE] = ACTIONS(2541), + [anon_sym_UR_DQUOTE] = ACTIONS(2541), + [anon_sym_u8R_DQUOTE] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2539), + [sym_nullptr] = ACTIONS(2539), + }, + [1220] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1222), + [sym_compound_requirement] = STATE(1222), + [sym__requirement] = STATE(1222), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1222), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1221] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1222] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1223] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1224] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1260), + [sym_compound_requirement] = STATE(1260), + [sym__requirement] = STATE(1260), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1225] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1226] = { + [sym_identifier] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [anon_sym_PLUS] = ACTIONS(3075), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym___attribute__] = ACTIONS(3075), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3077), + [anon_sym___declspec] = ACTIONS(3075), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_register] = ACTIONS(3075), + [anon_sym_inline] = ACTIONS(3075), + [anon_sym_thread_local] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_volatile] = ACTIONS(3075), + [anon_sym_restrict] = ACTIONS(3075), + [anon_sym__Atomic] = ACTIONS(3075), + [anon_sym_mutable] = ACTIONS(3075), + [anon_sym_constexpr] = ACTIONS(3075), + [anon_sym_constinit] = ACTIONS(3075), + [anon_sym_consteval] = ACTIONS(3075), + [anon_sym_signed] = ACTIONS(3075), + [anon_sym_unsigned] = ACTIONS(3075), + [anon_sym_long] = ACTIONS(3075), + [anon_sym_short] = ACTIONS(3075), + [sym_primitive_type] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_class] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_do] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_goto] = ACTIONS(3075), + [anon_sym_not] = ACTIONS(3075), + [anon_sym_compl] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3077), + [anon_sym_sizeof] = ACTIONS(3075), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_L_SQUOTE] = ACTIONS(3077), + [anon_sym_u_SQUOTE] = ACTIONS(3077), + [anon_sym_U_SQUOTE] = ACTIONS(3077), + [anon_sym_u8_SQUOTE] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3077), + [anon_sym_L_DQUOTE] = ACTIONS(3077), + [anon_sym_u_DQUOTE] = ACTIONS(3077), + [anon_sym_U_DQUOTE] = ACTIONS(3077), + [anon_sym_u8_DQUOTE] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3077), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3075), + [anon_sym_decltype] = ACTIONS(3075), + [anon_sym_virtual] = ACTIONS(3075), + [anon_sym_typename] = ACTIONS(3075), + [anon_sym_template] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [anon_sym_delete] = ACTIONS(3075), + [anon_sym_throw] = ACTIONS(3075), + [anon_sym_co_return] = ACTIONS(3075), + [anon_sym_co_yield] = ACTIONS(3075), + [anon_sym_R_DQUOTE] = ACTIONS(3077), + [anon_sym_LR_DQUOTE] = ACTIONS(3077), + [anon_sym_uR_DQUOTE] = ACTIONS(3077), + [anon_sym_UR_DQUOTE] = ACTIONS(3077), + [anon_sym_u8R_DQUOTE] = ACTIONS(3077), + [anon_sym_co_await] = ACTIONS(3075), + [anon_sym_new] = ACTIONS(3075), + [anon_sym_requires] = ACTIONS(3075), + [sym_this] = ACTIONS(3075), + [sym_nullptr] = ACTIONS(3075), + }, + [1227] = { + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_R_DQUOTE] = ACTIONS(2601), + [anon_sym_LR_DQUOTE] = ACTIONS(2601), + [anon_sym_uR_DQUOTE] = ACTIONS(2601), + [anon_sym_UR_DQUOTE] = ACTIONS(2601), + [anon_sym_u8R_DQUOTE] = ACTIONS(2601), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + }, + [1228] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1229] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_R_DQUOTE] = ACTIONS(2597), + [anon_sym_LR_DQUOTE] = ACTIONS(2597), + [anon_sym_uR_DQUOTE] = ACTIONS(2597), + [anon_sym_UR_DQUOTE] = ACTIONS(2597), + [anon_sym_u8R_DQUOTE] = ACTIONS(2597), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + }, + [1230] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1210), + [sym_compound_requirement] = STATE(1210), + [sym__requirement] = STATE(1210), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1231] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1233), + [sym_compound_requirement] = STATE(1233), + [sym__requirement] = STATE(1233), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1233), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1232] = { + [sym_identifier] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_R_DQUOTE] = ACTIONS(2629), + [anon_sym_LR_DQUOTE] = ACTIONS(2629), + [anon_sym_uR_DQUOTE] = ACTIONS(2629), + [anon_sym_UR_DQUOTE] = ACTIONS(2629), + [anon_sym_u8R_DQUOTE] = ACTIONS(2629), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + }, + [1233] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1234] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3220), + [anon_sym_AMP] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3237), + [anon_sym_not] = ACTIONS(3217), + [anon_sym_compl] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3243), + [sym_number_literal] = ACTIONS(3246), + [anon_sym_L_SQUOTE] = ACTIONS(3249), + [anon_sym_u_SQUOTE] = ACTIONS(3249), + [anon_sym_U_SQUOTE] = ACTIONS(3249), + [anon_sym_u8_SQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_L_DQUOTE] = ACTIONS(3252), + [anon_sym_u_DQUOTE] = ACTIONS(3252), + [anon_sym_U_DQUOTE] = ACTIONS(3252), + [anon_sym_u8_DQUOTE] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3258), + [anon_sym_template] = ACTIONS(3261), + [anon_sym_delete] = ACTIONS(3264), + [anon_sym_R_DQUOTE] = ACTIONS(3267), + [anon_sym_LR_DQUOTE] = ACTIONS(3267), + [anon_sym_uR_DQUOTE] = ACTIONS(3267), + [anon_sym_UR_DQUOTE] = ACTIONS(3267), + [anon_sym_u8R_DQUOTE] = ACTIONS(3267), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_requires] = ACTIONS(3276), + [sym_this] = ACTIONS(3255), + [sym_nullptr] = ACTIONS(3255), + }, + [1235] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1246), + [sym_compound_requirement] = STATE(1246), + [sym__requirement] = STATE(1246), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1236] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1237), + [sym_compound_requirement] = STATE(1237), + [sym__requirement] = STATE(1237), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1237), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1237] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1238] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1240), + [sym_compound_requirement] = STATE(1240), + [sym__requirement] = STATE(1240), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1240), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1239] = { + [sym_identifier] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_R_DQUOTE] = ACTIONS(2641), + [anon_sym_LR_DQUOTE] = ACTIONS(2641), + [anon_sym_uR_DQUOTE] = ACTIONS(2641), + [anon_sym_UR_DQUOTE] = ACTIONS(2641), + [anon_sym_u8R_DQUOTE] = ACTIONS(2641), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + }, + [1240] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1241] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1242] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1243] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1244] = { + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym___attribute__] = ACTIONS(3091), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3082), + [anon_sym___declspec] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_register] = ACTIONS(3091), + [anon_sym_inline] = ACTIONS(3091), + [anon_sym_thread_local] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_volatile] = ACTIONS(3091), + [anon_sym_restrict] = ACTIONS(3091), + [anon_sym__Atomic] = ACTIONS(3091), + [anon_sym_mutable] = ACTIONS(3091), + [anon_sym_constexpr] = ACTIONS(3091), + [anon_sym_constinit] = ACTIONS(3091), + [anon_sym_consteval] = ACTIONS(3091), + [anon_sym_signed] = ACTIONS(3091), + [anon_sym_unsigned] = ACTIONS(3091), + [anon_sym_long] = ACTIONS(3091), + [anon_sym_short] = ACTIONS(3091), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_class] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_do] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_not] = ACTIONS(3087), + [anon_sym_compl] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_sizeof] = ACTIONS(3087), + [sym_number_literal] = ACTIONS(3085), + [anon_sym_L_SQUOTE] = ACTIONS(3085), + [anon_sym_u_SQUOTE] = ACTIONS(3085), + [anon_sym_U_SQUOTE] = ACTIONS(3085), + [anon_sym_u8_SQUOTE] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3085), + [anon_sym_L_DQUOTE] = ACTIONS(3085), + [anon_sym_u_DQUOTE] = ACTIONS(3085), + [anon_sym_U_DQUOTE] = ACTIONS(3085), + [anon_sym_u8_DQUOTE] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3085), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_null] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(3091), + [anon_sym_virtual] = ACTIONS(3091), + [anon_sym_typename] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3087), + [anon_sym_delete] = ACTIONS(3087), + [anon_sym_throw] = ACTIONS(3087), + [anon_sym_co_return] = ACTIONS(3087), + [anon_sym_co_yield] = ACTIONS(3087), + [anon_sym_R_DQUOTE] = ACTIONS(3085), + [anon_sym_LR_DQUOTE] = ACTIONS(3085), + [anon_sym_uR_DQUOTE] = ACTIONS(3085), + [anon_sym_UR_DQUOTE] = ACTIONS(3085), + [anon_sym_u8R_DQUOTE] = ACTIONS(3085), + [anon_sym_co_await] = ACTIONS(3087), + [anon_sym_new] = ACTIONS(3087), + [anon_sym_requires] = ACTIONS(3087), + [sym_this] = ACTIONS(3087), + [sym_nullptr] = ACTIONS(3087), + }, + [1245] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1246] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1247] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1248] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1249] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1250] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1251] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1252] = { + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_R_DQUOTE] = ACTIONS(2593), + [anon_sym_LR_DQUOTE] = ACTIONS(2593), + [anon_sym_uR_DQUOTE] = ACTIONS(2593), + [anon_sym_UR_DQUOTE] = ACTIONS(2593), + [anon_sym_u8R_DQUOTE] = ACTIONS(2593), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + }, + [1253] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1254] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1255] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1256] = { + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_typedef] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym___attribute__] = ACTIONS(2573), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2575), + [anon_sym___declspec] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_register] = ACTIONS(2573), + [anon_sym_inline] = ACTIONS(2573), + [anon_sym_thread_local] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_volatile] = ACTIONS(2573), + [anon_sym_restrict] = ACTIONS(2573), + [anon_sym__Atomic] = ACTIONS(2573), + [anon_sym_mutable] = ACTIONS(2573), + [anon_sym_constexpr] = ACTIONS(2573), + [anon_sym_constinit] = ACTIONS(2573), + [anon_sym_consteval] = ACTIONS(2573), + [anon_sym_signed] = ACTIONS(2573), + [anon_sym_unsigned] = ACTIONS(2573), + [anon_sym_long] = ACTIONS(2573), + [anon_sym_short] = ACTIONS(2573), + [sym_primitive_type] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_switch] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_goto] = ACTIONS(2573), + [anon_sym_not] = ACTIONS(2573), + [anon_sym_compl] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_sizeof] = ACTIONS(2573), + [sym_number_literal] = ACTIONS(2575), + [anon_sym_L_SQUOTE] = ACTIONS(2575), + [anon_sym_u_SQUOTE] = ACTIONS(2575), + [anon_sym_U_SQUOTE] = ACTIONS(2575), + [anon_sym_u8_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_L_DQUOTE] = ACTIONS(2575), + [anon_sym_u_DQUOTE] = ACTIONS(2575), + [anon_sym_U_DQUOTE] = ACTIONS(2575), + [anon_sym_u8_DQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym_true] = ACTIONS(2573), + [sym_false] = ACTIONS(2573), + [sym_null] = ACTIONS(2573), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2573), + [anon_sym_decltype] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2573), + [anon_sym_typename] = ACTIONS(2573), + [anon_sym_template] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_delete] = ACTIONS(2573), + [anon_sym_throw] = ACTIONS(2573), + [anon_sym_co_return] = ACTIONS(2573), + [anon_sym_co_yield] = ACTIONS(2573), + [anon_sym_R_DQUOTE] = ACTIONS(2575), + [anon_sym_LR_DQUOTE] = ACTIONS(2575), + [anon_sym_uR_DQUOTE] = ACTIONS(2575), + [anon_sym_UR_DQUOTE] = ACTIONS(2575), + [anon_sym_u8R_DQUOTE] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_requires] = ACTIONS(2573), + [sym_this] = ACTIONS(2573), + [sym_nullptr] = ACTIONS(2573), + }, + [1257] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1258] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1259] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_R_DQUOTE] = ACTIONS(2407), + [anon_sym_LR_DQUOTE] = ACTIONS(2407), + [anon_sym_uR_DQUOTE] = ACTIONS(2407), + [anon_sym_UR_DQUOTE] = ACTIONS(2407), + [anon_sym_u8R_DQUOTE] = ACTIONS(2407), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + }, + [1260] = { + [sym_expression_statement] = STATE(3223), + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(6829), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1261] = { + [sym__expression] = STATE(3616), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6032), + [sym_initializer_pair] = STATE(6032), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1262] = { + [sym__expression] = STATE(3613), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5941), + [sym_initializer_pair] = STATE(5941), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1263] = { + [sym__expression] = STATE(3607), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5859), + [sym_initializer_pair] = STATE(5859), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1264] = { + [sym__expression] = STATE(3642), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5946), + [sym_initializer_pair] = STATE(5946), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1265] = { + [sym__expression] = STATE(3597), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5975), + [sym_initializer_pair] = STATE(5975), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1266] = { + [sym__expression] = STATE(3631), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6102), + [sym_initializer_pair] = STATE(6102), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(3313), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1267] = { + [sym__expression] = STATE(3643), + [sym_comma_expression] = STATE(6261), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1268] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1269] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1270] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1271] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1272] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1273] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1274] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1275] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1276] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1277] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1278] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1279] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1280] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6519), + [sym_initializer_pair] = STATE(6519), + [sym_subscript_designator] = STATE(5489), + [sym_field_designator] = STATE(5489), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [aux_sym_initializer_pair_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(3295), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1281] = { + [sym__expression] = STATE(3736), + [sym_comma_expression] = STATE(6685), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6685), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1282] = { + [sym__expression] = STATE(2785), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6814), + [sym__unary_right_fold] = STATE(6813), + [sym__binary_fold] = STATE(6812), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1283] = { + [sym__expression] = STATE(3686), + [sym_comma_expression] = STATE(6736), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6736), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1284] = { + [sym__expression] = STATE(3697), + [sym_comma_expression] = STATE(6695), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6695), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1285] = { + [sym__expression] = STATE(2773), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6777), + [sym__unary_right_fold] = STATE(6779), + [sym__binary_fold] = STATE(6784), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1286] = { + [sym__expression] = STATE(2782), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6973), + [sym__unary_right_fold] = STATE(6982), + [sym__binary_fold] = STATE(7083), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1287] = { + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6781), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6781), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1288] = { + [sym__expression] = STATE(2781), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7084), + [sym__unary_right_fold] = STATE(7085), + [sym__binary_fold] = STATE(7086), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1289] = { + [sym__expression] = STATE(2787), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7112), + [sym__unary_right_fold] = STATE(7108), + [sym__binary_fold] = STATE(7106), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1290] = { + [sym__expression] = STATE(2786), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6946), + [sym__unary_right_fold] = STATE(6944), + [sym__binary_fold] = STATE(6943), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1291] = { + [sym__expression] = STATE(2790), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6822), + [sym__unary_right_fold] = STATE(6818), + [sym__binary_fold] = STATE(6808), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1292] = { + [sym__expression] = STATE(2784), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(7159), + [sym__unary_right_fold] = STATE(7161), + [sym__binary_fold] = STATE(7165), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1293] = { + [sym__expression] = STATE(3795), + [sym_comma_expression] = STATE(7081), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7081), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1294] = { + [sym__expression] = STATE(2783), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym__unary_left_fold] = STATE(6680), + [sym__unary_right_fold] = STATE(6682), + [sym__binary_fold] = STATE(6684), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1295] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3353), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1296] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1297] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1298] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1299] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3363), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3365), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1300] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1301] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1302] = { + [sym__expression] = STATE(3640), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5966), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3371), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1303] = { + [sym__expression] = STATE(2516), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1304] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1305] = { + [sym__expression] = STATE(3089), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1306] = { + [sym__expression] = STATE(3633), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5862), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3379), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1307] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1308] = { + [sym__expression] = STATE(2936), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1309] = { + [sym__expression] = STATE(3079), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1310] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1311] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3385), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1312] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1313] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1314] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3391), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1315] = { + [sym__expression] = STATE(3611), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5910), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1316] = { + [sym__expression] = STATE(2675), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1317] = { + [sym__expression] = STATE(3630), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6111), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1318] = { + [sym__expression] = STATE(3872), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7220), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(3397), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1319] = { + [sym__expression] = STATE(3552), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1320] = { + [sym__expression] = STATE(2489), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1321] = { + [sym__expression] = STATE(2943), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1322] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1323] = { + [sym__expression] = STATE(3887), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6885), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1324] = { + [sym__expression] = STATE(3567), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1325] = { + [sym__expression] = STATE(3618), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5977), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1326] = { + [sym__expression] = STATE(3083), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1327] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1328] = { + [sym__expression] = STATE(3905), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1329] = { + [sym__expression] = STATE(3709), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1330] = { + [sym__expression] = STATE(3896), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1331] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3411), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1332] = { + [sym__expression] = STATE(3839), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6906), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(3413), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1333] = { + [sym__expression] = STATE(3701), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1334] = { + [sym__expression] = STATE(3782), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1335] = { + [sym__expression] = STATE(2682), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1336] = { + [sym__expression] = STATE(3626), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(5816), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1337] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3365), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1338] = { + [sym__expression] = STATE(3753), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1339] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1340] = { + [sym__expression] = STATE(3600), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6007), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1341] = { + [sym__expression] = STATE(3088), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AMP_AMP] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1342] = { + [sym__expression] = STATE(3634), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3363), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3365), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1343] = { + [sym__expression] = STATE(3636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1344] = { + [sym__expression] = STATE(3634), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_lambda_default_capture] = STATE(6436), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3365), + [anon_sym_EQ] = ACTIONS(3355), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1345] = { + [sym__expression] = STATE(3687), + [sym_comma_expression] = STATE(7135), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1346] = { + [sym__expression] = STATE(3927), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7149), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1347] = { + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4271), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5380), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_parameter_list] = STATE(1084), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4169), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + }, + [1348] = { + [sym__expression] = STATE(3442), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(3441), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1349] = { + [sym__expression] = STATE(3442), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(3441), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1350] = { + [sym__expression] = STATE(2932), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_initializer_list] = STATE(3077), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1351] = { + [sym__expression] = STATE(3731), + [sym_comma_expression] = STATE(6638), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1352] = { + [sym__expression] = STATE(3729), + [sym_comma_expression] = STATE(6636), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1353] = { + [sym__expression] = STATE(3711), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_initializer_list] = STATE(3981), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1354] = { + [sym__expression] = STATE(3725), + [sym_comma_expression] = STATE(6625), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3437), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1355] = { + [sym__expression] = STATE(3724), + [sym_comma_expression] = STATE(6622), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1356] = { + [sym__expression] = STATE(3722), + [sym_comma_expression] = STATE(6618), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3441), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1357] = { + [sym__expression] = STATE(3719), + [sym_comma_expression] = STATE(6641), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1358] = { + [sym__expression] = STATE(3889), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(6872), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1359] = { + [sym__expression] = STATE(3718), + [sym_comma_expression] = STATE(6713), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3445), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1360] = { + [sym__expression] = STATE(3794), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6478), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1361] = { + [sym__expression] = STATE(3716), + [sym_comma_expression] = STATE(6714), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1362] = { + [sym__expression] = STATE(3961), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6845), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1363] = { + [sym__expression] = STATE(3952), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6825), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1364] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3449), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1365] = { + [sym__expression] = STATE(3599), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6478), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1366] = { + [sym__expression] = STATE(3702), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6512), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1367] = { + [sym__expression] = STATE(3784), + [sym_comma_expression] = STATE(6855), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1368] = { + [sym__expression] = STATE(3809), + [sym_comma_expression] = STATE(6935), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1369] = { + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4303), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5370), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_parameter_list] = STATE(1083), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4169), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + }, + [1370] = { + [sym__expression] = STATE(3845), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(6987), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1371] = { + [sym__expression] = STATE(3810), + [sym_comma_expression] = STATE(6940), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1372] = { + [sym__expression] = STATE(3821), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6945), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1373] = { + [sym__expression] = STATE(3811), + [sym_comma_expression] = STATE(6949), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1374] = { + [sym__expression] = STATE(3892), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6867), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1375] = { + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4267), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5422), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_parameter_list] = STATE(1087), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4169), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + }, + [1376] = { + [sym__expression] = STATE(3807), + [sym_comma_expression] = STATE(7182), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1377] = { + [sym__expression] = STATE(3786), + [sym_comma_expression] = STATE(6864), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1378] = { + [sym__expression] = STATE(3087), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_initializer_list] = STATE(2526), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1379] = { + [sym__expression] = STATE(3078), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_initializer_list] = STATE(3118), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1380] = { + [sym__expression] = STATE(3838), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7189), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1381] = { + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6830), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3463), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1382] = { + [sym__expression] = STATE(3665), + [sym_comma_expression] = STATE(6752), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3465), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1383] = { + [sym__expression] = STATE(3756), + [sym_comma_expression] = STATE(7199), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1384] = { + [sym__expression] = STATE(3789), + [sym_comma_expression] = STATE(6869), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1385] = { + [sym__expression] = STATE(3688), + [sym_comma_expression] = STATE(7212), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3471), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1386] = { + [sym__expression] = STATE(3790), + [sym_comma_expression] = STATE(6870), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3473), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1387] = { + [sym__expression] = STATE(3873), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7177), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1388] = { + [sym__expression] = STATE(3791), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6613), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1389] = { + [sym__expression] = STATE(3974), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6620), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1390] = { + [sym__expression] = STATE(3799), + [sym_comma_expression] = STATE(7213), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1391] = { + [sym__expression] = STATE(3977), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6642), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1392] = { + [sym__expression] = STATE(3692), + [sym_comma_expression] = STATE(6999), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1393] = { + [sym__expression] = STATE(2689), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_initializer_list] = STATE(2768), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1394] = { + [sym__expression] = STATE(3657), + [sym_comma_expression] = STATE(6762), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1395] = { + [sym__expression] = STATE(3710), + [sym_comma_expression] = STATE(6882), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1396] = { + [sym__expression] = STATE(3715), + [sym_comma_expression] = STATE(6876), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1397] = { + [sym__expression] = STATE(3948), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7005), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1398] = { + [sym__expression] = STATE(3863), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6920), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1399] = { + [sym__expression] = STATE(3659), + [sym_comma_expression] = STATE(6759), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1400] = { + [sym__expression] = STATE(3591), + [sym_comma_expression] = STATE(6261), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1401] = { + [sym__expression] = STATE(3843), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_initializer_list] = STATE(3441), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1402] = { + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4287), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_based_modifier] = STATE(6985), + [sym__declarator] = STATE(5407), + [sym_parenthesized_declarator] = STATE(5152), + [sym_attributed_declarator] = STATE(5152), + [sym_pointer_declarator] = STATE(5152), + [sym_function_declarator] = STATE(5152), + [sym_array_declarator] = STATE(5152), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_parameter_list] = STATE(1085), + [sym_reference_declarator] = STATE(5152), + [sym_structured_binding_declarator] = STATE(5152), + [sym_template_type] = STATE(4169), + [sym_template_function] = STATE(5152), + [sym_destructor_name] = STATE(5152), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4933), + [sym_qualified_identifier] = STATE(5152), + [sym_qualified_type_identifier] = STATE(3479), + [sym_operator_name] = STATE(5152), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + }, + [1403] = { + [sym__expression] = STATE(3912), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6764), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1404] = { + [sym__expression] = STATE(3660), + [sym_comma_expression] = STATE(6756), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1405] = { + [sym__expression] = STATE(3733), + [sym_comma_expression] = STATE(6850), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3492), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1406] = { + [sym__expression] = STATE(3897), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6854), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1407] = { + [sym__expression] = STATE(3917), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6757), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1408] = { + [sym__expression] = STATE(3895), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6856), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1409] = { + [sym__expression] = STATE(3745), + [sym_comma_expression] = STATE(6848), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1410] = { + [sym__expression] = STATE(3674), + [sym_comma_expression] = STATE(7088), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3496), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1411] = { + [sym__expression] = STATE(3664), + [sym_comma_expression] = STATE(6754), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3498), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1412] = { + [sym__expression] = STATE(3932), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6990), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1413] = { + [sym__expression] = STATE(2527), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_initializer_list] = STATE(2526), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1414] = { + [sym__expression] = STATE(3800), + [sym_comma_expression] = STATE(6896), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3500), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1415] = { + [sym__expression] = STATE(3867), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(7211), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1416] = { + [sym__expression] = STATE(3746), + [sym_comma_expression] = STATE(6837), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1417] = { + [sym__expression] = STATE(3916), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_initializer_list] = STATE(7089), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1418] = { + [sym__expression] = STATE(3801), + [sym_comma_expression] = STATE(6900), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3504), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1419] = { + [sym__expression] = STATE(3667), + [sym_comma_expression] = STATE(6751), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3506), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1420] = { + [sym__expression] = STATE(3930), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_initializer_list] = STATE(6637), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1421] = { + [sym_template_argument_list] = STATE(1828), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3523), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1422] = { + [sym__expression] = STATE(3040), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3546), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1423] = { + [sym__expression] = STATE(3953), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3549), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1424] = { + [sym__expression] = STATE(2483), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1425] = { + [sym__expression] = STATE(3082), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3555), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1426] = { + [sym__expression] = STATE(3040), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1427] = { + [sym__expression] = STATE(3844), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3561), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1428] = { + [sym__expression] = STATE(3040), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3563), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1429] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3566), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1430] = { + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1431] = { + [sym__expression] = STATE(3720), + [sym_comma_expression] = STATE(6948), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1432] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3571), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1433] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3573), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1434] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3575), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1435] = { + [sym__expression] = STATE(3555), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1436] = { + [sym__expression] = STATE(3855), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3581), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1437] = { + [sym__expression] = STATE(3082), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1438] = { + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3586), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1439] = { + [sym__expression] = STATE(3971), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3589), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1440] = { + [sym__expression] = STATE(3958), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3591), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1441] = { + [sym__expression] = STATE(3900), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3593), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1442] = { + [sym__expression] = STATE(3849), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3595), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1443] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3597), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1444] = { + [sym__expression] = STATE(3564), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3599), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3601), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1445] = { + [sym__expression] = STATE(3944), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3603), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1446] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3605), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1447] = { + [sym__expression] = STATE(3939), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3607), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1448] = { + [sym__expression] = STATE(3951), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3609), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1449] = { + [sym__expression] = STATE(3989), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1450] = { + [sym__expression] = STATE(3678), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1451] = { + [sym_template_argument_list] = STATE(1760), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3510), + [anon_sym_SLASH_EQ] = ACTIONS(3510), + [anon_sym_PERCENT_EQ] = ACTIONS(3510), + [anon_sym_PLUS_EQ] = ACTIONS(3510), + [anon_sym_DASH_EQ] = ACTIONS(3510), + [anon_sym_LT_LT_EQ] = ACTIONS(3510), + [anon_sym_GT_GT_EQ] = ACTIONS(3510), + [anon_sym_AMP_EQ] = ACTIONS(3510), + [anon_sym_CARET_EQ] = ACTIONS(3510), + [anon_sym_PIPE_EQ] = ACTIONS(3510), + [anon_sym_and_eq] = ACTIONS(3620), + [anon_sym_or_eq] = ACTIONS(3620), + [anon_sym_xor_eq] = ACTIONS(3620), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + [anon_sym_DOT_STAR] = ACTIONS(3510), + [anon_sym_DASH_GT_STAR] = ACTIONS(3510), + }, + [1452] = { + [sym__expression] = STATE(3043), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1453] = { + [sym__expression] = STATE(3819), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3625), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1454] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3627), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1455] = { + [sym__expression] = STATE(3986), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1456] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3631), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1457] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3633), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1458] = { + [sym__expression] = STATE(3044), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1459] = { + [sym__expression] = STATE(3564), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3601), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1460] = { + [sym__expression] = STATE(2952), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1461] = { + [sym__expression] = STATE(3988), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1462] = { + [sym__expression] = STATE(3591), + [sym_comma_expression] = STATE(6261), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1463] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1464] = { + [sym__expression] = STATE(3651), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1465] = { + [sym__expression] = STATE(2995), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1466] = { + [sym__expression] = STATE(3045), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3654), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1467] = { + [sym__expression] = STATE(3047), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1468] = { + [sym__expression] = STATE(3859), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1469] = { + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1470] = { + [sym__expression] = STATE(3831), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1471] = { + [sym__expression] = STATE(3564), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3667), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3601), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1472] = { + [sym__expression] = STATE(3913), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1473] = { + [sym__expression] = STATE(3063), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3551), + [anon_sym_LPAREN2] = ACTIONS(3671), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1474] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3673), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1475] = { + [sym__expression] = STATE(3915), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3675), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1476] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3677), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1477] = { + [sym_template_argument_list] = STATE(1524), + [sym_identifier] = ACTIONS(3679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3681), + [anon_sym_COMMA] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LPAREN2] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3681), + [anon_sym_PIPE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3693), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_extern] = ACTIONS(3679), + [anon_sym___attribute__] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3679), + [anon_sym___based] = ACTIONS(3679), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3679), + [anon_sym_register] = ACTIONS(3679), + [anon_sym_inline] = ACTIONS(3679), + [anon_sym_thread_local] = ACTIONS(3679), + [anon_sym_const] = ACTIONS(3679), + [anon_sym_volatile] = ACTIONS(3679), + [anon_sym_restrict] = ACTIONS(3679), + [anon_sym__Atomic] = ACTIONS(3679), + [anon_sym_mutable] = ACTIONS(3679), + [anon_sym_constexpr] = ACTIONS(3679), + [anon_sym_constinit] = ACTIONS(3679), + [anon_sym_consteval] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3686), + [anon_sym_or_eq] = ACTIONS(3686), + [anon_sym_xor_eq] = ACTIONS(3686), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_bitor] = ACTIONS(3686), + [anon_sym_xor] = ACTIONS(3686), + [anon_sym_bitand] = ACTIONS(3686), + [anon_sym_not_eq] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3679), + [anon_sym_decltype] = ACTIONS(3679), + [anon_sym_virtual] = ACTIONS(3679), + [anon_sym_template] = ACTIONS(3679), + [anon_sym_operator] = ACTIONS(3679), + [anon_sym_DOT_STAR] = ACTIONS(3691), + [anon_sym_DASH_GT_STAR] = ACTIONS(3691), + }, + [1478] = { + [sym__expression] = STATE(3880), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1479] = { + [sym__expression] = STATE(3836), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1480] = { + [sym__expression] = STATE(2616), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3700), + [anon_sym_LPAREN2] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1481] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1482] = { + [sym__expression] = STATE(3938), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3707), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1483] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3709), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1484] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1485] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3715), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1486] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1487] = { + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1488] = { + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3723), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1489] = { + [sym__expression] = STATE(3842), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1490] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACK] = ACTIONS(3728), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1491] = { + [sym_template_argument_list] = STATE(1838), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1492] = { + [sym__expression] = STATE(2541), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1493] = { + [sym__expression] = STATE(3947), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1494] = { + [sym__expression] = STATE(3064), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(3732), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1495] = { + [sym_template_argument_list] = STATE(1828), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3523), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1496] = { + [sym__expression] = STATE(2624), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(3734), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1497] = { + [sym__expression] = STATE(3907), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1498] = { + [sym__expression] = STATE(3909), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1499] = { + [sym_identifier] = ACTIONS(3736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_RPAREN] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT_EQ] = ACTIONS(3738), + [anon_sym_LT_EQ] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3736), + [anon_sym___attribute__] = ACTIONS(3736), + [anon_sym_COLON_COLON] = ACTIONS(3738), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), + [anon_sym___declspec] = ACTIONS(3736), + [anon_sym___based] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_RBRACE] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3736), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3736), + [anon_sym_register] = ACTIONS(3736), + [anon_sym_inline] = ACTIONS(3736), + [anon_sym_thread_local] = ACTIONS(3736), + [anon_sym_const] = ACTIONS(3736), + [anon_sym_volatile] = ACTIONS(3736), + [anon_sym_restrict] = ACTIONS(3736), + [anon_sym__Atomic] = ACTIONS(3736), + [anon_sym_mutable] = ACTIONS(3736), + [anon_sym_constexpr] = ACTIONS(3736), + [anon_sym_constinit] = ACTIONS(3736), + [anon_sym_consteval] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_STAR_EQ] = ACTIONS(3738), + [anon_sym_SLASH_EQ] = ACTIONS(3738), + [anon_sym_PERCENT_EQ] = ACTIONS(3738), + [anon_sym_PLUS_EQ] = ACTIONS(3738), + [anon_sym_DASH_EQ] = ACTIONS(3738), + [anon_sym_LT_LT_EQ] = ACTIONS(3738), + [anon_sym_GT_GT_EQ] = ACTIONS(3738), + [anon_sym_AMP_EQ] = ACTIONS(3738), + [anon_sym_CARET_EQ] = ACTIONS(3738), + [anon_sym_PIPE_EQ] = ACTIONS(3738), + [anon_sym_and_eq] = ACTIONS(3736), + [anon_sym_or_eq] = ACTIONS(3736), + [anon_sym_xor_eq] = ACTIONS(3736), + [anon_sym_LT_EQ_GT] = ACTIONS(3738), + [anon_sym_or] = ACTIONS(3736), + [anon_sym_and] = ACTIONS(3736), + [anon_sym_bitor] = ACTIONS(3736), + [anon_sym_xor] = ACTIONS(3736), + [anon_sym_bitand] = ACTIONS(3736), + [anon_sym_not_eq] = ACTIONS(3736), + [anon_sym_DASH_DASH] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3736), + [anon_sym_decltype] = ACTIONS(3736), + [anon_sym_virtual] = ACTIONS(3736), + [anon_sym_template] = ACTIONS(3736), + [anon_sym_operator] = ACTIONS(3736), + }, + [1500] = { + [sym__expression] = STATE(3818), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1501] = { + [sym__expression] = STATE(2615), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1502] = { + [sym_identifier] = ACTIONS(3740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT_EQ] = ACTIONS(3742), + [anon_sym_LT_EQ] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3740), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3740), + [anon_sym___attribute__] = ACTIONS(3740), + [anon_sym_COLON_COLON] = ACTIONS(3742), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), + [anon_sym___declspec] = ACTIONS(3740), + [anon_sym___based] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_RBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_register] = ACTIONS(3740), + [anon_sym_inline] = ACTIONS(3740), + [anon_sym_thread_local] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_volatile] = ACTIONS(3740), + [anon_sym_restrict] = ACTIONS(3740), + [anon_sym__Atomic] = ACTIONS(3740), + [anon_sym_mutable] = ACTIONS(3740), + [anon_sym_constexpr] = ACTIONS(3740), + [anon_sym_constinit] = ACTIONS(3740), + [anon_sym_consteval] = ACTIONS(3740), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_STAR_EQ] = ACTIONS(3742), + [anon_sym_SLASH_EQ] = ACTIONS(3742), + [anon_sym_PERCENT_EQ] = ACTIONS(3742), + [anon_sym_PLUS_EQ] = ACTIONS(3742), + [anon_sym_DASH_EQ] = ACTIONS(3742), + [anon_sym_LT_LT_EQ] = ACTIONS(3742), + [anon_sym_GT_GT_EQ] = ACTIONS(3742), + [anon_sym_AMP_EQ] = ACTIONS(3742), + [anon_sym_CARET_EQ] = ACTIONS(3742), + [anon_sym_PIPE_EQ] = ACTIONS(3742), + [anon_sym_and_eq] = ACTIONS(3740), + [anon_sym_or_eq] = ACTIONS(3740), + [anon_sym_xor_eq] = ACTIONS(3740), + [anon_sym_LT_EQ_GT] = ACTIONS(3742), + [anon_sym_or] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_bitor] = ACTIONS(3740), + [anon_sym_xor] = ACTIONS(3740), + [anon_sym_bitand] = ACTIONS(3740), + [anon_sym_not_eq] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3740), + [anon_sym_decltype] = ACTIONS(3740), + [anon_sym_virtual] = ACTIONS(3740), + [anon_sym_template] = ACTIONS(3740), + [anon_sym_operator] = ACTIONS(3740), + }, + [1503] = { + [sym__expression] = STATE(2628), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1504] = { + [sym_identifier] = ACTIONS(3744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_PERCENT] = ACTIONS(3744), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3744), + [anon_sym_CARET] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT_EQ] = ACTIONS(3746), + [anon_sym_LT_EQ] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_LT_LT] = ACTIONS(3744), + [anon_sym_GT_GT] = ACTIONS(3744), + [anon_sym_SEMI] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3744), + [anon_sym___attribute__] = ACTIONS(3744), + [anon_sym_COLON_COLON] = ACTIONS(3746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), + [anon_sym___declspec] = ACTIONS(3744), + [anon_sym___based] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_static] = ACTIONS(3744), + [anon_sym_register] = ACTIONS(3744), + [anon_sym_inline] = ACTIONS(3744), + [anon_sym_thread_local] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_volatile] = ACTIONS(3744), + [anon_sym_restrict] = ACTIONS(3744), + [anon_sym__Atomic] = ACTIONS(3744), + [anon_sym_mutable] = ACTIONS(3744), + [anon_sym_constexpr] = ACTIONS(3744), + [anon_sym_constinit] = ACTIONS(3744), + [anon_sym_consteval] = ACTIONS(3744), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_STAR_EQ] = ACTIONS(3746), + [anon_sym_SLASH_EQ] = ACTIONS(3746), + [anon_sym_PERCENT_EQ] = ACTIONS(3746), + [anon_sym_PLUS_EQ] = ACTIONS(3746), + [anon_sym_DASH_EQ] = ACTIONS(3746), + [anon_sym_LT_LT_EQ] = ACTIONS(3746), + [anon_sym_GT_GT_EQ] = ACTIONS(3746), + [anon_sym_AMP_EQ] = ACTIONS(3746), + [anon_sym_CARET_EQ] = ACTIONS(3746), + [anon_sym_PIPE_EQ] = ACTIONS(3746), + [anon_sym_and_eq] = ACTIONS(3744), + [anon_sym_or_eq] = ACTIONS(3744), + [anon_sym_xor_eq] = ACTIONS(3744), + [anon_sym_LT_EQ_GT] = ACTIONS(3746), + [anon_sym_or] = ACTIONS(3744), + [anon_sym_and] = ACTIONS(3744), + [anon_sym_bitor] = ACTIONS(3744), + [anon_sym_xor] = ACTIONS(3744), + [anon_sym_bitand] = ACTIONS(3744), + [anon_sym_not_eq] = ACTIONS(3744), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3744), + [anon_sym_decltype] = ACTIONS(3744), + [anon_sym_virtual] = ACTIONS(3744), + [anon_sym_template] = ACTIONS(3744), + [anon_sym_operator] = ACTIONS(3744), + }, + [1505] = { + [sym__expression] = STATE(3065), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1506] = { + [sym__expression] = STATE(3018), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(3748), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1507] = { + [sym_identifier] = ACTIONS(3750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3750), + [anon_sym_SLASH] = ACTIONS(3750), + [anon_sym_PERCENT] = ACTIONS(3750), + [anon_sym_PIPE_PIPE] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3752), + [anon_sym_BANG_EQ] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT_EQ] = ACTIONS(3752), + [anon_sym_LT_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(3750), + [anon_sym_GT_GT] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_STAR_EQ] = ACTIONS(3752), + [anon_sym_SLASH_EQ] = ACTIONS(3752), + [anon_sym_PERCENT_EQ] = ACTIONS(3752), + [anon_sym_PLUS_EQ] = ACTIONS(3752), + [anon_sym_DASH_EQ] = ACTIONS(3752), + [anon_sym_LT_LT_EQ] = ACTIONS(3752), + [anon_sym_GT_GT_EQ] = ACTIONS(3752), + [anon_sym_AMP_EQ] = ACTIONS(3752), + [anon_sym_CARET_EQ] = ACTIONS(3752), + [anon_sym_PIPE_EQ] = ACTIONS(3752), + [anon_sym_and_eq] = ACTIONS(3750), + [anon_sym_or_eq] = ACTIONS(3750), + [anon_sym_xor_eq] = ACTIONS(3750), + [anon_sym_LT_EQ_GT] = ACTIONS(3752), + [anon_sym_or] = ACTIONS(3750), + [anon_sym_and] = ACTIONS(3750), + [anon_sym_bitor] = ACTIONS(3750), + [anon_sym_xor] = ACTIONS(3750), + [anon_sym_bitand] = ACTIONS(3750), + [anon_sym_not_eq] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_DOT_STAR] = ACTIONS(3752), + [anon_sym_DASH_GT_STAR] = ACTIONS(3752), + }, + [1508] = { + [sym__expression] = STATE(3824), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1509] = { + [sym__expression] = STATE(2592), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(3756), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1510] = { + [sym__expression] = STATE(2592), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1511] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1512] = { + [sym__expression] = STATE(3920), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1513] = { + [sym__expression] = STATE(3558), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1514] = { + [sym__expression] = STATE(3057), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1515] = { + [sym__expression] = STATE(3963), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1516] = { + [sym__expression] = STATE(3669), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1517] = { + [sym_identifier] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3758), + [anon_sym_SLASH] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3758), + [anon_sym_PIPE_PIPE] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(3760), + [anon_sym_LT_EQ] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3758), + [anon_sym_GT_GT] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_QMARK] = ACTIONS(3760), + [anon_sym_STAR_EQ] = ACTIONS(3760), + [anon_sym_SLASH_EQ] = ACTIONS(3760), + [anon_sym_PERCENT_EQ] = ACTIONS(3760), + [anon_sym_PLUS_EQ] = ACTIONS(3760), + [anon_sym_DASH_EQ] = ACTIONS(3760), + [anon_sym_LT_LT_EQ] = ACTIONS(3760), + [anon_sym_GT_GT_EQ] = ACTIONS(3760), + [anon_sym_AMP_EQ] = ACTIONS(3760), + [anon_sym_CARET_EQ] = ACTIONS(3760), + [anon_sym_PIPE_EQ] = ACTIONS(3760), + [anon_sym_and_eq] = ACTIONS(3758), + [anon_sym_or_eq] = ACTIONS(3758), + [anon_sym_xor_eq] = ACTIONS(3758), + [anon_sym_LT_EQ_GT] = ACTIONS(3760), + [anon_sym_or] = ACTIONS(3758), + [anon_sym_and] = ACTIONS(3758), + [anon_sym_bitor] = ACTIONS(3758), + [anon_sym_xor] = ACTIONS(3758), + [anon_sym_bitand] = ACTIONS(3758), + [anon_sym_not_eq] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_DASH_GT] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_DOT_STAR] = ACTIONS(3760), + [anon_sym_DASH_GT_STAR] = ACTIONS(3760), + }, + [1518] = { + [sym__expression] = STATE(3764), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1519] = { + [sym_identifier] = ACTIONS(3762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3762), + [anon_sym_SLASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_LT_LT] = ACTIONS(3762), + [anon_sym_GT_GT] = ACTIONS(3762), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3764), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), + [anon_sym_and_eq] = ACTIONS(3762), + [anon_sym_or_eq] = ACTIONS(3762), + [anon_sym_xor_eq] = ACTIONS(3762), + [anon_sym_LT_EQ_GT] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [anon_sym_and] = ACTIONS(3762), + [anon_sym_bitor] = ACTIONS(3762), + [anon_sym_xor] = ACTIONS(3762), + [anon_sym_bitand] = ACTIONS(3762), + [anon_sym_not_eq] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_DOT_STAR] = ACTIONS(3764), + [anon_sym_DASH_GT_STAR] = ACTIONS(3764), + }, + [1520] = { + [sym__expression] = STATE(3822), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1521] = { + [sym__expression] = STATE(3780), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1522] = { + [sym__expression] = STATE(3781), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1523] = { + [sym__expression] = STATE(3979), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1524] = { + [sym_identifier] = ACTIONS(3766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_CARET] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_EQ_EQ] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_LT_LT] = ACTIONS(3773), + [anon_sym_GT_GT] = ACTIONS(3773), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(3775), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_STAR_EQ] = ACTIONS(3778), + [anon_sym_SLASH_EQ] = ACTIONS(3778), + [anon_sym_PERCENT_EQ] = ACTIONS(3778), + [anon_sym_PLUS_EQ] = ACTIONS(3778), + [anon_sym_DASH_EQ] = ACTIONS(3778), + [anon_sym_LT_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_GT_EQ] = ACTIONS(3778), + [anon_sym_AMP_EQ] = ACTIONS(3778), + [anon_sym_CARET_EQ] = ACTIONS(3778), + [anon_sym_PIPE_EQ] = ACTIONS(3778), + [anon_sym_and_eq] = ACTIONS(3773), + [anon_sym_or_eq] = ACTIONS(3773), + [anon_sym_xor_eq] = ACTIONS(3773), + [anon_sym_LT_EQ_GT] = ACTIONS(3778), + [anon_sym_or] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_bitor] = ACTIONS(3773), + [anon_sym_xor] = ACTIONS(3773), + [anon_sym_bitand] = ACTIONS(3773), + [anon_sym_not_eq] = ACTIONS(3773), + [anon_sym_DASH_DASH] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_DASH_GT] = ACTIONS(3773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + [anon_sym_DOT_STAR] = ACTIONS(3778), + [anon_sym_DASH_GT_STAR] = ACTIONS(3778), + }, + [1525] = { + [sym__expression] = STATE(3444), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1526] = { + [sym__expression] = STATE(3959), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1527] = { + [sym__expression] = STATE(3559), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1528] = { + [sym__expression] = STATE(3826), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1529] = { + [sym__expression] = STATE(3649), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1530] = { + [sym__expression] = STATE(3565), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1531] = { + [sym__expression] = STATE(3865), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1532] = { + [sym__expression] = STATE(3023), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1533] = { + [sym__expression] = STATE(3906), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1534] = { + [sym__expression] = STATE(3553), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1535] = { + [sym__expression] = STATE(3693), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1536] = { + [sym__expression] = STATE(2473), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1537] = { + [sym__expression] = STATE(3568), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1538] = { + [sym__expression] = STATE(3862), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1539] = { + [sym__expression] = STATE(3858), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1540] = { + [sym__expression] = STATE(3869), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1541] = { + [sym__expression] = STATE(3875), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1542] = { + [sym__expression] = STATE(3878), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1543] = { + [sym__expression] = STATE(3854), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1544] = { + [sym__expression] = STATE(3682), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1545] = { + [sym__expression] = STATE(3572), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1546] = { + [sym__expression] = STATE(3554), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1547] = { + [sym__expression] = STATE(3853), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1548] = { + [sym__expression] = STATE(3972), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1549] = { + [sym__expression] = STATE(3734), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1550] = { + [sym__expression] = STATE(3925), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1551] = { + [sym__expression] = STATE(3662), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1552] = { + [sym__expression] = STATE(3882), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1553] = { + [sym__expression] = STATE(3585), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1554] = { + [sym__expression] = STATE(2681), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(3780), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1555] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1556] = { + [sym__expression] = STATE(2547), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1557] = { + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1558] = { + [sym__expression] = STATE(3043), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1559] = { + [sym__expression] = STATE(3044), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1560] = { + [sym__expression] = STATE(3045), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1561] = { + [sym__expression] = STATE(3047), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1562] = { + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1563] = { + [sym__expression] = STATE(2539), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1564] = { + [sym__expression] = STATE(2538), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1565] = { + [sym__expression] = STATE(3500), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1566] = { + [sym__expression] = STATE(3051), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1567] = { + [sym__expression] = STATE(3943), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1568] = { + [sym__expression] = STATE(2997), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1569] = { + [sym__expression] = STATE(3936), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1570] = { + [sym__expression] = STATE(3941), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1571] = { + [sym__expression] = STATE(2996), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1572] = { + [sym__expression] = STATE(3816), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1573] = { + [sym__expression] = STATE(2699), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1574] = { + [sym__expression] = STATE(2698), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1575] = { + [sym__expression] = STATE(3766), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1576] = { + [sym__expression] = STATE(2697), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1577] = { + [sym__expression] = STATE(2696), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1578] = { + [sym__expression] = STATE(3761), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1579] = { + [sym__expression] = STATE(2695), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1580] = { + [sym__expression] = STATE(3684), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1581] = { + [sym__expression] = STATE(2694), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1582] = { + [sym__expression] = STATE(3721), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1583] = { + [sym__expression] = STATE(2690), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1584] = { + [sym__expression] = STATE(3090), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1585] = { + [sym__expression] = STATE(3564), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3601), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1586] = { + [sym_template_argument_list] = STATE(1751), + [sym_identifier] = ACTIONS(3679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3681), + [anon_sym_PIPE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3681), + [anon_sym_extern] = ACTIONS(3679), + [anon_sym___attribute__] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3681), + [anon_sym___declspec] = ACTIONS(3679), + [anon_sym___based] = ACTIONS(3679), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_EQ] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3679), + [anon_sym_register] = ACTIONS(3679), + [anon_sym_inline] = ACTIONS(3679), + [anon_sym_thread_local] = ACTIONS(3679), + [anon_sym_const] = ACTIONS(3679), + [anon_sym_volatile] = ACTIONS(3679), + [anon_sym_restrict] = ACTIONS(3679), + [anon_sym__Atomic] = ACTIONS(3679), + [anon_sym_mutable] = ACTIONS(3679), + [anon_sym_constexpr] = ACTIONS(3679), + [anon_sym_constinit] = ACTIONS(3679), + [anon_sym_consteval] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3686), + [anon_sym_or_eq] = ACTIONS(3686), + [anon_sym_xor_eq] = ACTIONS(3686), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_bitor] = ACTIONS(3686), + [anon_sym_xor] = ACTIONS(3686), + [anon_sym_bitand] = ACTIONS(3686), + [anon_sym_not_eq] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3679), + [anon_sym_decltype] = ACTIONS(3679), + [anon_sym_virtual] = ACTIONS(3679), + [anon_sym_template] = ACTIONS(3679), + [anon_sym_operator] = ACTIONS(3679), + }, + [1587] = { + [sym__expression] = STATE(3980), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1588] = { + [sym__expression] = STATE(3962), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1589] = { + [sym__expression] = STATE(3860), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1590] = { + [sym__expression] = STATE(3954), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1591] = { + [sym__expression] = STATE(3857), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1592] = { + [sym__expression] = STATE(3884), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1593] = { + [sym__expression] = STATE(3890), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1594] = { + [sym__expression] = STATE(3856), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1595] = { + [sym__expression] = STATE(3754), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1596] = { + [sym__expression] = STATE(3695), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1597] = { + [sym__expression] = STATE(3885), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1598] = { + [sym__expression] = STATE(2666), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1599] = { + [sym__expression] = STATE(2992), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1600] = { + [sym__expression] = STATE(3615), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1601] = { + [sym__expression] = STATE(3879), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1602] = { + [sym__expression] = STATE(3070), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1603] = { + [sym_template_argument_list] = STATE(1838), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3787), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1604] = { + [sym__expression] = STATE(2992), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(3789), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1605] = { + [sym__expression] = STATE(2976), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1606] = { + [sym__expression] = STATE(3846), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1607] = { + [sym__expression] = STATE(3691), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1608] = { + [sym__expression] = STATE(3919), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1609] = { + [sym__expression] = STATE(2928), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1610] = { + [sym__expression] = STATE(3891), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1611] = { + [sym__expression] = STATE(3557), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1612] = { + [sym__expression] = STATE(2970), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1613] = { + [sym__expression] = STATE(2701), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1614] = { + [sym__expression] = STATE(2964), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1615] = { + [sym__expression] = STATE(3864), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1616] = { + [sym__expression] = STATE(3967), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1617] = { + [sym__expression] = STATE(2965), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1618] = { + [sym__expression] = STATE(2962), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1619] = { + [sym__expression] = STATE(2967), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1620] = { + [sym__expression] = STATE(2968), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1621] = { + [sym__expression] = STATE(2969), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1622] = { + [sym_template_argument_list] = STATE(1838), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1623] = { + [sym__expression] = STATE(3968), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1624] = { + [sym__expression] = STATE(3752), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1625] = { + [sym__expression] = STATE(2700), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1626] = { + [sym__expression] = STATE(2963), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1627] = { + [sym__expression] = STATE(2978), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1628] = { + [sym__expression] = STATE(2948), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1629] = { + [sym__expression] = STATE(3806), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1630] = { + [sym__expression] = STATE(3970), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1631] = { + [sym__expression] = STATE(2693), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1632] = { + [sym__expression] = STATE(2692), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1633] = { + [sym__expression] = STATE(3768), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1634] = { + [sym__expression] = STATE(2934), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1635] = { + [sym__expression] = STATE(3771), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1636] = { + [sym__expression] = STATE(2949), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1637] = { + [sym__expression] = STATE(3984), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1638] = { + [sym__expression] = STATE(3813), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1639] = { + [sym__expression] = STATE(3772), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1640] = { + [sym__expression] = STATE(3774), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1641] = { + [sym__expression] = STATE(3950), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1642] = { + [sym__expression] = STATE(3681), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1643] = { + [sym_identifier] = ACTIONS(3750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3750), + [anon_sym_SLASH] = ACTIONS(3750), + [anon_sym_PERCENT] = ACTIONS(3750), + [anon_sym_PIPE_PIPE] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3752), + [anon_sym_BANG_EQ] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT_EQ] = ACTIONS(3752), + [anon_sym_LT_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(3750), + [anon_sym_GT_GT] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_STAR_EQ] = ACTIONS(3752), + [anon_sym_SLASH_EQ] = ACTIONS(3752), + [anon_sym_PERCENT_EQ] = ACTIONS(3752), + [anon_sym_PLUS_EQ] = ACTIONS(3752), + [anon_sym_DASH_EQ] = ACTIONS(3752), + [anon_sym_LT_LT_EQ] = ACTIONS(3752), + [anon_sym_GT_GT_EQ] = ACTIONS(3752), + [anon_sym_AMP_EQ] = ACTIONS(3752), + [anon_sym_CARET_EQ] = ACTIONS(3752), + [anon_sym_PIPE_EQ] = ACTIONS(3752), + [anon_sym_and_eq] = ACTIONS(3750), + [anon_sym_or_eq] = ACTIONS(3750), + [anon_sym_xor_eq] = ACTIONS(3750), + [anon_sym_LT_EQ_GT] = ACTIONS(3752), + [anon_sym_or] = ACTIONS(3750), + [anon_sym_and] = ACTIONS(3750), + [anon_sym_bitor] = ACTIONS(3750), + [anon_sym_xor] = ACTIONS(3750), + [anon_sym_bitand] = ACTIONS(3750), + [anon_sym_not_eq] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + }, + [1644] = { + [sym__expression] = STATE(3500), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1645] = { + [sym_identifier] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3758), + [anon_sym_SLASH] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3758), + [anon_sym_PIPE_PIPE] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(3760), + [anon_sym_LT_EQ] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3758), + [anon_sym_GT_GT] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_QMARK] = ACTIONS(3760), + [anon_sym_STAR_EQ] = ACTIONS(3760), + [anon_sym_SLASH_EQ] = ACTIONS(3760), + [anon_sym_PERCENT_EQ] = ACTIONS(3760), + [anon_sym_PLUS_EQ] = ACTIONS(3760), + [anon_sym_DASH_EQ] = ACTIONS(3760), + [anon_sym_LT_LT_EQ] = ACTIONS(3760), + [anon_sym_GT_GT_EQ] = ACTIONS(3760), + [anon_sym_AMP_EQ] = ACTIONS(3760), + [anon_sym_CARET_EQ] = ACTIONS(3760), + [anon_sym_PIPE_EQ] = ACTIONS(3760), + [anon_sym_and_eq] = ACTIONS(3758), + [anon_sym_or_eq] = ACTIONS(3758), + [anon_sym_xor_eq] = ACTIONS(3758), + [anon_sym_LT_EQ_GT] = ACTIONS(3760), + [anon_sym_or] = ACTIONS(3758), + [anon_sym_and] = ACTIONS(3758), + [anon_sym_bitor] = ACTIONS(3758), + [anon_sym_xor] = ACTIONS(3758), + [anon_sym_bitand] = ACTIONS(3758), + [anon_sym_not_eq] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_DASH_GT] = ACTIONS(3760), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + }, + [1646] = { + [sym_identifier] = ACTIONS(3762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3762), + [anon_sym_SLASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_LT_LT] = ACTIONS(3762), + [anon_sym_GT_GT] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_RBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3764), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), + [anon_sym_and_eq] = ACTIONS(3762), + [anon_sym_or_eq] = ACTIONS(3762), + [anon_sym_xor_eq] = ACTIONS(3762), + [anon_sym_LT_EQ_GT] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [anon_sym_and] = ACTIONS(3762), + [anon_sym_bitor] = ACTIONS(3762), + [anon_sym_xor] = ACTIONS(3762), + [anon_sym_bitand] = ACTIONS(3762), + [anon_sym_not_eq] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + }, + [1647] = { + [sym__expression] = STATE(3081), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1648] = { + [sym__expression] = STATE(3578), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1649] = { + [sym__expression] = STATE(3560), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1650] = { + [sym__expression] = STATE(3071), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1651] = { + [sym__expression] = STATE(3814), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1652] = { + [sym__expression] = STATE(3937), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1653] = { + [sym__expression] = STATE(2479), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1654] = { + [sym__expression] = STATE(2479), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(3791), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1655] = { + [sym__expression] = STATE(3072), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1656] = { + [sym_template_argument_list] = STATE(1838), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1657] = { + [sym__expression] = STATE(3073), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1658] = { + [sym_identifier] = ACTIONS(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_COMMA] = ACTIONS(3795), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3795), + [anon_sym_TILDE] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_PIPE_PIPE] = ACTIONS(3795), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_PIPE] = ACTIONS(3793), + [anon_sym_CARET] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_EQ_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3793), + [anon_sym_GT_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_LT_LT] = ACTIONS(3793), + [anon_sym_GT_GT] = ACTIONS(3793), + [anon_sym_SEMI] = ACTIONS(3795), + [anon_sym_extern] = ACTIONS(3793), + [anon_sym___attribute__] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(3795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), + [anon_sym___declspec] = ACTIONS(3793), + [anon_sym___based] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_RBRACE] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_static] = ACTIONS(3793), + [anon_sym_register] = ACTIONS(3793), + [anon_sym_inline] = ACTIONS(3793), + [anon_sym_thread_local] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3793), + [anon_sym_volatile] = ACTIONS(3793), + [anon_sym_restrict] = ACTIONS(3793), + [anon_sym__Atomic] = ACTIONS(3793), + [anon_sym_mutable] = ACTIONS(3793), + [anon_sym_constexpr] = ACTIONS(3793), + [anon_sym_constinit] = ACTIONS(3793), + [anon_sym_consteval] = ACTIONS(3793), + [anon_sym_QMARK] = ACTIONS(3795), + [anon_sym_STAR_EQ] = ACTIONS(3795), + [anon_sym_SLASH_EQ] = ACTIONS(3795), + [anon_sym_PERCENT_EQ] = ACTIONS(3795), + [anon_sym_PLUS_EQ] = ACTIONS(3795), + [anon_sym_DASH_EQ] = ACTIONS(3795), + [anon_sym_LT_LT_EQ] = ACTIONS(3795), + [anon_sym_GT_GT_EQ] = ACTIONS(3795), + [anon_sym_AMP_EQ] = ACTIONS(3795), + [anon_sym_CARET_EQ] = ACTIONS(3795), + [anon_sym_PIPE_EQ] = ACTIONS(3795), + [anon_sym_and_eq] = ACTIONS(3793), + [anon_sym_or_eq] = ACTIONS(3793), + [anon_sym_xor_eq] = ACTIONS(3793), + [anon_sym_LT_EQ_GT] = ACTIONS(3795), + [anon_sym_or] = ACTIONS(3793), + [anon_sym_and] = ACTIONS(3793), + [anon_sym_bitor] = ACTIONS(3793), + [anon_sym_xor] = ACTIONS(3793), + [anon_sym_bitand] = ACTIONS(3793), + [anon_sym_not_eq] = ACTIONS(3793), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_DASH_GT] = ACTIONS(3795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3793), + [anon_sym_decltype] = ACTIONS(3793), + [anon_sym_virtual] = ACTIONS(3793), + [anon_sym_template] = ACTIONS(3793), + [anon_sym_operator] = ACTIONS(3793), + }, + [1659] = { + [sym__expression] = STATE(3075), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1660] = { + [sym__expression] = STATE(3929), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1661] = { + [sym_template_argument_list] = STATE(1838), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3797), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1662] = { + [sym__expression] = STATE(3935), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1663] = { + [sym__expression] = STATE(3076), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1664] = { + [sym__expression] = STATE(3680), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1665] = { + [sym__expression] = STATE(3677), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1666] = { + [sym__expression] = STATE(2482), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1667] = { + [sym__expression] = STATE(2490), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(3799), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1668] = { + [sym__expression] = STATE(3085), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1669] = { + [sym__expression] = STATE(2493), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1670] = { + [sym__expression] = STATE(3675), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1671] = { + [sym__expression] = STATE(3084), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1672] = { + [sym__expression] = STATE(3066), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(3801), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1673] = { + [sym__expression] = STATE(3444), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3803), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1674] = { + [sym__expression] = STATE(3923), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1675] = { + [sym__expression] = STATE(3060), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1676] = { + [sym__expression] = STATE(3496), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1677] = { + [sym__expression] = STATE(3888), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1678] = { + [sym_template_argument_list] = STATE(1828), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3523), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3787), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1679] = { + [sym__expression] = STATE(2935), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1680] = { + [sym__expression] = STATE(3785), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1681] = { + [sym_identifier] = ACTIONS(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_COMMA] = ACTIONS(3795), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3795), + [anon_sym_TILDE] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_PIPE_PIPE] = ACTIONS(3795), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_PIPE] = ACTIONS(3793), + [anon_sym_CARET] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_EQ_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3793), + [anon_sym_GT_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_LT_LT] = ACTIONS(3793), + [anon_sym_GT_GT] = ACTIONS(3793), + [anon_sym_extern] = ACTIONS(3793), + [anon_sym___attribute__] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(3795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), + [anon_sym___declspec] = ACTIONS(3793), + [anon_sym___based] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_static] = ACTIONS(3793), + [anon_sym_register] = ACTIONS(3793), + [anon_sym_inline] = ACTIONS(3793), + [anon_sym_thread_local] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3793), + [anon_sym_volatile] = ACTIONS(3793), + [anon_sym_restrict] = ACTIONS(3793), + [anon_sym__Atomic] = ACTIONS(3793), + [anon_sym_mutable] = ACTIONS(3793), + [anon_sym_constexpr] = ACTIONS(3793), + [anon_sym_constinit] = ACTIONS(3793), + [anon_sym_consteval] = ACTIONS(3793), + [anon_sym_QMARK] = ACTIONS(3795), + [anon_sym_STAR_EQ] = ACTIONS(3795), + [anon_sym_SLASH_EQ] = ACTIONS(3795), + [anon_sym_PERCENT_EQ] = ACTIONS(3795), + [anon_sym_PLUS_EQ] = ACTIONS(3795), + [anon_sym_DASH_EQ] = ACTIONS(3795), + [anon_sym_LT_LT_EQ] = ACTIONS(3795), + [anon_sym_GT_GT_EQ] = ACTIONS(3795), + [anon_sym_AMP_EQ] = ACTIONS(3795), + [anon_sym_CARET_EQ] = ACTIONS(3795), + [anon_sym_PIPE_EQ] = ACTIONS(3795), + [anon_sym_and_eq] = ACTIONS(3793), + [anon_sym_or_eq] = ACTIONS(3793), + [anon_sym_xor_eq] = ACTIONS(3793), + [anon_sym_LT_EQ_GT] = ACTIONS(3795), + [anon_sym_or] = ACTIONS(3793), + [anon_sym_and] = ACTIONS(3793), + [anon_sym_bitor] = ACTIONS(3793), + [anon_sym_xor] = ACTIONS(3793), + [anon_sym_bitand] = ACTIONS(3793), + [anon_sym_not_eq] = ACTIONS(3793), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_DASH_GT] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3793), + [anon_sym_decltype] = ACTIONS(3793), + [anon_sym_virtual] = ACTIONS(3793), + [anon_sym_template] = ACTIONS(3793), + [anon_sym_operator] = ACTIONS(3793), + [anon_sym_DOT_STAR] = ACTIONS(3795), + [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + }, + [1682] = { + [sym__expression] = STATE(3847), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1683] = { + [sym__expression] = STATE(2565), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(3805), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1684] = { + [sym_template_argument_list] = STATE(1828), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3523), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3531), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3807), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1685] = { + [sym__expression] = STATE(3776), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1686] = { + [sym__expression] = STATE(3673), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1687] = { + [sym__expression] = STATE(3069), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1688] = { + [sym__expression] = STATE(3770), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1689] = { + [sym__expression] = STATE(2994), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1690] = { + [sym__expression] = STATE(3940), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1691] = { + [sym__expression] = STATE(3982), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1692] = { + [sym__expression] = STATE(3661), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(3809), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1693] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1694] = { + [sym__expression] = STATE(3672), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1695] = { + [sym__expression] = STATE(3496), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1696] = { + [sym__expression] = STATE(3549), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3811), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1697] = { + [sym__expression] = STATE(3671), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1698] = { + [sym__expression] = STATE(3658), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3813), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1699] = { + [sym__expression] = STATE(3005), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1700] = { + [sym__expression] = STATE(3797), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1701] = { + [sym__expression] = STATE(3965), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1702] = { + [sym__expression] = STATE(3779), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(3815), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1703] = { + [sym_identifier] = ACTIONS(3744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_PERCENT] = ACTIONS(3744), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3744), + [anon_sym_CARET] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT_EQ] = ACTIONS(3746), + [anon_sym_LT_EQ] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_LT_LT] = ACTIONS(3744), + [anon_sym_GT_GT] = ACTIONS(3744), + [anon_sym_extern] = ACTIONS(3744), + [anon_sym___attribute__] = ACTIONS(3744), + [anon_sym_COLON_COLON] = ACTIONS(3746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), + [anon_sym___declspec] = ACTIONS(3744), + [anon_sym___based] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_static] = ACTIONS(3744), + [anon_sym_register] = ACTIONS(3744), + [anon_sym_inline] = ACTIONS(3744), + [anon_sym_thread_local] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_volatile] = ACTIONS(3744), + [anon_sym_restrict] = ACTIONS(3744), + [anon_sym__Atomic] = ACTIONS(3744), + [anon_sym_mutable] = ACTIONS(3744), + [anon_sym_constexpr] = ACTIONS(3744), + [anon_sym_constinit] = ACTIONS(3744), + [anon_sym_consteval] = ACTIONS(3744), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_STAR_EQ] = ACTIONS(3746), + [anon_sym_SLASH_EQ] = ACTIONS(3746), + [anon_sym_PERCENT_EQ] = ACTIONS(3746), + [anon_sym_PLUS_EQ] = ACTIONS(3746), + [anon_sym_DASH_EQ] = ACTIONS(3746), + [anon_sym_LT_LT_EQ] = ACTIONS(3746), + [anon_sym_GT_GT_EQ] = ACTIONS(3746), + [anon_sym_AMP_EQ] = ACTIONS(3746), + [anon_sym_CARET_EQ] = ACTIONS(3746), + [anon_sym_PIPE_EQ] = ACTIONS(3746), + [anon_sym_and_eq] = ACTIONS(3744), + [anon_sym_or_eq] = ACTIONS(3744), + [anon_sym_xor_eq] = ACTIONS(3744), + [anon_sym_LT_EQ_GT] = ACTIONS(3746), + [anon_sym_or] = ACTIONS(3744), + [anon_sym_and] = ACTIONS(3744), + [anon_sym_bitor] = ACTIONS(3744), + [anon_sym_xor] = ACTIONS(3744), + [anon_sym_bitand] = ACTIONS(3744), + [anon_sym_not_eq] = ACTIONS(3744), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3744), + [anon_sym_decltype] = ACTIONS(3744), + [anon_sym_virtual] = ACTIONS(3744), + [anon_sym_template] = ACTIONS(3744), + [anon_sym_operator] = ACTIONS(3744), + [anon_sym_DOT_STAR] = ACTIONS(3746), + [anon_sym_DASH_GT_STAR] = ACTIONS(3746), + }, + [1704] = { + [sym__expression] = STATE(3645), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1705] = { + [sym__expression] = STATE(3648), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(3817), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1706] = { + [sym__expression] = STATE(3062), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1707] = { + [sym__expression] = STATE(3449), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1708] = { + [sym__expression] = STATE(3985), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1709] = { + [sym__expression] = STATE(3956), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1710] = { + [sym__expression] = STATE(3969), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3819), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1711] = { + [sym_template_argument_list] = STATE(1752), + [sym_identifier] = ACTIONS(3679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_RPAREN] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3681), + [anon_sym_PIPE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3691), + [anon_sym_extern] = ACTIONS(3679), + [anon_sym___attribute__] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3679), + [anon_sym___based] = ACTIONS(3679), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_EQ] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3679), + [anon_sym_register] = ACTIONS(3679), + [anon_sym_inline] = ACTIONS(3679), + [anon_sym_thread_local] = ACTIONS(3679), + [anon_sym_const] = ACTIONS(3679), + [anon_sym_volatile] = ACTIONS(3679), + [anon_sym_restrict] = ACTIONS(3679), + [anon_sym__Atomic] = ACTIONS(3679), + [anon_sym_mutable] = ACTIONS(3679), + [anon_sym_constexpr] = ACTIONS(3679), + [anon_sym_constinit] = ACTIONS(3679), + [anon_sym_consteval] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3686), + [anon_sym_or_eq] = ACTIONS(3686), + [anon_sym_xor_eq] = ACTIONS(3686), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_bitor] = ACTIONS(3686), + [anon_sym_xor] = ACTIONS(3686), + [anon_sym_bitand] = ACTIONS(3686), + [anon_sym_not_eq] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3679), + [anon_sym_decltype] = ACTIONS(3679), + [anon_sym_virtual] = ACTIONS(3679), + [anon_sym_template] = ACTIONS(3679), + [anon_sym_operator] = ACTIONS(3679), + }, + [1712] = { + [sym__expression] = STATE(3777), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1713] = { + [sym__expression] = STATE(3922), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1714] = { + [sym__expression] = STATE(2975), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(3821), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1715] = { + [sym_identifier] = ACTIONS(3740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT_EQ] = ACTIONS(3742), + [anon_sym_LT_EQ] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3740), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_extern] = ACTIONS(3740), + [anon_sym___attribute__] = ACTIONS(3740), + [anon_sym_COLON_COLON] = ACTIONS(3742), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), + [anon_sym___declspec] = ACTIONS(3740), + [anon_sym___based] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_register] = ACTIONS(3740), + [anon_sym_inline] = ACTIONS(3740), + [anon_sym_thread_local] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_volatile] = ACTIONS(3740), + [anon_sym_restrict] = ACTIONS(3740), + [anon_sym__Atomic] = ACTIONS(3740), + [anon_sym_mutable] = ACTIONS(3740), + [anon_sym_constexpr] = ACTIONS(3740), + [anon_sym_constinit] = ACTIONS(3740), + [anon_sym_consteval] = ACTIONS(3740), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_STAR_EQ] = ACTIONS(3742), + [anon_sym_SLASH_EQ] = ACTIONS(3742), + [anon_sym_PERCENT_EQ] = ACTIONS(3742), + [anon_sym_PLUS_EQ] = ACTIONS(3742), + [anon_sym_DASH_EQ] = ACTIONS(3742), + [anon_sym_LT_LT_EQ] = ACTIONS(3742), + [anon_sym_GT_GT_EQ] = ACTIONS(3742), + [anon_sym_AMP_EQ] = ACTIONS(3742), + [anon_sym_CARET_EQ] = ACTIONS(3742), + [anon_sym_PIPE_EQ] = ACTIONS(3742), + [anon_sym_and_eq] = ACTIONS(3740), + [anon_sym_or_eq] = ACTIONS(3740), + [anon_sym_xor_eq] = ACTIONS(3740), + [anon_sym_LT_EQ_GT] = ACTIONS(3742), + [anon_sym_or] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_bitor] = ACTIONS(3740), + [anon_sym_xor] = ACTIONS(3740), + [anon_sym_bitand] = ACTIONS(3740), + [anon_sym_not_eq] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3740), + [anon_sym_decltype] = ACTIONS(3740), + [anon_sym_virtual] = ACTIONS(3740), + [anon_sym_template] = ACTIONS(3740), + [anon_sym_operator] = ACTIONS(3740), + [anon_sym_DOT_STAR] = ACTIONS(3742), + [anon_sym_DASH_GT_STAR] = ACTIONS(3742), + }, + [1716] = { + [sym_identifier] = ACTIONS(3736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_RPAREN] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT_EQ] = ACTIONS(3738), + [anon_sym_LT_EQ] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_extern] = ACTIONS(3736), + [anon_sym___attribute__] = ACTIONS(3736), + [anon_sym_COLON_COLON] = ACTIONS(3738), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), + [anon_sym___declspec] = ACTIONS(3736), + [anon_sym___based] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3736), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3736), + [anon_sym_register] = ACTIONS(3736), + [anon_sym_inline] = ACTIONS(3736), + [anon_sym_thread_local] = ACTIONS(3736), + [anon_sym_const] = ACTIONS(3736), + [anon_sym_volatile] = ACTIONS(3736), + [anon_sym_restrict] = ACTIONS(3736), + [anon_sym__Atomic] = ACTIONS(3736), + [anon_sym_mutable] = ACTIONS(3736), + [anon_sym_constexpr] = ACTIONS(3736), + [anon_sym_constinit] = ACTIONS(3736), + [anon_sym_consteval] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_STAR_EQ] = ACTIONS(3738), + [anon_sym_SLASH_EQ] = ACTIONS(3738), + [anon_sym_PERCENT_EQ] = ACTIONS(3738), + [anon_sym_PLUS_EQ] = ACTIONS(3738), + [anon_sym_DASH_EQ] = ACTIONS(3738), + [anon_sym_LT_LT_EQ] = ACTIONS(3738), + [anon_sym_GT_GT_EQ] = ACTIONS(3738), + [anon_sym_AMP_EQ] = ACTIONS(3738), + [anon_sym_CARET_EQ] = ACTIONS(3738), + [anon_sym_PIPE_EQ] = ACTIONS(3738), + [anon_sym_and_eq] = ACTIONS(3736), + [anon_sym_or_eq] = ACTIONS(3736), + [anon_sym_xor_eq] = ACTIONS(3736), + [anon_sym_LT_EQ_GT] = ACTIONS(3738), + [anon_sym_or] = ACTIONS(3736), + [anon_sym_and] = ACTIONS(3736), + [anon_sym_bitor] = ACTIONS(3736), + [anon_sym_xor] = ACTIONS(3736), + [anon_sym_bitand] = ACTIONS(3736), + [anon_sym_not_eq] = ACTIONS(3736), + [anon_sym_DASH_DASH] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3736), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3736), + [anon_sym_decltype] = ACTIONS(3736), + [anon_sym_virtual] = ACTIONS(3736), + [anon_sym_template] = ACTIONS(3736), + [anon_sym_operator] = ACTIONS(3736), + [anon_sym_DOT_STAR] = ACTIONS(3738), + [anon_sym_DASH_GT_STAR] = ACTIONS(3738), + }, + [1717] = { + [sym__expression] = STATE(3942), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1718] = { + [sym__expression] = STATE(3444), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1719] = { + [sym__expression] = STATE(3886), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1720] = { + [sym__expression] = STATE(3832), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1721] = { + [sym__expression] = STATE(3556), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1722] = { + [sym__expression] = STATE(3964), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1723] = { + [sym__expression] = STATE(3760), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1724] = { + [sym__expression] = STATE(3805), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1725] = { + [sym__expression] = STATE(3086), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_compl] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1717), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1726] = { + [sym__expression] = STATE(3955), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1727] = { + [sym__expression] = STATE(3870), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1728] = { + [sym_template_argument_list] = STATE(1838), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3807), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1729] = { + [sym__expression] = STATE(3894), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1730] = { + [sym__expression] = STATE(3815), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1731] = { + [sym__expression] = STATE(2960), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1732] = { + [sym__expression] = STATE(2536), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1733] = { + [sym__expression] = STATE(2926), + [sym_conditional_expression] = STATE(3068), + [sym_assignment_expression] = STATE(3068), + [sym_pointer_expression] = STATE(3061), + [sym_unary_expression] = STATE(3068), + [sym_binary_expression] = STATE(3068), + [sym_update_expression] = STATE(3068), + [sym_cast_expression] = STATE(3068), + [sym_sizeof_expression] = STATE(3068), + [sym_subscript_expression] = STATE(3061), + [sym_call_expression] = STATE(3061), + [sym_field_expression] = STATE(3061), + [sym_compound_literal_expression] = STATE(3068), + [sym_parenthesized_expression] = STATE(3061), + [sym_char_literal] = STATE(2931), + [sym_concatenated_string] = STATE(2931), + [sym_string_literal] = STATE(1820), + [sym__class_name] = STATE(6457), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3068), + [sym_raw_string_literal] = STATE(1820), + [sym_co_await_expression] = STATE(3068), + [sym_new_expression] = STATE(3068), + [sym_delete_expression] = STATE(3068), + [sym_requires_clause] = STATE(3068), + [sym_requires_expression] = STATE(3068), + [sym_lambda_expression] = STATE(3068), + [sym_lambda_capture_specifier] = STATE(4763), + [sym_fold_expression] = STATE(3068), + [sym_parameter_pack_expansion] = STATE(3068), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3061), + [sym_qualified_type_identifier] = STATE(6457), + [sym_user_defined_literal] = STATE(3068), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(3823), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_compl] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1675), + [sym_number_literal] = ACTIONS(1677), + [anon_sym_L_SQUOTE] = ACTIONS(1679), + [anon_sym_u_SQUOTE] = ACTIONS(1679), + [anon_sym_U_SQUOTE] = ACTIONS(1679), + [anon_sym_u8_SQUOTE] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_L_DQUOTE] = ACTIONS(1681), + [anon_sym_u_DQUOTE] = ACTIONS(1681), + [anon_sym_U_DQUOTE] = ACTIONS(1681), + [anon_sym_u8_DQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1685), + [anon_sym_R_DQUOTE] = ACTIONS(1687), + [anon_sym_LR_DQUOTE] = ACTIONS(1687), + [anon_sym_uR_DQUOTE] = ACTIONS(1687), + [anon_sym_UR_DQUOTE] = ACTIONS(1687), + [anon_sym_u8R_DQUOTE] = ACTIONS(1687), + [anon_sym_co_await] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_requires] = ACTIONS(1693), + [sym_this] = ACTIONS(1683), + [sym_nullptr] = ACTIONS(1683), + }, + [1734] = { + [sym__expression] = STATE(3676), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1735] = { + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1736] = { + [sym__expression] = STATE(3449), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3058), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3058), + [sym_call_expression] = STATE(3058), + [sym_field_expression] = STATE(3058), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3058), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3058), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN2] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2995), + [anon_sym_PLUS] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_compl] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_sizeof] = ACTIONS(3003), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3005), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3007), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1737] = { + [sym__expression] = STATE(3049), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1738] = { + [sym__expression] = STATE(3898), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1739] = { + [sym__expression] = STATE(2540), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1740] = { + [sym__expression] = STATE(2669), + [sym_conditional_expression] = STATE(2709), + [sym_assignment_expression] = STATE(2709), + [sym_pointer_expression] = STATE(2706), + [sym_unary_expression] = STATE(2709), + [sym_binary_expression] = STATE(2709), + [sym_update_expression] = STATE(2709), + [sym_cast_expression] = STATE(2709), + [sym_sizeof_expression] = STATE(2709), + [sym_subscript_expression] = STATE(2706), + [sym_call_expression] = STATE(2706), + [sym_field_expression] = STATE(2706), + [sym_compound_literal_expression] = STATE(2709), + [sym_parenthesized_expression] = STATE(2706), + [sym_char_literal] = STATE(2583), + [sym_concatenated_string] = STATE(2583), + [sym_string_literal] = STATE(1795), + [sym__class_name] = STATE(6425), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2709), + [sym_raw_string_literal] = STATE(1795), + [sym_co_await_expression] = STATE(2709), + [sym_new_expression] = STATE(2709), + [sym_delete_expression] = STATE(2709), + [sym_requires_clause] = STATE(2709), + [sym_requires_expression] = STATE(2709), + [sym_lambda_expression] = STATE(2709), + [sym_lambda_capture_specifier] = STATE(4777), + [sym_fold_expression] = STATE(2709), + [sym_parameter_pack_expansion] = STATE(2709), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2706), + [sym_qualified_type_identifier] = STATE(6425), + [sym_user_defined_literal] = STATE(2709), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_compl] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1565), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1573), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_co_await] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_requires] = ACTIONS(1581), + [sym_this] = ACTIONS(1571), + [sym_nullptr] = ACTIONS(1571), + }, + [1741] = { + [sym__expression] = STATE(2542), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1742] = { + [sym__expression] = STATE(2544), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1743] = { + [sym__expression] = STATE(2545), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1744] = { + [sym__expression] = STATE(3703), + [sym_conditional_expression] = STATE(3901), + [sym_assignment_expression] = STATE(3901), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3901), + [sym_binary_expression] = STATE(3901), + [sym_update_expression] = STATE(3901), + [sym_cast_expression] = STATE(3901), + [sym_sizeof_expression] = STATE(3901), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3901), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3783), + [sym_concatenated_string] = STATE(3783), + [sym_string_literal] = STATE(3017), + [sym__class_name] = STATE(6582), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3901), + [sym_raw_string_literal] = STATE(3017), + [sym_co_await_expression] = STATE(3901), + [sym_new_expression] = STATE(3901), + [sym_delete_expression] = STATE(3901), + [sym_requires_clause] = STATE(3901), + [sym_requires_expression] = STATE(3901), + [sym_lambda_expression] = STATE(3901), + [sym_lambda_capture_specifier] = STATE(4769), + [sym_fold_expression] = STATE(3901), + [sym_parameter_pack_expansion] = STATE(3901), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4913), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6582), + [sym_user_defined_literal] = STATE(3901), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN2] = ACTIONS(2411), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_compl] = ACTIONS(2415), + [anon_sym_DASH_DASH] = ACTIONS(2433), + [anon_sym_PLUS_PLUS] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2435), + [sym_number_literal] = ACTIONS(2437), + [anon_sym_L_SQUOTE] = ACTIONS(2439), + [anon_sym_u_SQUOTE] = ACTIONS(2439), + [anon_sym_U_SQUOTE] = ACTIONS(2439), + [anon_sym_u8_SQUOTE] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_L_DQUOTE] = ACTIONS(2441), + [anon_sym_u_DQUOTE] = ACTIONS(2441), + [anon_sym_U_DQUOTE] = ACTIONS(2441), + [anon_sym_u8_DQUOTE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym_true] = ACTIONS(2443), + [sym_false] = ACTIONS(2443), + [sym_null] = ACTIONS(2443), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2453), + [anon_sym_R_DQUOTE] = ACTIONS(2455), + [anon_sym_LR_DQUOTE] = ACTIONS(2455), + [anon_sym_uR_DQUOTE] = ACTIONS(2455), + [anon_sym_UR_DQUOTE] = ACTIONS(2455), + [anon_sym_u8R_DQUOTE] = ACTIONS(2455), + [anon_sym_co_await] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2459), + [anon_sym_requires] = ACTIONS(2461), + [sym_this] = ACTIONS(2443), + [sym_nullptr] = ACTIONS(2443), + }, + [1745] = { + [sym__expression] = STATE(2546), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2496), + [sym_unary_expression] = STATE(2502), + [sym_binary_expression] = STATE(2502), + [sym_update_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2496), + [sym_call_expression] = STATE(2496), + [sym_field_expression] = STATE(2496), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2496), + [sym_char_literal] = STATE(2358), + [sym_concatenated_string] = STATE(2358), + [sym_string_literal] = STATE(1780), + [sym__class_name] = STATE(6210), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(2502), + [sym_raw_string_literal] = STATE(1780), + [sym_co_await_expression] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_requires_clause] = STATE(2502), + [sym_requires_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), + [sym_lambda_capture_specifier] = STATE(4764), + [sym_fold_expression] = STATE(2502), + [sym_parameter_pack_expansion] = STATE(2502), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2496), + [sym_qualified_type_identifier] = STATE(6210), + [sym_user_defined_literal] = STATE(2502), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_compl] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1529), + [anon_sym_u_SQUOTE] = ACTIONS(1529), + [anon_sym_U_SQUOTE] = ACTIONS(1529), + [anon_sym_u8_SQUOTE] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1535), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [anon_sym_co_await] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_requires] = ACTIONS(1543), + [sym_this] = ACTIONS(1533), + [sym_nullptr] = ACTIONS(1533), + }, + [1746] = { + [sym__expression] = STATE(3933), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(2766), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(2766), + [sym_call_expression] = STATE(2766), + [sym_field_expression] = STATE(2766), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(2766), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(2766), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(139), + [anon_sym_new] = ACTIONS(141), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1747] = { + [sym__expression] = STATE(3040), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1748] = { + [sym__expression] = STATE(3899), + [sym_conditional_expression] = STATE(3521), + [sym_assignment_expression] = STATE(3521), + [sym_pointer_expression] = STATE(3097), + [sym_unary_expression] = STATE(3521), + [sym_binary_expression] = STATE(3521), + [sym_update_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_sizeof_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3097), + [sym_call_expression] = STATE(3097), + [sym_field_expression] = STATE(3097), + [sym_compound_literal_expression] = STATE(3521), + [sym_parenthesized_expression] = STATE(3097), + [sym_char_literal] = STATE(3372), + [sym_concatenated_string] = STATE(3372), + [sym_string_literal] = STATE(2568), + [sym__class_name] = STATE(6367), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3521), + [sym_raw_string_literal] = STATE(2568), + [sym_co_await_expression] = STATE(3521), + [sym_new_expression] = STATE(3521), + [sym_delete_expression] = STATE(3521), + [sym_requires_clause] = STATE(3521), + [sym_requires_expression] = STATE(3521), + [sym_lambda_expression] = STATE(3521), + [sym_lambda_capture_specifier] = STATE(4775), + [sym_fold_expression] = STATE(3521), + [sym_parameter_pack_expansion] = STATE(3521), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4894), + [sym_qualified_identifier] = STATE(3097), + [sym_qualified_type_identifier] = STATE(6367), + [sym_user_defined_literal] = STATE(3521), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LPAREN2] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3019), + [anon_sym_PLUS] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(3019), + [anon_sym_compl] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_sizeof] = ACTIONS(3029), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3031), + [anon_sym_R_DQUOTE] = ACTIONS(137), + [anon_sym_LR_DQUOTE] = ACTIONS(137), + [anon_sym_uR_DQUOTE] = ACTIONS(137), + [anon_sym_UR_DQUOTE] = ACTIONS(137), + [anon_sym_u8R_DQUOTE] = ACTIONS(137), + [anon_sym_co_await] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3035), + [anon_sym_requires] = ACTIONS(143), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + }, + [1749] = { + [sym__expression] = STATE(3082), + [sym_conditional_expression] = STATE(3098), + [sym_assignment_expression] = STATE(3098), + [sym_pointer_expression] = STATE(2876), + [sym_unary_expression] = STATE(3098), + [sym_binary_expression] = STATE(3098), + [sym_update_expression] = STATE(3098), + [sym_cast_expression] = STATE(3098), + [sym_sizeof_expression] = STATE(3098), + [sym_subscript_expression] = STATE(2876), + [sym_call_expression] = STATE(2876), + [sym_field_expression] = STATE(2876), + [sym_compound_literal_expression] = STATE(3098), + [sym_parenthesized_expression] = STATE(2876), + [sym_char_literal] = STATE(2988), + [sym_concatenated_string] = STATE(2988), + [sym_string_literal] = STATE(1834), + [sym__class_name] = STATE(6294), + [sym_template_type] = STATE(3311), + [sym_template_function] = STATE(3098), + [sym_raw_string_literal] = STATE(1834), + [sym_co_await_expression] = STATE(3098), + [sym_new_expression] = STATE(3098), + [sym_delete_expression] = STATE(3098), + [sym_requires_clause] = STATE(3098), + [sym_requires_expression] = STATE(3098), + [sym_lambda_expression] = STATE(3098), + [sym_lambda_capture_specifier] = STATE(4765), + [sym_fold_expression] = STATE(3098), + [sym_parameter_pack_expansion] = STATE(3098), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2876), + [sym_qualified_type_identifier] = STATE(6294), + [sym_user_defined_literal] = STATE(3098), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1519), + [sym_primitive_type] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_R_DQUOTE] = ACTIONS(1455), + [anon_sym_LR_DQUOTE] = ACTIONS(1455), + [anon_sym_uR_DQUOTE] = ACTIONS(1455), + [anon_sym_UR_DQUOTE] = ACTIONS(1455), + [anon_sym_u8R_DQUOTE] = ACTIONS(1455), + [anon_sym_co_await] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1459), + [anon_sym_requires] = ACTIONS(1461), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + }, + [1750] = { + [sym_template_argument_list] = STATE(1754), + [sym_identifier] = ACTIONS(3679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3681), + [anon_sym_COMMA] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LPAREN2] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3681), + [anon_sym_PIPE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3784), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_extern] = ACTIONS(3679), + [anon_sym___attribute__] = ACTIONS(3679), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3679), + [anon_sym___based] = ACTIONS(3679), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_EQ] = ACTIONS(3688), + [anon_sym_static] = ACTIONS(3679), + [anon_sym_register] = ACTIONS(3679), + [anon_sym_inline] = ACTIONS(3679), + [anon_sym_thread_local] = ACTIONS(3679), + [anon_sym_const] = ACTIONS(3679), + [anon_sym_volatile] = ACTIONS(3679), + [anon_sym_restrict] = ACTIONS(3679), + [anon_sym__Atomic] = ACTIONS(3679), + [anon_sym_mutable] = ACTIONS(3679), + [anon_sym_constexpr] = ACTIONS(3679), + [anon_sym_constinit] = ACTIONS(3679), + [anon_sym_consteval] = ACTIONS(3679), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3686), + [anon_sym_or_eq] = ACTIONS(3686), + [anon_sym_xor_eq] = ACTIONS(3686), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_bitor] = ACTIONS(3686), + [anon_sym_xor] = ACTIONS(3686), + [anon_sym_bitand] = ACTIONS(3686), + [anon_sym_not_eq] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3679), + [anon_sym_decltype] = ACTIONS(3679), + [anon_sym_virtual] = ACTIONS(3679), + [anon_sym_template] = ACTIONS(3679), + [anon_sym_operator] = ACTIONS(3679), + }, + [1751] = { + [sym_identifier] = ACTIONS(3766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_CARET] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_EQ_EQ] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_LT_LT] = ACTIONS(3773), + [anon_sym_GT_GT] = ACTIONS(3773), + [anon_sym_SEMI] = ACTIONS(3768), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3768), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_RBRACE] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(3773), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_STAR_EQ] = ACTIONS(3778), + [anon_sym_SLASH_EQ] = ACTIONS(3778), + [anon_sym_PERCENT_EQ] = ACTIONS(3778), + [anon_sym_PLUS_EQ] = ACTIONS(3778), + [anon_sym_DASH_EQ] = ACTIONS(3778), + [anon_sym_LT_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_GT_EQ] = ACTIONS(3778), + [anon_sym_AMP_EQ] = ACTIONS(3778), + [anon_sym_CARET_EQ] = ACTIONS(3778), + [anon_sym_PIPE_EQ] = ACTIONS(3778), + [anon_sym_and_eq] = ACTIONS(3773), + [anon_sym_or_eq] = ACTIONS(3773), + [anon_sym_xor_eq] = ACTIONS(3773), + [anon_sym_LT_EQ_GT] = ACTIONS(3778), + [anon_sym_or] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_bitor] = ACTIONS(3773), + [anon_sym_xor] = ACTIONS(3773), + [anon_sym_bitand] = ACTIONS(3773), + [anon_sym_not_eq] = ACTIONS(3773), + [anon_sym_DASH_DASH] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_DASH_GT] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + }, + [1752] = { + [sym_identifier] = ACTIONS(3766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3778), + [anon_sym_RPAREN] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_CARET] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_EQ_EQ] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_LT_LT] = ACTIONS(3773), + [anon_sym_GT_GT] = ACTIONS(3773), + [anon_sym_SEMI] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(3773), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_STAR_EQ] = ACTIONS(3778), + [anon_sym_SLASH_EQ] = ACTIONS(3778), + [anon_sym_PERCENT_EQ] = ACTIONS(3778), + [anon_sym_PLUS_EQ] = ACTIONS(3778), + [anon_sym_DASH_EQ] = ACTIONS(3778), + [anon_sym_LT_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_GT_EQ] = ACTIONS(3778), + [anon_sym_AMP_EQ] = ACTIONS(3778), + [anon_sym_CARET_EQ] = ACTIONS(3778), + [anon_sym_PIPE_EQ] = ACTIONS(3778), + [anon_sym_and_eq] = ACTIONS(3773), + [anon_sym_or_eq] = ACTIONS(3773), + [anon_sym_xor_eq] = ACTIONS(3773), + [anon_sym_LT_EQ_GT] = ACTIONS(3778), + [anon_sym_or] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_bitor] = ACTIONS(3773), + [anon_sym_xor] = ACTIONS(3773), + [anon_sym_bitand] = ACTIONS(3773), + [anon_sym_not_eq] = ACTIONS(3773), + [anon_sym_DASH_DASH] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_DASH_GT] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + }, + [1753] = { + [sym_template_argument_list] = STATE(1837), + [sym_identifier] = ACTIONS(3508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), + [anon_sym_COMMA] = ACTIONS(3523), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3508), + [anon_sym___attribute__] = ACTIONS(3508), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3508), + [anon_sym___based] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_register] = ACTIONS(3508), + [anon_sym_inline] = ACTIONS(3508), + [anon_sym_thread_local] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3508), + [anon_sym_restrict] = ACTIONS(3508), + [anon_sym__Atomic] = ACTIONS(3508), + [anon_sym_mutable] = ACTIONS(3508), + [anon_sym_constexpr] = ACTIONS(3508), + [anon_sym_constinit] = ACTIONS(3508), + [anon_sym_consteval] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3544), + [anon_sym_SLASH_EQ] = ACTIONS(3544), + [anon_sym_PERCENT_EQ] = ACTIONS(3544), + [anon_sym_PLUS_EQ] = ACTIONS(3544), + [anon_sym_DASH_EQ] = ACTIONS(3544), + [anon_sym_LT_LT_EQ] = ACTIONS(3544), + [anon_sym_GT_GT_EQ] = ACTIONS(3544), + [anon_sym_AMP_EQ] = ACTIONS(3544), + [anon_sym_CARET_EQ] = ACTIONS(3544), + [anon_sym_PIPE_EQ] = ACTIONS(3544), + [anon_sym_and_eq] = ACTIONS(3540), + [anon_sym_or_eq] = ACTIONS(3540), + [anon_sym_xor_eq] = ACTIONS(3540), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3508), + [anon_sym_decltype] = ACTIONS(3508), + [anon_sym_virtual] = ACTIONS(3508), + [anon_sym_template] = ACTIONS(3508), + [anon_sym_operator] = ACTIONS(3508), + }, + [1754] = { + [sym_identifier] = ACTIONS(3766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_CARET] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_EQ_EQ] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_LT_LT] = ACTIONS(3773), + [anon_sym_GT_GT] = ACTIONS(3773), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(3775), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_STAR_EQ] = ACTIONS(3778), + [anon_sym_SLASH_EQ] = ACTIONS(3778), + [anon_sym_PERCENT_EQ] = ACTIONS(3778), + [anon_sym_PLUS_EQ] = ACTIONS(3778), + [anon_sym_DASH_EQ] = ACTIONS(3778), + [anon_sym_LT_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_GT_EQ] = ACTIONS(3778), + [anon_sym_AMP_EQ] = ACTIONS(3778), + [anon_sym_CARET_EQ] = ACTIONS(3778), + [anon_sym_PIPE_EQ] = ACTIONS(3778), + [anon_sym_and_eq] = ACTIONS(3773), + [anon_sym_or_eq] = ACTIONS(3773), + [anon_sym_xor_eq] = ACTIONS(3773), + [anon_sym_LT_EQ_GT] = ACTIONS(3778), + [anon_sym_or] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_bitor] = ACTIONS(3773), + [anon_sym_xor] = ACTIONS(3773), + [anon_sym_bitand] = ACTIONS(3773), + [anon_sym_not_eq] = ACTIONS(3773), + [anon_sym_DASH_DASH] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_DASH_GT] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + }, + [1755] = { + [sym_identifier] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3758), + [anon_sym_SLASH] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3758), + [anon_sym_PIPE_PIPE] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(3760), + [anon_sym_LT_EQ] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3758), + [anon_sym_GT_GT] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_QMARK] = ACTIONS(3760), + [anon_sym_STAR_EQ] = ACTIONS(3760), + [anon_sym_SLASH_EQ] = ACTIONS(3760), + [anon_sym_PERCENT_EQ] = ACTIONS(3760), + [anon_sym_PLUS_EQ] = ACTIONS(3760), + [anon_sym_DASH_EQ] = ACTIONS(3760), + [anon_sym_LT_LT_EQ] = ACTIONS(3760), + [anon_sym_GT_GT_EQ] = ACTIONS(3760), + [anon_sym_AMP_EQ] = ACTIONS(3760), + [anon_sym_CARET_EQ] = ACTIONS(3760), + [anon_sym_PIPE_EQ] = ACTIONS(3760), + [anon_sym_LT_EQ_GT] = ACTIONS(3760), + [anon_sym_or] = ACTIONS(3758), + [anon_sym_and] = ACTIONS(3758), + [anon_sym_bitor] = ACTIONS(3758), + [anon_sym_xor] = ACTIONS(3758), + [anon_sym_bitand] = ACTIONS(3758), + [anon_sym_not_eq] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_DASH_GT] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_DOT_STAR] = ACTIONS(3760), + [anon_sym_DASH_GT_STAR] = ACTIONS(3760), + }, + [1756] = { + [sym_identifier] = ACTIONS(3740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT_EQ] = ACTIONS(3742), + [anon_sym_LT_EQ] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3740), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_extern] = ACTIONS(3740), + [anon_sym___attribute__] = ACTIONS(3740), + [anon_sym_COLON_COLON] = ACTIONS(3742), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), + [anon_sym___declspec] = ACTIONS(3740), + [anon_sym___based] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_register] = ACTIONS(3740), + [anon_sym_inline] = ACTIONS(3740), + [anon_sym_thread_local] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_volatile] = ACTIONS(3740), + [anon_sym_restrict] = ACTIONS(3740), + [anon_sym__Atomic] = ACTIONS(3740), + [anon_sym_mutable] = ACTIONS(3740), + [anon_sym_constexpr] = ACTIONS(3740), + [anon_sym_constinit] = ACTIONS(3740), + [anon_sym_consteval] = ACTIONS(3740), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_STAR_EQ] = ACTIONS(3742), + [anon_sym_SLASH_EQ] = ACTIONS(3742), + [anon_sym_PERCENT_EQ] = ACTIONS(3742), + [anon_sym_PLUS_EQ] = ACTIONS(3742), + [anon_sym_DASH_EQ] = ACTIONS(3742), + [anon_sym_LT_LT_EQ] = ACTIONS(3742), + [anon_sym_GT_GT_EQ] = ACTIONS(3742), + [anon_sym_AMP_EQ] = ACTIONS(3742), + [anon_sym_CARET_EQ] = ACTIONS(3742), + [anon_sym_PIPE_EQ] = ACTIONS(3742), + [anon_sym_LT_EQ_GT] = ACTIONS(3742), + [anon_sym_or] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_bitor] = ACTIONS(3740), + [anon_sym_xor] = ACTIONS(3740), + [anon_sym_bitand] = ACTIONS(3740), + [anon_sym_not_eq] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3740), + [anon_sym_decltype] = ACTIONS(3740), + [anon_sym_virtual] = ACTIONS(3740), + [anon_sym_template] = ACTIONS(3740), + [anon_sym_operator] = ACTIONS(3740), + [anon_sym_DOT_STAR] = ACTIONS(3742), + [anon_sym_DASH_GT_STAR] = ACTIONS(3742), + }, + [1757] = { + [sym_identifier] = ACTIONS(3736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_RPAREN] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT_EQ] = ACTIONS(3738), + [anon_sym_LT_EQ] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_extern] = ACTIONS(3736), + [anon_sym___attribute__] = ACTIONS(3736), + [anon_sym_COLON_COLON] = ACTIONS(3738), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), + [anon_sym___declspec] = ACTIONS(3736), + [anon_sym___based] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3736), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3736), + [anon_sym_register] = ACTIONS(3736), + [anon_sym_inline] = ACTIONS(3736), + [anon_sym_thread_local] = ACTIONS(3736), + [anon_sym_const] = ACTIONS(3736), + [anon_sym_volatile] = ACTIONS(3736), + [anon_sym_restrict] = ACTIONS(3736), + [anon_sym__Atomic] = ACTIONS(3736), + [anon_sym_mutable] = ACTIONS(3736), + [anon_sym_constexpr] = ACTIONS(3736), + [anon_sym_constinit] = ACTIONS(3736), + [anon_sym_consteval] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_STAR_EQ] = ACTIONS(3738), + [anon_sym_SLASH_EQ] = ACTIONS(3738), + [anon_sym_PERCENT_EQ] = ACTIONS(3738), + [anon_sym_PLUS_EQ] = ACTIONS(3738), + [anon_sym_DASH_EQ] = ACTIONS(3738), + [anon_sym_LT_LT_EQ] = ACTIONS(3738), + [anon_sym_GT_GT_EQ] = ACTIONS(3738), + [anon_sym_AMP_EQ] = ACTIONS(3738), + [anon_sym_CARET_EQ] = ACTIONS(3738), + [anon_sym_PIPE_EQ] = ACTIONS(3738), + [anon_sym_LT_EQ_GT] = ACTIONS(3738), + [anon_sym_or] = ACTIONS(3736), + [anon_sym_and] = ACTIONS(3736), + [anon_sym_bitor] = ACTIONS(3736), + [anon_sym_xor] = ACTIONS(3736), + [anon_sym_bitand] = ACTIONS(3736), + [anon_sym_not_eq] = ACTIONS(3736), + [anon_sym_DASH_DASH] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3736), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3736), + [anon_sym_decltype] = ACTIONS(3736), + [anon_sym_virtual] = ACTIONS(3736), + [anon_sym_template] = ACTIONS(3736), + [anon_sym_operator] = ACTIONS(3736), + [anon_sym_DOT_STAR] = ACTIONS(3738), + [anon_sym_DASH_GT_STAR] = ACTIONS(3738), + }, + [1758] = { + [sym_identifier] = ACTIONS(3762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3762), + [anon_sym_SLASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_LT_LT] = ACTIONS(3762), + [anon_sym_GT_GT] = ACTIONS(3762), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3764), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), + [anon_sym_LT_EQ_GT] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [anon_sym_and] = ACTIONS(3762), + [anon_sym_bitor] = ACTIONS(3762), + [anon_sym_xor] = ACTIONS(3762), + [anon_sym_bitand] = ACTIONS(3762), + [anon_sym_not_eq] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_DOT_STAR] = ACTIONS(3764), + [anon_sym_DASH_GT_STAR] = ACTIONS(3764), + }, + [1759] = { + [sym_identifier] = ACTIONS(3750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3750), + [anon_sym_SLASH] = ACTIONS(3750), + [anon_sym_PERCENT] = ACTIONS(3750), + [anon_sym_PIPE_PIPE] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3752), + [anon_sym_BANG_EQ] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT_EQ] = ACTIONS(3752), + [anon_sym_LT_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(3750), + [anon_sym_GT_GT] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_STAR_EQ] = ACTIONS(3752), + [anon_sym_SLASH_EQ] = ACTIONS(3752), + [anon_sym_PERCENT_EQ] = ACTIONS(3752), + [anon_sym_PLUS_EQ] = ACTIONS(3752), + [anon_sym_DASH_EQ] = ACTIONS(3752), + [anon_sym_LT_LT_EQ] = ACTIONS(3752), + [anon_sym_GT_GT_EQ] = ACTIONS(3752), + [anon_sym_AMP_EQ] = ACTIONS(3752), + [anon_sym_CARET_EQ] = ACTIONS(3752), + [anon_sym_PIPE_EQ] = ACTIONS(3752), + [anon_sym_LT_EQ_GT] = ACTIONS(3752), + [anon_sym_or] = ACTIONS(3750), + [anon_sym_and] = ACTIONS(3750), + [anon_sym_bitor] = ACTIONS(3750), + [anon_sym_xor] = ACTIONS(3750), + [anon_sym_bitand] = ACTIONS(3750), + [anon_sym_not_eq] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_DOT_STAR] = ACTIONS(3752), + [anon_sym_DASH_GT_STAR] = ACTIONS(3752), + }, + [1760] = { + [sym_identifier] = ACTIONS(3766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3768), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3771), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_CARET] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_EQ_EQ] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_LT_LT] = ACTIONS(3773), + [anon_sym_GT_GT] = ACTIONS(3773), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3771), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(3775), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_STAR_EQ] = ACTIONS(3778), + [anon_sym_SLASH_EQ] = ACTIONS(3778), + [anon_sym_PERCENT_EQ] = ACTIONS(3778), + [anon_sym_PLUS_EQ] = ACTIONS(3778), + [anon_sym_DASH_EQ] = ACTIONS(3778), + [anon_sym_LT_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_GT_EQ] = ACTIONS(3778), + [anon_sym_AMP_EQ] = ACTIONS(3778), + [anon_sym_CARET_EQ] = ACTIONS(3778), + [anon_sym_PIPE_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ_GT] = ACTIONS(3778), + [anon_sym_or] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_bitor] = ACTIONS(3773), + [anon_sym_xor] = ACTIONS(3773), + [anon_sym_bitand] = ACTIONS(3773), + [anon_sym_not_eq] = ACTIONS(3773), + [anon_sym_DASH_DASH] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_DASH_GT] = ACTIONS(3773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + [anon_sym_DOT_STAR] = ACTIONS(3778), + [anon_sym_DASH_GT_STAR] = ACTIONS(3778), + }, + [1761] = { + [sym_identifier] = ACTIONS(3744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_PERCENT] = ACTIONS(3744), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3744), + [anon_sym_CARET] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT_EQ] = ACTIONS(3746), + [anon_sym_LT_EQ] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_LT_LT] = ACTIONS(3744), + [anon_sym_GT_GT] = ACTIONS(3744), + [anon_sym_extern] = ACTIONS(3744), + [anon_sym___attribute__] = ACTIONS(3744), + [anon_sym_COLON_COLON] = ACTIONS(3746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), + [anon_sym___declspec] = ACTIONS(3744), + [anon_sym___based] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_static] = ACTIONS(3744), + [anon_sym_register] = ACTIONS(3744), + [anon_sym_inline] = ACTIONS(3744), + [anon_sym_thread_local] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_volatile] = ACTIONS(3744), + [anon_sym_restrict] = ACTIONS(3744), + [anon_sym__Atomic] = ACTIONS(3744), + [anon_sym_mutable] = ACTIONS(3744), + [anon_sym_constexpr] = ACTIONS(3744), + [anon_sym_constinit] = ACTIONS(3744), + [anon_sym_consteval] = ACTIONS(3744), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_STAR_EQ] = ACTIONS(3746), + [anon_sym_SLASH_EQ] = ACTIONS(3746), + [anon_sym_PERCENT_EQ] = ACTIONS(3746), + [anon_sym_PLUS_EQ] = ACTIONS(3746), + [anon_sym_DASH_EQ] = ACTIONS(3746), + [anon_sym_LT_LT_EQ] = ACTIONS(3746), + [anon_sym_GT_GT_EQ] = ACTIONS(3746), + [anon_sym_AMP_EQ] = ACTIONS(3746), + [anon_sym_CARET_EQ] = ACTIONS(3746), + [anon_sym_PIPE_EQ] = ACTIONS(3746), + [anon_sym_LT_EQ_GT] = ACTIONS(3746), + [anon_sym_or] = ACTIONS(3744), + [anon_sym_and] = ACTIONS(3744), + [anon_sym_bitor] = ACTIONS(3744), + [anon_sym_xor] = ACTIONS(3744), + [anon_sym_bitand] = ACTIONS(3744), + [anon_sym_not_eq] = ACTIONS(3744), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3744), + [anon_sym_decltype] = ACTIONS(3744), + [anon_sym_virtual] = ACTIONS(3744), + [anon_sym_template] = ACTIONS(3744), + [anon_sym_operator] = ACTIONS(3744), + [anon_sym_DOT_STAR] = ACTIONS(3746), + [anon_sym_DASH_GT_STAR] = ACTIONS(3746), + }, + [1762] = { + [sym_identifier] = ACTIONS(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_COMMA] = ACTIONS(3795), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3795), + [anon_sym_TILDE] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_PIPE_PIPE] = ACTIONS(3795), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_PIPE] = ACTIONS(3793), + [anon_sym_CARET] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_EQ_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3793), + [anon_sym_GT_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_LT_LT] = ACTIONS(3793), + [anon_sym_GT_GT] = ACTIONS(3793), + [anon_sym_extern] = ACTIONS(3793), + [anon_sym___attribute__] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(3795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), + [anon_sym___declspec] = ACTIONS(3793), + [anon_sym___based] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_static] = ACTIONS(3793), + [anon_sym_register] = ACTIONS(3793), + [anon_sym_inline] = ACTIONS(3793), + [anon_sym_thread_local] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3793), + [anon_sym_volatile] = ACTIONS(3793), + [anon_sym_restrict] = ACTIONS(3793), + [anon_sym__Atomic] = ACTIONS(3793), + [anon_sym_mutable] = ACTIONS(3793), + [anon_sym_constexpr] = ACTIONS(3793), + [anon_sym_constinit] = ACTIONS(3793), + [anon_sym_consteval] = ACTIONS(3793), + [anon_sym_QMARK] = ACTIONS(3795), + [anon_sym_STAR_EQ] = ACTIONS(3795), + [anon_sym_SLASH_EQ] = ACTIONS(3795), + [anon_sym_PERCENT_EQ] = ACTIONS(3795), + [anon_sym_PLUS_EQ] = ACTIONS(3795), + [anon_sym_DASH_EQ] = ACTIONS(3795), + [anon_sym_LT_LT_EQ] = ACTIONS(3795), + [anon_sym_GT_GT_EQ] = ACTIONS(3795), + [anon_sym_AMP_EQ] = ACTIONS(3795), + [anon_sym_CARET_EQ] = ACTIONS(3795), + [anon_sym_PIPE_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ_GT] = ACTIONS(3795), + [anon_sym_or] = ACTIONS(3793), + [anon_sym_and] = ACTIONS(3793), + [anon_sym_bitor] = ACTIONS(3793), + [anon_sym_xor] = ACTIONS(3793), + [anon_sym_bitand] = ACTIONS(3793), + [anon_sym_not_eq] = ACTIONS(3793), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_DASH_GT] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3793), + [anon_sym_decltype] = ACTIONS(3793), + [anon_sym_virtual] = ACTIONS(3793), + [anon_sym_template] = ACTIONS(3793), + [anon_sym_operator] = ACTIONS(3793), + [anon_sym_DOT_STAR] = ACTIONS(3795), + [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + }, + [1763] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym__abstract_declarator] = STATE(5666), + [sym_abstract_parenthesized_declarator] = STATE(5097), + [sym_abstract_pointer_declarator] = STATE(5097), + [sym_abstract_function_declarator] = STATE(5097), + [sym_abstract_array_declarator] = STATE(5097), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_list] = STATE(4350), + [sym_parameter_declaration] = STATE(5821), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5821), + [sym_variadic_parameter_declaration] = STATE(5821), + [sym_abstract_reference_declarator] = STATE(5097), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5385), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3100), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + }, + [1764] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3399), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym__abstract_declarator] = STATE(5809), + [sym_abstract_parenthesized_declarator] = STATE(5097), + [sym_abstract_pointer_declarator] = STATE(5097), + [sym_abstract_function_declarator] = STATE(5097), + [sym_abstract_array_declarator] = STATE(5097), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_list] = STATE(4350), + [sym_parameter_declaration] = STATE(5829), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_optional_parameter_declaration] = STATE(5829), + [sym_variadic_parameter_declaration] = STATE(5829), + [sym_abstract_reference_declarator] = STATE(5097), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5385), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(3827), + [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_AMP_AMP] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + }, + [1765] = { + [sym_identifier] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_R_DQUOTE] = ACTIONS(2827), + [anon_sym_LR_DQUOTE] = ACTIONS(2827), + [anon_sym_uR_DQUOTE] = ACTIONS(2827), + [anon_sym_UR_DQUOTE] = ACTIONS(2827), + [anon_sym_u8R_DQUOTE] = ACTIONS(2827), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + }, + [1766] = { + [sym_identifier] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [sym_null] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2925), + [anon_sym_LR_DQUOTE] = ACTIONS(2925), + [anon_sym_uR_DQUOTE] = ACTIONS(2925), + [anon_sym_UR_DQUOTE] = ACTIONS(2925), + [anon_sym_u8R_DQUOTE] = ACTIONS(2925), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), + [sym_nullptr] = ACTIONS(2920), + }, + [1767] = { + [sym_identifier] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_SLASH] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3760), + [anon_sym_PIPE_PIPE] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(3760), + [anon_sym_LT_EQ] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3760), + [anon_sym_GT_GT] = ACTIONS(3760), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_COLON] = ACTIONS(3758), + [anon_sym_QMARK] = ACTIONS(3760), + [anon_sym_LT_EQ_GT] = ACTIONS(3760), + [anon_sym_or] = ACTIONS(3758), + [anon_sym_and] = ACTIONS(3758), + [anon_sym_bitor] = ACTIONS(3758), + [anon_sym_xor] = ACTIONS(3758), + [anon_sym_bitand] = ACTIONS(3758), + [anon_sym_not_eq] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_DASH_GT] = ACTIONS(3760), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_final] = ACTIONS(3758), + [anon_sym_override] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_try] = ACTIONS(3758), + [anon_sym_requires] = ACTIONS(3758), + }, + [1768] = { + [sym_identifier] = ACTIONS(3750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_SLASH] = ACTIONS(3750), + [anon_sym_PERCENT] = ACTIONS(3752), + [anon_sym_PIPE_PIPE] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3752), + [anon_sym_BANG_EQ] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT_EQ] = ACTIONS(3752), + [anon_sym_LT_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(3752), + [anon_sym_GT_GT] = ACTIONS(3752), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_LT_EQ_GT] = ACTIONS(3752), + [anon_sym_or] = ACTIONS(3750), + [anon_sym_and] = ACTIONS(3750), + [anon_sym_bitor] = ACTIONS(3750), + [anon_sym_xor] = ACTIONS(3750), + [anon_sym_bitand] = ACTIONS(3750), + [anon_sym_not_eq] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_final] = ACTIONS(3750), + [anon_sym_override] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_try] = ACTIONS(3750), + [anon_sym_requires] = ACTIONS(3750), + }, + [1769] = { + [sym_identifier] = ACTIONS(3744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3746), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_PERCENT] = ACTIONS(3746), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3744), + [anon_sym_CARET] = ACTIONS(3746), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT_EQ] = ACTIONS(3746), + [anon_sym_LT_EQ] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_LT_LT] = ACTIONS(3746), + [anon_sym_GT_GT] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3744), + [anon_sym___attribute__] = ACTIONS(3744), + [anon_sym_COLON_COLON] = ACTIONS(3746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3746), + [anon_sym___declspec] = ACTIONS(3744), + [anon_sym___based] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_static] = ACTIONS(3744), + [anon_sym_register] = ACTIONS(3744), + [anon_sym_inline] = ACTIONS(3744), + [anon_sym_thread_local] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_volatile] = ACTIONS(3744), + [anon_sym_restrict] = ACTIONS(3744), + [anon_sym__Atomic] = ACTIONS(3744), + [anon_sym_mutable] = ACTIONS(3744), + [anon_sym_constexpr] = ACTIONS(3744), + [anon_sym_constinit] = ACTIONS(3744), + [anon_sym_consteval] = ACTIONS(3744), + [anon_sym_COLON] = ACTIONS(3744), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_LT_EQ_GT] = ACTIONS(3746), + [anon_sym_or] = ACTIONS(3744), + [anon_sym_and] = ACTIONS(3744), + [anon_sym_bitor] = ACTIONS(3744), + [anon_sym_xor] = ACTIONS(3744), + [anon_sym_bitand] = ACTIONS(3744), + [anon_sym_not_eq] = ACTIONS(3744), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3744), + [anon_sym_decltype] = ACTIONS(3744), + [anon_sym_final] = ACTIONS(3744), + [anon_sym_override] = ACTIONS(3744), + [anon_sym_virtual] = ACTIONS(3744), + [anon_sym_template] = ACTIONS(3744), + [anon_sym_operator] = ACTIONS(3744), + [anon_sym_try] = ACTIONS(3744), + [anon_sym_requires] = ACTIONS(3744), + }, + [1770] = { + [sym_identifier] = ACTIONS(3762), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_SLASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3764), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_LT_LT] = ACTIONS(3764), + [anon_sym_GT_GT] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_RBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_LT_EQ_GT] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [anon_sym_and] = ACTIONS(3762), + [anon_sym_bitor] = ACTIONS(3762), + [anon_sym_xor] = ACTIONS(3762), + [anon_sym_bitand] = ACTIONS(3762), + [anon_sym_not_eq] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_final] = ACTIONS(3762), + [anon_sym_override] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_requires] = ACTIONS(3762), + }, + [1771] = { + [sym_identifier] = ACTIONS(3736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_RPAREN] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3738), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT_EQ] = ACTIONS(3738), + [anon_sym_LT_EQ] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3738), + [anon_sym_GT_GT] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3736), + [anon_sym___attribute__] = ACTIONS(3736), + [anon_sym_COLON_COLON] = ACTIONS(3738), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3738), + [anon_sym___declspec] = ACTIONS(3736), + [anon_sym___based] = ACTIONS(3736), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_RBRACE] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3736), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_static] = ACTIONS(3736), + [anon_sym_register] = ACTIONS(3736), + [anon_sym_inline] = ACTIONS(3736), + [anon_sym_thread_local] = ACTIONS(3736), + [anon_sym_const] = ACTIONS(3736), + [anon_sym_volatile] = ACTIONS(3736), + [anon_sym_restrict] = ACTIONS(3736), + [anon_sym__Atomic] = ACTIONS(3736), + [anon_sym_mutable] = ACTIONS(3736), + [anon_sym_constexpr] = ACTIONS(3736), + [anon_sym_constinit] = ACTIONS(3736), + [anon_sym_consteval] = ACTIONS(3736), + [anon_sym_COLON] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_LT_EQ_GT] = ACTIONS(3738), + [anon_sym_or] = ACTIONS(3736), + [anon_sym_and] = ACTIONS(3736), + [anon_sym_bitor] = ACTIONS(3736), + [anon_sym_xor] = ACTIONS(3736), + [anon_sym_bitand] = ACTIONS(3736), + [anon_sym_not_eq] = ACTIONS(3736), + [anon_sym_DASH_DASH] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3736), + [anon_sym_decltype] = ACTIONS(3736), + [anon_sym_final] = ACTIONS(3736), + [anon_sym_override] = ACTIONS(3736), + [anon_sym_virtual] = ACTIONS(3736), + [anon_sym_template] = ACTIONS(3736), + [anon_sym_operator] = ACTIONS(3736), + [anon_sym_try] = ACTIONS(3736), + [anon_sym_requires] = ACTIONS(3736), + }, + [1772] = { + [sym_identifier] = ACTIONS(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_COMMA] = ACTIONS(3795), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3795), + [anon_sym_TILDE] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_SLASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3795), + [anon_sym_PIPE_PIPE] = ACTIONS(3795), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_PIPE] = ACTIONS(3793), + [anon_sym_CARET] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_EQ_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3793), + [anon_sym_GT_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_LT_LT] = ACTIONS(3795), + [anon_sym_GT_GT] = ACTIONS(3795), + [anon_sym_SEMI] = ACTIONS(3795), + [anon_sym_extern] = ACTIONS(3793), + [anon_sym___attribute__] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(3795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), + [anon_sym___declspec] = ACTIONS(3793), + [anon_sym___based] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_RBRACE] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_static] = ACTIONS(3793), + [anon_sym_register] = ACTIONS(3793), + [anon_sym_inline] = ACTIONS(3793), + [anon_sym_thread_local] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3793), + [anon_sym_volatile] = ACTIONS(3793), + [anon_sym_restrict] = ACTIONS(3793), + [anon_sym__Atomic] = ACTIONS(3793), + [anon_sym_mutable] = ACTIONS(3793), + [anon_sym_constexpr] = ACTIONS(3793), + [anon_sym_constinit] = ACTIONS(3793), + [anon_sym_consteval] = ACTIONS(3793), + [anon_sym_COLON] = ACTIONS(3793), + [anon_sym_QMARK] = ACTIONS(3795), + [anon_sym_LT_EQ_GT] = ACTIONS(3795), + [anon_sym_or] = ACTIONS(3793), + [anon_sym_and] = ACTIONS(3793), + [anon_sym_bitor] = ACTIONS(3793), + [anon_sym_xor] = ACTIONS(3793), + [anon_sym_bitand] = ACTIONS(3793), + [anon_sym_not_eq] = ACTIONS(3793), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_DASH_GT] = ACTIONS(3795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3793), + [anon_sym_decltype] = ACTIONS(3793), + [anon_sym_final] = ACTIONS(3793), + [anon_sym_override] = ACTIONS(3793), + [anon_sym_virtual] = ACTIONS(3793), + [anon_sym_template] = ACTIONS(3793), + [anon_sym_operator] = ACTIONS(3793), + [anon_sym_try] = ACTIONS(3793), + [anon_sym_requires] = ACTIONS(3793), + }, + [1773] = { + [sym_identifier] = ACTIONS(3740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3742), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT_EQ] = ACTIONS(3742), + [anon_sym_LT_EQ] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3742), + [anon_sym_GT_GT] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3740), + [anon_sym___attribute__] = ACTIONS(3740), + [anon_sym_COLON_COLON] = ACTIONS(3742), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3742), + [anon_sym___declspec] = ACTIONS(3740), + [anon_sym___based] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_RBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_register] = ACTIONS(3740), + [anon_sym_inline] = ACTIONS(3740), + [anon_sym_thread_local] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_volatile] = ACTIONS(3740), + [anon_sym_restrict] = ACTIONS(3740), + [anon_sym__Atomic] = ACTIONS(3740), + [anon_sym_mutable] = ACTIONS(3740), + [anon_sym_constexpr] = ACTIONS(3740), + [anon_sym_constinit] = ACTIONS(3740), + [anon_sym_consteval] = ACTIONS(3740), + [anon_sym_COLON] = ACTIONS(3740), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_LT_EQ_GT] = ACTIONS(3742), + [anon_sym_or] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_bitor] = ACTIONS(3740), + [anon_sym_xor] = ACTIONS(3740), + [anon_sym_bitand] = ACTIONS(3740), + [anon_sym_not_eq] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3740), + [anon_sym_decltype] = ACTIONS(3740), + [anon_sym_final] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_virtual] = ACTIONS(3740), + [anon_sym_template] = ACTIONS(3740), + [anon_sym_operator] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_requires] = ACTIONS(3740), + }, + [1774] = { + [sym_function_definition] = STATE(999), + [sym_declaration] = STATE(999), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4248), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2166), + [sym_declaration_list] = STATE(999), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1775] = { + [sym_function_definition] = STATE(488), + [sym_declaration] = STATE(488), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4212), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2136), + [sym_declaration_list] = STATE(488), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3843), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1776] = { + [sym_function_definition] = STATE(939), + [sym_declaration] = STATE(939), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4249), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2160), + [sym_declaration_list] = STATE(939), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3845), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1777] = { + [sym_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [aux_sym_concatenated_string_repeat1] = STATE(1777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3847), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3849), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_CARET] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_EQ] = ACTIONS(3847), + [anon_sym_LT_EQ] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_SEMI] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_RBRACK] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_COLON] = ACTIONS(3847), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_STAR_EQ] = ACTIONS(3847), + [anon_sym_SLASH_EQ] = ACTIONS(3847), + [anon_sym_PERCENT_EQ] = ACTIONS(3847), + [anon_sym_PLUS_EQ] = ACTIONS(3847), + [anon_sym_DASH_EQ] = ACTIONS(3847), + [anon_sym_LT_LT_EQ] = ACTIONS(3847), + [anon_sym_GT_GT_EQ] = ACTIONS(3847), + [anon_sym_AMP_EQ] = ACTIONS(3847), + [anon_sym_CARET_EQ] = ACTIONS(3847), + [anon_sym_PIPE_EQ] = ACTIONS(3847), + [anon_sym_and_eq] = ACTIONS(3849), + [anon_sym_or_eq] = ACTIONS(3849), + [anon_sym_xor_eq] = ACTIONS(3849), + [anon_sym_LT_EQ_GT] = ACTIONS(3847), + [anon_sym_or] = ACTIONS(3849), + [anon_sym_and] = ACTIONS(3849), + [anon_sym_bitor] = ACTIONS(3849), + [anon_sym_xor] = ACTIONS(3849), + [anon_sym_bitand] = ACTIONS(3849), + [anon_sym_not_eq] = ACTIONS(3849), + [anon_sym_DASH_DASH] = ACTIONS(3847), + [anon_sym_PLUS_PLUS] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_DASH_GT] = ACTIONS(3847), + [anon_sym_L_DQUOTE] = ACTIONS(3851), + [anon_sym_u_DQUOTE] = ACTIONS(3851), + [anon_sym_U_DQUOTE] = ACTIONS(3851), + [anon_sym_u8_DQUOTE] = ACTIONS(3851), + [anon_sym_DQUOTE] = ACTIONS(3851), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3854), + [anon_sym_LR_DQUOTE] = ACTIONS(3854), + [anon_sym_uR_DQUOTE] = ACTIONS(3854), + [anon_sym_UR_DQUOTE] = ACTIONS(3854), + [anon_sym_u8R_DQUOTE] = ACTIONS(3854), + [sym_literal_suffix] = ACTIONS(3849), + }, + [1778] = { + [sym_function_definition] = STATE(968), + [sym_declaration] = STATE(968), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4237), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2055), + [sym_declaration_list] = STATE(968), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1779] = { + [sym_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [aux_sym_concatenated_string_repeat1] = STATE(1777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_SLASH] = ACTIONS(3861), + [anon_sym_PERCENT] = ACTIONS(3861), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3861), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3861), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_LT_LT] = ACTIONS(3861), + [anon_sym_GT_GT] = ACTIONS(3861), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_RBRACE] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_STAR_EQ] = ACTIONS(3859), + [anon_sym_SLASH_EQ] = ACTIONS(3859), + [anon_sym_PERCENT_EQ] = ACTIONS(3859), + [anon_sym_PLUS_EQ] = ACTIONS(3859), + [anon_sym_DASH_EQ] = ACTIONS(3859), + [anon_sym_LT_LT_EQ] = ACTIONS(3859), + [anon_sym_GT_GT_EQ] = ACTIONS(3859), + [anon_sym_AMP_EQ] = ACTIONS(3859), + [anon_sym_CARET_EQ] = ACTIONS(3859), + [anon_sym_PIPE_EQ] = ACTIONS(3859), + [anon_sym_and_eq] = ACTIONS(3861), + [anon_sym_or_eq] = ACTIONS(3861), + [anon_sym_xor_eq] = ACTIONS(3861), + [anon_sym_LT_EQ_GT] = ACTIONS(3859), + [anon_sym_or] = ACTIONS(3861), + [anon_sym_and] = ACTIONS(3861), + [anon_sym_bitor] = ACTIONS(3861), + [anon_sym_xor] = ACTIONS(3861), + [anon_sym_bitand] = ACTIONS(3861), + [anon_sym_not_eq] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3861), + [anon_sym_DASH_GT] = ACTIONS(3859), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [sym_literal_suffix] = ACTIONS(3861), + }, + [1780] = { + [sym_string_literal] = STATE(1779), + [sym_raw_string_literal] = STATE(1779), + [aux_sym_concatenated_string_repeat1] = STATE(1779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3510), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_RBRACK] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(3518), + [anon_sym_COLON] = ACTIONS(3510), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3510), + [anon_sym_SLASH_EQ] = ACTIONS(3510), + [anon_sym_PERCENT_EQ] = ACTIONS(3510), + [anon_sym_PLUS_EQ] = ACTIONS(3510), + [anon_sym_DASH_EQ] = ACTIONS(3510), + [anon_sym_LT_LT_EQ] = ACTIONS(3510), + [anon_sym_GT_GT_EQ] = ACTIONS(3510), + [anon_sym_AMP_EQ] = ACTIONS(3510), + [anon_sym_CARET_EQ] = ACTIONS(3510), + [anon_sym_PIPE_EQ] = ACTIONS(3510), + [anon_sym_and_eq] = ACTIONS(3518), + [anon_sym_or_eq] = ACTIONS(3518), + [anon_sym_xor_eq] = ACTIONS(3518), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3510), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1537), + [anon_sym_LR_DQUOTE] = ACTIONS(1537), + [anon_sym_uR_DQUOTE] = ACTIONS(1537), + [anon_sym_UR_DQUOTE] = ACTIONS(1537), + [anon_sym_u8R_DQUOTE] = ACTIONS(1537), + [sym_literal_suffix] = ACTIONS(3863), + }, + [1781] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_COMMA] = ACTIONS(3795), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_PIPE_PIPE] = ACTIONS(3795), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_PIPE] = ACTIONS(3793), + [anon_sym_CARET] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_EQ_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3793), + [anon_sym_GT_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_LT_LT] = ACTIONS(3793), + [anon_sym_GT_GT] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3795), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3793), + [anon_sym_volatile] = ACTIONS(3795), + [anon_sym_restrict] = ACTIONS(3795), + [anon_sym__Atomic] = ACTIONS(3795), + [anon_sym_mutable] = ACTIONS(3795), + [anon_sym_constexpr] = ACTIONS(3795), + [anon_sym_constinit] = ACTIONS(3795), + [anon_sym_consteval] = ACTIONS(3795), + [anon_sym_COLON] = ACTIONS(3793), + [anon_sym_QMARK] = ACTIONS(3795), + [anon_sym_STAR_EQ] = ACTIONS(3795), + [anon_sym_SLASH_EQ] = ACTIONS(3795), + [anon_sym_PERCENT_EQ] = ACTIONS(3795), + [anon_sym_PLUS_EQ] = ACTIONS(3795), + [anon_sym_DASH_EQ] = ACTIONS(3795), + [anon_sym_LT_LT_EQ] = ACTIONS(3795), + [anon_sym_GT_GT_EQ] = ACTIONS(3795), + [anon_sym_AMP_EQ] = ACTIONS(3795), + [anon_sym_CARET_EQ] = ACTIONS(3795), + [anon_sym_PIPE_EQ] = ACTIONS(3795), + [anon_sym_and_eq] = ACTIONS(3795), + [anon_sym_or_eq] = ACTIONS(3795), + [anon_sym_xor_eq] = ACTIONS(3795), + [anon_sym_LT_EQ_GT] = ACTIONS(3795), + [anon_sym_or] = ACTIONS(3793), + [anon_sym_and] = ACTIONS(3793), + [anon_sym_bitor] = ACTIONS(3795), + [anon_sym_xor] = ACTIONS(3793), + [anon_sym_bitand] = ACTIONS(3795), + [anon_sym_not_eq] = ACTIONS(3795), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_DASH_GT] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3795), + [anon_sym_decltype] = ACTIONS(3795), + [anon_sym_final] = ACTIONS(3795), + [anon_sym_override] = ACTIONS(3795), + [anon_sym_DOT_STAR] = ACTIONS(3795), + [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + }, + [1782] = { + [sym_function_definition] = STATE(2313), + [sym_declaration] = STATE(2313), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2118), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6974), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(4125), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(4114), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3865), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3871), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1783] = { + [sym_function_definition] = STATE(2127), + [sym_declaration] = STATE(2127), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4247), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2119), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(6988), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(4125), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(4114), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3865), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3875), + [anon_sym_union] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1784] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3750), + [anon_sym_SLASH] = ACTIONS(3750), + [anon_sym_PERCENT] = ACTIONS(3750), + [anon_sym_PIPE_PIPE] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3752), + [anon_sym_BANG_EQ] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT_EQ] = ACTIONS(3752), + [anon_sym_LT_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(3750), + [anon_sym_GT_GT] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3752), + [anon_sym_restrict] = ACTIONS(3752), + [anon_sym__Atomic] = ACTIONS(3752), + [anon_sym_mutable] = ACTIONS(3752), + [anon_sym_constexpr] = ACTIONS(3752), + [anon_sym_constinit] = ACTIONS(3752), + [anon_sym_consteval] = ACTIONS(3752), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_STAR_EQ] = ACTIONS(3752), + [anon_sym_SLASH_EQ] = ACTIONS(3752), + [anon_sym_PERCENT_EQ] = ACTIONS(3752), + [anon_sym_PLUS_EQ] = ACTIONS(3752), + [anon_sym_DASH_EQ] = ACTIONS(3752), + [anon_sym_LT_LT_EQ] = ACTIONS(3752), + [anon_sym_GT_GT_EQ] = ACTIONS(3752), + [anon_sym_AMP_EQ] = ACTIONS(3752), + [anon_sym_CARET_EQ] = ACTIONS(3752), + [anon_sym_PIPE_EQ] = ACTIONS(3752), + [anon_sym_and_eq] = ACTIONS(3752), + [anon_sym_or_eq] = ACTIONS(3752), + [anon_sym_xor_eq] = ACTIONS(3752), + [anon_sym_LT_EQ_GT] = ACTIONS(3752), + [anon_sym_or] = ACTIONS(3750), + [anon_sym_and] = ACTIONS(3750), + [anon_sym_bitor] = ACTIONS(3752), + [anon_sym_xor] = ACTIONS(3750), + [anon_sym_bitand] = ACTIONS(3752), + [anon_sym_not_eq] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3752), + [anon_sym_decltype] = ACTIONS(3752), + [anon_sym_final] = ACTIONS(3752), + [anon_sym_override] = ACTIONS(3752), + [anon_sym_DOT_STAR] = ACTIONS(3752), + [anon_sym_DASH_GT_STAR] = ACTIONS(3752), + }, + [1785] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_PERCENT] = ACTIONS(3744), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3744), + [anon_sym_CARET] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT_EQ] = ACTIONS(3746), + [anon_sym_LT_EQ] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_LT_LT] = ACTIONS(3744), + [anon_sym_GT_GT] = ACTIONS(3744), + [anon_sym_COLON_COLON] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_COLON] = ACTIONS(3744), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_STAR_EQ] = ACTIONS(3746), + [anon_sym_SLASH_EQ] = ACTIONS(3746), + [anon_sym_PERCENT_EQ] = ACTIONS(3746), + [anon_sym_PLUS_EQ] = ACTIONS(3746), + [anon_sym_DASH_EQ] = ACTIONS(3746), + [anon_sym_LT_LT_EQ] = ACTIONS(3746), + [anon_sym_GT_GT_EQ] = ACTIONS(3746), + [anon_sym_AMP_EQ] = ACTIONS(3746), + [anon_sym_CARET_EQ] = ACTIONS(3746), + [anon_sym_PIPE_EQ] = ACTIONS(3746), + [anon_sym_and_eq] = ACTIONS(3746), + [anon_sym_or_eq] = ACTIONS(3746), + [anon_sym_xor_eq] = ACTIONS(3746), + [anon_sym_LT_EQ_GT] = ACTIONS(3746), + [anon_sym_or] = ACTIONS(3744), + [anon_sym_and] = ACTIONS(3744), + [anon_sym_bitor] = ACTIONS(3746), + [anon_sym_xor] = ACTIONS(3744), + [anon_sym_bitand] = ACTIONS(3746), + [anon_sym_not_eq] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3744), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_final] = ACTIONS(3746), + [anon_sym_override] = ACTIONS(3746), + [anon_sym_DOT_STAR] = ACTIONS(3746), + [anon_sym_DASH_GT_STAR] = ACTIONS(3746), + }, + [1786] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT_EQ] = ACTIONS(3742), + [anon_sym_LT_EQ] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3740), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_COLON_COLON] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_COLON] = ACTIONS(3740), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_STAR_EQ] = ACTIONS(3742), + [anon_sym_SLASH_EQ] = ACTIONS(3742), + [anon_sym_PERCENT_EQ] = ACTIONS(3742), + [anon_sym_PLUS_EQ] = ACTIONS(3742), + [anon_sym_DASH_EQ] = ACTIONS(3742), + [anon_sym_LT_LT_EQ] = ACTIONS(3742), + [anon_sym_GT_GT_EQ] = ACTIONS(3742), + [anon_sym_AMP_EQ] = ACTIONS(3742), + [anon_sym_CARET_EQ] = ACTIONS(3742), + [anon_sym_PIPE_EQ] = ACTIONS(3742), + [anon_sym_and_eq] = ACTIONS(3742), + [anon_sym_or_eq] = ACTIONS(3742), + [anon_sym_xor_eq] = ACTIONS(3742), + [anon_sym_LT_EQ_GT] = ACTIONS(3742), + [anon_sym_or] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_bitor] = ACTIONS(3742), + [anon_sym_xor] = ACTIONS(3740), + [anon_sym_bitand] = ACTIONS(3742), + [anon_sym_not_eq] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3740), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_final] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_DOT_STAR] = ACTIONS(3742), + [anon_sym_DASH_GT_STAR] = ACTIONS(3742), + }, + [1787] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_RPAREN] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT_EQ] = ACTIONS(3738), + [anon_sym_LT_EQ] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_COLON_COLON] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_const] = ACTIONS(3736), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym_mutable] = ACTIONS(3738), + [anon_sym_constexpr] = ACTIONS(3738), + [anon_sym_constinit] = ACTIONS(3738), + [anon_sym_consteval] = ACTIONS(3738), + [anon_sym_COLON] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_STAR_EQ] = ACTIONS(3738), + [anon_sym_SLASH_EQ] = ACTIONS(3738), + [anon_sym_PERCENT_EQ] = ACTIONS(3738), + [anon_sym_PLUS_EQ] = ACTIONS(3738), + [anon_sym_DASH_EQ] = ACTIONS(3738), + [anon_sym_LT_LT_EQ] = ACTIONS(3738), + [anon_sym_GT_GT_EQ] = ACTIONS(3738), + [anon_sym_AMP_EQ] = ACTIONS(3738), + [anon_sym_CARET_EQ] = ACTIONS(3738), + [anon_sym_PIPE_EQ] = ACTIONS(3738), + [anon_sym_and_eq] = ACTIONS(3738), + [anon_sym_or_eq] = ACTIONS(3738), + [anon_sym_xor_eq] = ACTIONS(3738), + [anon_sym_LT_EQ_GT] = ACTIONS(3738), + [anon_sym_or] = ACTIONS(3736), + [anon_sym_and] = ACTIONS(3736), + [anon_sym_bitor] = ACTIONS(3738), + [anon_sym_xor] = ACTIONS(3736), + [anon_sym_bitand] = ACTIONS(3738), + [anon_sym_not_eq] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3736), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_decltype] = ACTIONS(3738), + [anon_sym_final] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_DOT_STAR] = ACTIONS(3738), + [anon_sym_DASH_GT_STAR] = ACTIONS(3738), + }, + [1788] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3758), + [anon_sym_SLASH] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3758), + [anon_sym_PIPE_PIPE] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(3760), + [anon_sym_LT_EQ] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3758), + [anon_sym_GT_GT] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3760), + [anon_sym_restrict] = ACTIONS(3760), + [anon_sym__Atomic] = ACTIONS(3760), + [anon_sym_mutable] = ACTIONS(3760), + [anon_sym_constexpr] = ACTIONS(3760), + [anon_sym_constinit] = ACTIONS(3760), + [anon_sym_consteval] = ACTIONS(3760), + [anon_sym_COLON] = ACTIONS(3758), + [anon_sym_QMARK] = ACTIONS(3760), + [anon_sym_STAR_EQ] = ACTIONS(3760), + [anon_sym_SLASH_EQ] = ACTIONS(3760), + [anon_sym_PERCENT_EQ] = ACTIONS(3760), + [anon_sym_PLUS_EQ] = ACTIONS(3760), + [anon_sym_DASH_EQ] = ACTIONS(3760), + [anon_sym_LT_LT_EQ] = ACTIONS(3760), + [anon_sym_GT_GT_EQ] = ACTIONS(3760), + [anon_sym_AMP_EQ] = ACTIONS(3760), + [anon_sym_CARET_EQ] = ACTIONS(3760), + [anon_sym_PIPE_EQ] = ACTIONS(3760), + [anon_sym_and_eq] = ACTIONS(3760), + [anon_sym_or_eq] = ACTIONS(3760), + [anon_sym_xor_eq] = ACTIONS(3760), + [anon_sym_LT_EQ_GT] = ACTIONS(3760), + [anon_sym_or] = ACTIONS(3758), + [anon_sym_and] = ACTIONS(3758), + [anon_sym_bitor] = ACTIONS(3760), + [anon_sym_xor] = ACTIONS(3758), + [anon_sym_bitand] = ACTIONS(3760), + [anon_sym_not_eq] = ACTIONS(3760), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_DASH_GT] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3760), + [anon_sym_decltype] = ACTIONS(3760), + [anon_sym_final] = ACTIONS(3760), + [anon_sym_override] = ACTIONS(3760), + [anon_sym_DOT_STAR] = ACTIONS(3760), + [anon_sym_DASH_GT_STAR] = ACTIONS(3760), + }, + [1789] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3762), + [anon_sym_SLASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3764), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_LT_LT] = ACTIONS(3762), + [anon_sym_GT_GT] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_constinit] = ACTIONS(3764), + [anon_sym_consteval] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3764), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), + [anon_sym_and_eq] = ACTIONS(3764), + [anon_sym_or_eq] = ACTIONS(3764), + [anon_sym_xor_eq] = ACTIONS(3764), + [anon_sym_LT_EQ_GT] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [anon_sym_and] = ACTIONS(3762), + [anon_sym_bitor] = ACTIONS(3764), + [anon_sym_xor] = ACTIONS(3762), + [anon_sym_bitand] = ACTIONS(3764), + [anon_sym_not_eq] = ACTIONS(3764), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3764), + [anon_sym_decltype] = ACTIONS(3764), + [anon_sym_final] = ACTIONS(3764), + [anon_sym_override] = ACTIONS(3764), + [anon_sym_DOT_STAR] = ACTIONS(3764), + [anon_sym_DASH_GT_STAR] = ACTIONS(3764), + }, + [1790] = { + [sym_function_definition] = STATE(2462), + [sym_declaration] = STATE(2462), + [sym__declaration_modifiers] = STATE(2188), + [sym__declaration_specifiers] = STATE(4252), + [sym_attribute_specifier] = STATE(2188), + [sym_attribute_declaration] = STATE(2188), + [sym_ms_declspec_modifier] = STATE(2188), + [sym_ms_call_modifier] = STATE(2145), + [sym_storage_class_specifier] = STATE(2188), + [sym_type_qualifier] = STATE(2188), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym__class_name] = STATE(7139), + [sym_virtual_function_specifier] = STATE(2188), + [sym_dependent_type] = STATE(3504), + [sym_template_type] = STATE(4125), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5396), + [sym_qualified_type_identifier] = STATE(4114), + [aux_sym__declaration_specifiers_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3865), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3879), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1791] = { + [sym_template_argument_list] = STATE(1827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3512), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3617), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3516), + [anon_sym_restrict] = ACTIONS(3516), + [anon_sym__Atomic] = ACTIONS(3516), + [anon_sym_mutable] = ACTIONS(3516), + [anon_sym_constexpr] = ACTIONS(3516), + [anon_sym_constinit] = ACTIONS(3516), + [anon_sym_consteval] = ACTIONS(3516), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3510), + [anon_sym_SLASH_EQ] = ACTIONS(3510), + [anon_sym_PERCENT_EQ] = ACTIONS(3510), + [anon_sym_PLUS_EQ] = ACTIONS(3510), + [anon_sym_DASH_EQ] = ACTIONS(3510), + [anon_sym_LT_LT_EQ] = ACTIONS(3510), + [anon_sym_GT_GT_EQ] = ACTIONS(3510), + [anon_sym_AMP_EQ] = ACTIONS(3510), + [anon_sym_CARET_EQ] = ACTIONS(3510), + [anon_sym_PIPE_EQ] = ACTIONS(3510), + [anon_sym_and_eq] = ACTIONS(3887), + [anon_sym_or_eq] = ACTIONS(3887), + [anon_sym_xor_eq] = ACTIONS(3887), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3510), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3510), + [anon_sym_not_eq] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3516), + [anon_sym_decltype] = ACTIONS(3516), + [anon_sym_DOT_STAR] = ACTIONS(3510), + [anon_sym_DASH_GT_STAR] = ACTIONS(3510), + }, + [1792] = { + [sym_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [aux_sym_concatenated_string_repeat1] = STATE(1792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3847), + [anon_sym_COMMA] = ACTIONS(3847), + [anon_sym_RPAREN] = ACTIONS(3847), + [anon_sym_LPAREN2] = ACTIONS(3847), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3849), + [anon_sym_SLASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3849), + [anon_sym_PIPE_PIPE] = ACTIONS(3847), + [anon_sym_AMP_AMP] = ACTIONS(3847), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_CARET] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_EQ_EQ] = ACTIONS(3847), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT_EQ] = ACTIONS(3847), + [anon_sym_LT_EQ] = ACTIONS(3849), + [anon_sym_LT] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(3849), + [anon_sym_GT_GT] = ACTIONS(3849), + [anon_sym_LBRACK] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_QMARK] = ACTIONS(3847), + [anon_sym_STAR_EQ] = ACTIONS(3847), + [anon_sym_SLASH_EQ] = ACTIONS(3847), + [anon_sym_PERCENT_EQ] = ACTIONS(3847), + [anon_sym_PLUS_EQ] = ACTIONS(3847), + [anon_sym_DASH_EQ] = ACTIONS(3847), + [anon_sym_LT_LT_EQ] = ACTIONS(3847), + [anon_sym_GT_GT_EQ] = ACTIONS(3847), + [anon_sym_AMP_EQ] = ACTIONS(3847), + [anon_sym_CARET_EQ] = ACTIONS(3847), + [anon_sym_PIPE_EQ] = ACTIONS(3847), + [anon_sym_and_eq] = ACTIONS(3849), + [anon_sym_or_eq] = ACTIONS(3849), + [anon_sym_xor_eq] = ACTIONS(3849), + [anon_sym_LT_EQ_GT] = ACTIONS(3847), + [anon_sym_or] = ACTIONS(3849), + [anon_sym_and] = ACTIONS(3849), + [anon_sym_bitor] = ACTIONS(3849), + [anon_sym_xor] = ACTIONS(3849), + [anon_sym_bitand] = ACTIONS(3849), + [anon_sym_not_eq] = ACTIONS(3849), + [anon_sym_DASH_DASH] = ACTIONS(3847), + [anon_sym_PLUS_PLUS] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_DASH_GT] = ACTIONS(3849), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3892), + [anon_sym_LR_DQUOTE] = ACTIONS(3892), + [anon_sym_uR_DQUOTE] = ACTIONS(3892), + [anon_sym_UR_DQUOTE] = ACTIONS(3892), + [anon_sym_u8R_DQUOTE] = ACTIONS(3892), + [anon_sym_DOT_STAR] = ACTIONS(3847), + [anon_sym_DASH_GT_STAR] = ACTIONS(3847), + [sym_literal_suffix] = ACTIONS(3849), + }, + [1793] = { + [sym_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [aux_sym_concatenated_string_repeat1] = STATE(1792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3859), + [anon_sym_COMMA] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3859), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_SLASH] = ACTIONS(3861), + [anon_sym_PERCENT] = ACTIONS(3861), + [anon_sym_PIPE_PIPE] = ACTIONS(3859), + [anon_sym_AMP_AMP] = ACTIONS(3859), + [anon_sym_PIPE] = ACTIONS(3861), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_EQ_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3861), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(3861), + [anon_sym_LT_LT] = ACTIONS(3861), + [anon_sym_GT_GT] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_EQ] = ACTIONS(3861), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_STAR_EQ] = ACTIONS(3859), + [anon_sym_SLASH_EQ] = ACTIONS(3859), + [anon_sym_PERCENT_EQ] = ACTIONS(3859), + [anon_sym_PLUS_EQ] = ACTIONS(3859), + [anon_sym_DASH_EQ] = ACTIONS(3859), + [anon_sym_LT_LT_EQ] = ACTIONS(3859), + [anon_sym_GT_GT_EQ] = ACTIONS(3859), + [anon_sym_AMP_EQ] = ACTIONS(3859), + [anon_sym_CARET_EQ] = ACTIONS(3859), + [anon_sym_PIPE_EQ] = ACTIONS(3859), + [anon_sym_and_eq] = ACTIONS(3861), + [anon_sym_or_eq] = ACTIONS(3861), + [anon_sym_xor_eq] = ACTIONS(3861), + [anon_sym_LT_EQ_GT] = ACTIONS(3859), + [anon_sym_or] = ACTIONS(3861), + [anon_sym_and] = ACTIONS(3861), + [anon_sym_bitor] = ACTIONS(3861), + [anon_sym_xor] = ACTIONS(3861), + [anon_sym_bitand] = ACTIONS(3861), + [anon_sym_not_eq] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3861), + [anon_sym_DASH_GT] = ACTIONS(3861), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_DOT_STAR] = ACTIONS(3859), + [anon_sym_DASH_GT_STAR] = ACTIONS(3859), + [sym_literal_suffix] = ACTIONS(3861), + }, + [1794] = { + [sym_template_argument_list] = STATE(1811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LPAREN2] = ACTIONS(3681), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3681), + [anon_sym_PIPE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3693), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3691), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_EQ] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3679), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3691), + [anon_sym_or_eq] = ACTIONS(3691), + [anon_sym_xor_eq] = ACTIONS(3691), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_bitor] = ACTIONS(3691), + [anon_sym_xor] = ACTIONS(3686), + [anon_sym_bitand] = ACTIONS(3691), + [anon_sym_not_eq] = ACTIONS(3691), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_DOT_STAR] = ACTIONS(3691), + [anon_sym_DASH_GT_STAR] = ACTIONS(3691), + }, + [1795] = { + [sym_string_literal] = STATE(1793), + [sym_raw_string_literal] = STATE(1793), + [aux_sym_concatenated_string_repeat1] = STATE(1793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3510), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(3518), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3510), + [anon_sym_SLASH_EQ] = ACTIONS(3510), + [anon_sym_PERCENT_EQ] = ACTIONS(3510), + [anon_sym_PLUS_EQ] = ACTIONS(3510), + [anon_sym_DASH_EQ] = ACTIONS(3510), + [anon_sym_LT_LT_EQ] = ACTIONS(3510), + [anon_sym_GT_GT_EQ] = ACTIONS(3510), + [anon_sym_AMP_EQ] = ACTIONS(3510), + [anon_sym_CARET_EQ] = ACTIONS(3510), + [anon_sym_PIPE_EQ] = ACTIONS(3510), + [anon_sym_and_eq] = ACTIONS(3518), + [anon_sym_or_eq] = ACTIONS(3518), + [anon_sym_xor_eq] = ACTIONS(3518), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3518), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3518), + [anon_sym_not_eq] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3518), + [anon_sym_L_DQUOTE] = ACTIONS(1569), + [anon_sym_u_DQUOTE] = ACTIONS(1569), + [anon_sym_U_DQUOTE] = ACTIONS(1569), + [anon_sym_u8_DQUOTE] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1575), + [anon_sym_LR_DQUOTE] = ACTIONS(1575), + [anon_sym_uR_DQUOTE] = ACTIONS(1575), + [anon_sym_UR_DQUOTE] = ACTIONS(1575), + [anon_sym_u8R_DQUOTE] = ACTIONS(1575), + [anon_sym_DOT_STAR] = ACTIONS(3510), + [anon_sym_DASH_GT_STAR] = ACTIONS(3510), + [sym_literal_suffix] = ACTIONS(3895), + }, + [1796] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), + [anon_sym_COMMA] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3795), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_PLUS] = ACTIONS(3793), + [anon_sym_STAR] = ACTIONS(3793), + [anon_sym_SLASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_PIPE_PIPE] = ACTIONS(3795), + [anon_sym_AMP_AMP] = ACTIONS(3795), + [anon_sym_PIPE] = ACTIONS(3793), + [anon_sym_CARET] = ACTIONS(3793), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_EQ_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3793), + [anon_sym_GT_EQ] = ACTIONS(3793), + [anon_sym_LT_EQ] = ACTIONS(3793), + [anon_sym_LT] = ACTIONS(3793), + [anon_sym_LT_LT] = ACTIONS(3793), + [anon_sym_GT_GT] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(3795), + [anon_sym_LBRACE] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3795), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3793), + [anon_sym_volatile] = ACTIONS(3795), + [anon_sym_restrict] = ACTIONS(3795), + [anon_sym__Atomic] = ACTIONS(3795), + [anon_sym_mutable] = ACTIONS(3795), + [anon_sym_constexpr] = ACTIONS(3795), + [anon_sym_constinit] = ACTIONS(3795), + [anon_sym_consteval] = ACTIONS(3795), + [anon_sym_COLON] = ACTIONS(3793), + [anon_sym_QMARK] = ACTIONS(3795), + [anon_sym_STAR_EQ] = ACTIONS(3795), + [anon_sym_SLASH_EQ] = ACTIONS(3795), + [anon_sym_PERCENT_EQ] = ACTIONS(3795), + [anon_sym_PLUS_EQ] = ACTIONS(3795), + [anon_sym_DASH_EQ] = ACTIONS(3795), + [anon_sym_LT_LT_EQ] = ACTIONS(3795), + [anon_sym_GT_GT_EQ] = ACTIONS(3793), + [anon_sym_AMP_EQ] = ACTIONS(3795), + [anon_sym_CARET_EQ] = ACTIONS(3795), + [anon_sym_PIPE_EQ] = ACTIONS(3795), + [anon_sym_and_eq] = ACTIONS(3795), + [anon_sym_or_eq] = ACTIONS(3795), + [anon_sym_xor_eq] = ACTIONS(3795), + [anon_sym_LT_EQ_GT] = ACTIONS(3795), + [anon_sym_or] = ACTIONS(3793), + [anon_sym_and] = ACTIONS(3793), + [anon_sym_bitor] = ACTIONS(3795), + [anon_sym_xor] = ACTIONS(3793), + [anon_sym_bitand] = ACTIONS(3795), + [anon_sym_not_eq] = ACTIONS(3795), + [anon_sym_DASH_DASH] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_DASH_GT] = ACTIONS(3795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3795), + [anon_sym_decltype] = ACTIONS(3795), + [anon_sym_final] = ACTIONS(3795), + [anon_sym_override] = ACTIONS(3795), + [anon_sym_GT2] = ACTIONS(3795), + }, + [1797] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3746), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_PERCENT] = ACTIONS(3744), + [anon_sym_PIPE_PIPE] = ACTIONS(3746), + [anon_sym_AMP_AMP] = ACTIONS(3746), + [anon_sym_PIPE] = ACTIONS(3744), + [anon_sym_CARET] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3744), + [anon_sym_EQ_EQ] = ACTIONS(3746), + [anon_sym_BANG_EQ] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT_EQ] = ACTIONS(3744), + [anon_sym_LT_EQ] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_LT_LT] = ACTIONS(3744), + [anon_sym_GT_GT] = ACTIONS(3744), + [anon_sym_COLON_COLON] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_EQ] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_COLON] = ACTIONS(3744), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_STAR_EQ] = ACTIONS(3746), + [anon_sym_SLASH_EQ] = ACTIONS(3746), + [anon_sym_PERCENT_EQ] = ACTIONS(3746), + [anon_sym_PLUS_EQ] = ACTIONS(3746), + [anon_sym_DASH_EQ] = ACTIONS(3746), + [anon_sym_LT_LT_EQ] = ACTIONS(3746), + [anon_sym_GT_GT_EQ] = ACTIONS(3744), + [anon_sym_AMP_EQ] = ACTIONS(3746), + [anon_sym_CARET_EQ] = ACTIONS(3746), + [anon_sym_PIPE_EQ] = ACTIONS(3746), + [anon_sym_and_eq] = ACTIONS(3746), + [anon_sym_or_eq] = ACTIONS(3746), + [anon_sym_xor_eq] = ACTIONS(3746), + [anon_sym_LT_EQ_GT] = ACTIONS(3746), + [anon_sym_or] = ACTIONS(3744), + [anon_sym_and] = ACTIONS(3744), + [anon_sym_bitor] = ACTIONS(3746), + [anon_sym_xor] = ACTIONS(3744), + [anon_sym_bitand] = ACTIONS(3746), + [anon_sym_not_eq] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DOT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_final] = ACTIONS(3746), + [anon_sym_override] = ACTIONS(3746), + [anon_sym_GT2] = ACTIONS(3746), + }, + [1798] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3897), + [anon_sym_COMMA] = ACTIONS(3897), + [anon_sym_RPAREN] = ACTIONS(3897), + [anon_sym_LPAREN2] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(3899), + [anon_sym_STAR] = ACTIONS(3899), + [anon_sym_SLASH] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3897), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE] = ACTIONS(3899), + [anon_sym_CARET] = ACTIONS(3899), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_GT] = ACTIONS(3899), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3899), + [anon_sym_LT] = ACTIONS(3899), + [anon_sym_LT_LT] = ACTIONS(3899), + [anon_sym_GT_GT] = ACTIONS(3899), + [anon_sym_SEMI] = ACTIONS(3897), + [anon_sym_RBRACE] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_RBRACK] = ACTIONS(3897), + [anon_sym_EQ] = ACTIONS(3899), + [anon_sym_COLON] = ACTIONS(3897), + [anon_sym_QMARK] = ACTIONS(3897), + [anon_sym_STAR_EQ] = ACTIONS(3897), + [anon_sym_SLASH_EQ] = ACTIONS(3897), + [anon_sym_PERCENT_EQ] = ACTIONS(3897), + [anon_sym_PLUS_EQ] = ACTIONS(3897), + [anon_sym_DASH_EQ] = ACTIONS(3897), + [anon_sym_LT_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_GT_EQ] = ACTIONS(3897), + [anon_sym_AMP_EQ] = ACTIONS(3897), + [anon_sym_CARET_EQ] = ACTIONS(3897), + [anon_sym_PIPE_EQ] = ACTIONS(3897), + [anon_sym_and_eq] = ACTIONS(3899), + [anon_sym_or_eq] = ACTIONS(3899), + [anon_sym_xor_eq] = ACTIONS(3899), + [anon_sym_LT_EQ_GT] = ACTIONS(3897), + [anon_sym_or] = ACTIONS(3899), + [anon_sym_and] = ACTIONS(3899), + [anon_sym_bitor] = ACTIONS(3899), + [anon_sym_xor] = ACTIONS(3899), + [anon_sym_bitand] = ACTIONS(3899), + [anon_sym_not_eq] = ACTIONS(3899), + [anon_sym_DASH_DASH] = ACTIONS(3897), + [anon_sym_PLUS_PLUS] = ACTIONS(3897), + [anon_sym_DOT] = ACTIONS(3899), + [anon_sym_DASH_GT] = ACTIONS(3897), + [anon_sym_L_DQUOTE] = ACTIONS(3897), + [anon_sym_u_DQUOTE] = ACTIONS(3897), + [anon_sym_U_DQUOTE] = ACTIONS(3897), + [anon_sym_u8_DQUOTE] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3897), + [anon_sym_LR_DQUOTE] = ACTIONS(3897), + [anon_sym_uR_DQUOTE] = ACTIONS(3897), + [anon_sym_UR_DQUOTE] = ACTIONS(3897), + [anon_sym_u8R_DQUOTE] = ACTIONS(3897), + [sym_literal_suffix] = ACTIONS(3899), + }, + [1799] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3398), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5849), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_type_parameter_declaration] = STATE(5849), + [sym_variadic_type_parameter_declaration] = STATE(5849), + [sym_optional_type_parameter_declaration] = STATE(5849), + [sym_template_template_parameter_declaration] = STATE(5849), + [sym_optional_parameter_declaration] = STATE(5849), + [sym_variadic_parameter_declaration] = STATE(5849), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5385), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3825), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(3901), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(3903), + [anon_sym_template] = ACTIONS(3905), + [anon_sym_GT2] = ACTIONS(3907), + }, + [1800] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_AMP_AMP] = ACTIONS(3909), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3911), + [anon_sym_EQ_EQ] = ACTIONS(3909), + [anon_sym_BANG_EQ] = ACTIONS(3909), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3909), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3911), + [anon_sym_GT_GT] = ACTIONS(3911), + [anon_sym_SEMI] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_RBRACK] = ACTIONS(3909), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_STAR_EQ] = ACTIONS(3909), + [anon_sym_SLASH_EQ] = ACTIONS(3909), + [anon_sym_PERCENT_EQ] = ACTIONS(3909), + [anon_sym_PLUS_EQ] = ACTIONS(3909), + [anon_sym_DASH_EQ] = ACTIONS(3909), + [anon_sym_LT_LT_EQ] = ACTIONS(3909), + [anon_sym_GT_GT_EQ] = ACTIONS(3909), + [anon_sym_AMP_EQ] = ACTIONS(3909), + [anon_sym_CARET_EQ] = ACTIONS(3909), + [anon_sym_PIPE_EQ] = ACTIONS(3909), + [anon_sym_and_eq] = ACTIONS(3911), + [anon_sym_or_eq] = ACTIONS(3911), + [anon_sym_xor_eq] = ACTIONS(3911), + [anon_sym_LT_EQ_GT] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [anon_sym_and] = ACTIONS(3911), + [anon_sym_bitor] = ACTIONS(3911), + [anon_sym_xor] = ACTIONS(3911), + [anon_sym_bitand] = ACTIONS(3911), + [anon_sym_not_eq] = ACTIONS(3911), + [anon_sym_DASH_DASH] = ACTIONS(3909), + [anon_sym_PLUS_PLUS] = ACTIONS(3909), + [anon_sym_DOT] = ACTIONS(3911), + [anon_sym_DASH_GT] = ACTIONS(3909), + [anon_sym_L_DQUOTE] = ACTIONS(3909), + [anon_sym_u_DQUOTE] = ACTIONS(3909), + [anon_sym_U_DQUOTE] = ACTIONS(3909), + [anon_sym_u8_DQUOTE] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3909), + [anon_sym_LR_DQUOTE] = ACTIONS(3909), + [anon_sym_uR_DQUOTE] = ACTIONS(3909), + [anon_sym_UR_DQUOTE] = ACTIONS(3909), + [anon_sym_u8R_DQUOTE] = ACTIONS(3909), + [sym_literal_suffix] = ACTIONS(3911), + }, + [1801] = { + [sym_template_argument_list] = STATE(1856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3510), + [anon_sym_COMMA] = ACTIONS(3510), + [anon_sym_RPAREN] = ACTIONS(3523), + [anon_sym_LPAREN2] = ACTIONS(3523), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_PERCENT] = ACTIONS(3518), + [anon_sym_PIPE_PIPE] = ACTIONS(3510), + [anon_sym_AMP_AMP] = ACTIONS(3523), + [anon_sym_PIPE] = ACTIONS(3518), + [anon_sym_CARET] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_EQ_EQ] = ACTIONS(3510), + [anon_sym_BANG_EQ] = ACTIONS(3510), + [anon_sym_GT] = ACTIONS(3518), + [anon_sym_GT_EQ] = ACTIONS(3510), + [anon_sym_LT_EQ] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_LT_LT] = ACTIONS(3518), + [anon_sym_GT_GT] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_EQ] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_volatile] = ACTIONS(3516), + [anon_sym_restrict] = ACTIONS(3516), + [anon_sym__Atomic] = ACTIONS(3516), + [anon_sym_mutable] = ACTIONS(3516), + [anon_sym_constexpr] = ACTIONS(3516), + [anon_sym_constinit] = ACTIONS(3516), + [anon_sym_consteval] = ACTIONS(3516), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_STAR_EQ] = ACTIONS(3510), + [anon_sym_SLASH_EQ] = ACTIONS(3510), + [anon_sym_PERCENT_EQ] = ACTIONS(3510), + [anon_sym_PLUS_EQ] = ACTIONS(3510), + [anon_sym_DASH_EQ] = ACTIONS(3510), + [anon_sym_LT_LT_EQ] = ACTIONS(3510), + [anon_sym_GT_GT_EQ] = ACTIONS(3510), + [anon_sym_AMP_EQ] = ACTIONS(3510), + [anon_sym_CARET_EQ] = ACTIONS(3510), + [anon_sym_PIPE_EQ] = ACTIONS(3510), + [anon_sym_and_eq] = ACTIONS(3887), + [anon_sym_or_eq] = ACTIONS(3887), + [anon_sym_xor_eq] = ACTIONS(3887), + [anon_sym_LT_EQ_GT] = ACTIONS(3510), + [anon_sym_or] = ACTIONS(3518), + [anon_sym_and] = ACTIONS(3518), + [anon_sym_bitor] = ACTIONS(3510), + [anon_sym_xor] = ACTIONS(3518), + [anon_sym_bitand] = ACTIONS(3510), + [anon_sym_not_eq] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DOT] = ACTIONS(3518), + [anon_sym_DASH_GT] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3516), + [anon_sym_decltype] = ACTIONS(3516), + [anon_sym_DOT_STAR] = ACTIONS(3510), + [anon_sym_DASH_GT_STAR] = ACTIONS(3510), + }, + [1802] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3758), + [anon_sym_SLASH] = ACTIONS(3758), + [anon_sym_PERCENT] = ACTIONS(3758), + [anon_sym_PIPE_PIPE] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3758), + [anon_sym_CARET] = ACTIONS(3758), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_EQ_EQ] = ACTIONS(3760), + [anon_sym_BANG_EQ] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT_EQ] = ACTIONS(3758), + [anon_sym_LT_EQ] = ACTIONS(3758), + [anon_sym_LT] = ACTIONS(3758), + [anon_sym_LT_LT] = ACTIONS(3758), + [anon_sym_GT_GT] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3760), + [anon_sym_restrict] = ACTIONS(3760), + [anon_sym__Atomic] = ACTIONS(3760), + [anon_sym_mutable] = ACTIONS(3760), + [anon_sym_constexpr] = ACTIONS(3760), + [anon_sym_constinit] = ACTIONS(3760), + [anon_sym_consteval] = ACTIONS(3760), + [anon_sym_COLON] = ACTIONS(3758), + [anon_sym_QMARK] = ACTIONS(3760), + [anon_sym_STAR_EQ] = ACTIONS(3760), + [anon_sym_SLASH_EQ] = ACTIONS(3760), + [anon_sym_PERCENT_EQ] = ACTIONS(3760), + [anon_sym_PLUS_EQ] = ACTIONS(3760), + [anon_sym_DASH_EQ] = ACTIONS(3760), + [anon_sym_LT_LT_EQ] = ACTIONS(3760), + [anon_sym_GT_GT_EQ] = ACTIONS(3758), + [anon_sym_AMP_EQ] = ACTIONS(3760), + [anon_sym_CARET_EQ] = ACTIONS(3760), + [anon_sym_PIPE_EQ] = ACTIONS(3760), + [anon_sym_and_eq] = ACTIONS(3760), + [anon_sym_or_eq] = ACTIONS(3760), + [anon_sym_xor_eq] = ACTIONS(3760), + [anon_sym_LT_EQ_GT] = ACTIONS(3760), + [anon_sym_or] = ACTIONS(3758), + [anon_sym_and] = ACTIONS(3758), + [anon_sym_bitor] = ACTIONS(3760), + [anon_sym_xor] = ACTIONS(3758), + [anon_sym_bitand] = ACTIONS(3760), + [anon_sym_not_eq] = ACTIONS(3760), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_DASH_GT] = ACTIONS(3760), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3760), + [anon_sym_decltype] = ACTIONS(3760), + [anon_sym_final] = ACTIONS(3760), + [anon_sym_override] = ACTIONS(3760), + [anon_sym_GT2] = ACTIONS(3760), + }, + [1803] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3750), + [anon_sym_SLASH] = ACTIONS(3750), + [anon_sym_PERCENT] = ACTIONS(3750), + [anon_sym_PIPE_PIPE] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3750), + [anon_sym_CARET] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3752), + [anon_sym_BANG_EQ] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT_EQ] = ACTIONS(3750), + [anon_sym_LT_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(3750), + [anon_sym_GT_GT] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3752), + [anon_sym_restrict] = ACTIONS(3752), + [anon_sym__Atomic] = ACTIONS(3752), + [anon_sym_mutable] = ACTIONS(3752), + [anon_sym_constexpr] = ACTIONS(3752), + [anon_sym_constinit] = ACTIONS(3752), + [anon_sym_consteval] = ACTIONS(3752), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_STAR_EQ] = ACTIONS(3752), + [anon_sym_SLASH_EQ] = ACTIONS(3752), + [anon_sym_PERCENT_EQ] = ACTIONS(3752), + [anon_sym_PLUS_EQ] = ACTIONS(3752), + [anon_sym_DASH_EQ] = ACTIONS(3752), + [anon_sym_LT_LT_EQ] = ACTIONS(3752), + [anon_sym_GT_GT_EQ] = ACTIONS(3750), + [anon_sym_AMP_EQ] = ACTIONS(3752), + [anon_sym_CARET_EQ] = ACTIONS(3752), + [anon_sym_PIPE_EQ] = ACTIONS(3752), + [anon_sym_and_eq] = ACTIONS(3752), + [anon_sym_or_eq] = ACTIONS(3752), + [anon_sym_xor_eq] = ACTIONS(3752), + [anon_sym_LT_EQ_GT] = ACTIONS(3752), + [anon_sym_or] = ACTIONS(3750), + [anon_sym_and] = ACTIONS(3750), + [anon_sym_bitor] = ACTIONS(3752), + [anon_sym_xor] = ACTIONS(3750), + [anon_sym_bitand] = ACTIONS(3752), + [anon_sym_not_eq] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3752), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3752), + [anon_sym_decltype] = ACTIONS(3752), + [anon_sym_final] = ACTIONS(3752), + [anon_sym_override] = ACTIONS(3752), + [anon_sym_GT2] = ACTIONS(3752), + }, + [1804] = { + [sym_template_argument_list] = STATE(1822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3691), + [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LPAREN2] = ACTIONS(3681), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_PERCENT] = ACTIONS(3686), + [anon_sym_PIPE_PIPE] = ACTIONS(3691), + [anon_sym_AMP_AMP] = ACTIONS(3681), + [anon_sym_PIPE] = ACTIONS(3686), + [anon_sym_CARET] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3688), + [anon_sym_EQ_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3686), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3916), + [anon_sym_LT_LT] = ACTIONS(3686), + [anon_sym_GT_GT] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3681), + [anon_sym_EQ] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3679), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_QMARK] = ACTIONS(3691), + [anon_sym_STAR_EQ] = ACTIONS(3691), + [anon_sym_SLASH_EQ] = ACTIONS(3691), + [anon_sym_PERCENT_EQ] = ACTIONS(3691), + [anon_sym_PLUS_EQ] = ACTIONS(3691), + [anon_sym_DASH_EQ] = ACTIONS(3691), + [anon_sym_LT_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_GT_EQ] = ACTIONS(3691), + [anon_sym_AMP_EQ] = ACTIONS(3691), + [anon_sym_CARET_EQ] = ACTIONS(3691), + [anon_sym_PIPE_EQ] = ACTIONS(3691), + [anon_sym_and_eq] = ACTIONS(3691), + [anon_sym_or_eq] = ACTIONS(3691), + [anon_sym_xor_eq] = ACTIONS(3691), + [anon_sym_LT_EQ_GT] = ACTIONS(3691), + [anon_sym_or] = ACTIONS(3686), + [anon_sym_and] = ACTIONS(3686), + [anon_sym_bitor] = ACTIONS(3691), + [anon_sym_xor] = ACTIONS(3686), + [anon_sym_bitand] = ACTIONS(3691), + [anon_sym_not_eq] = ACTIONS(3691), + [anon_sym_DASH_DASH] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_DASH_GT] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_DOT_STAR] = ACTIONS(3691), + [anon_sym_DASH_GT_STAR] = ACTIONS(3691), + }, + [1805] = { + [sym__declaration_modifiers] = STATE(2193), + [sym__declaration_specifiers] = STATE(3398), + [sym_attribute_specifier] = STATE(2193), + [sym_attribute_declaration] = STATE(2193), + [sym_ms_declspec_modifier] = STATE(2193), + [sym_storage_class_specifier] = STATE(2193), + [sym_type_qualifier] = STATE(2193), + [sym__type_specifier] = STATE(3274), + [sym_sized_type_specifier] = STATE(3504), + [sym_enum_specifier] = STATE(3504), + [sym_struct_specifier] = STATE(3504), + [sym_union_specifier] = STATE(3504), + [sym_parameter_declaration] = STATE(5895), + [sym_placeholder_type_specifier] = STATE(3504), + [sym_decltype_auto] = STATE(3522), + [sym_decltype] = STATE(3504), + [sym_class_specifier] = STATE(3504), + [sym_virtual_function_specifier] = STATE(2193), + [sym_dependent_type] = STATE(3504), + [sym_type_parameter_declaration] = STATE(5895), + [sym_variadic_type_parameter_declaration] = STATE(5895), + [sym_optional_type_parameter_declaration] = STATE(5895), + [sym_template_template_parameter_declaration] = STATE(5895), + [sym_optional_parameter_declaration] = STATE(5895), + [sym_variadic_parameter_declaration] = STATE(5895), + [sym_template_type] = STATE(3418), + [sym_dependent_type_identifier] = STATE(6970), + [sym__scope_resolution] = STATE(5385), + [sym_qualified_type_identifier] = STATE(3479), + [aux_sym__declaration_specifiers_repeat1] = STATE(2193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3289), + [sym_identifier] = ACTIONS(3825), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(3901), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(3903), + [anon_sym_template] = ACTIONS(3905), + [anon_sym_GT2] = ACTIONS(3919), + }, + [1806] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3921), + [anon_sym_COMMA] = ACTIONS(3921), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3923), + [anon_sym_PLUS] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3923), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_CARET] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3923), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_RBRACK] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_COLON] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_STAR_EQ] = ACTIONS(3921), + [anon_sym_SLASH_EQ] = ACTIONS(3921), + [anon_sym_PERCENT_EQ] = ACTIONS(3921), + [anon_sym_PLUS_EQ] = ACTIONS(3921), + [anon_sym_DASH_EQ] = ACTIONS(3921), + [anon_sym_LT_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_GT_EQ] = ACTIONS(3921), + [anon_sym_AMP_EQ] = ACTIONS(3921), + [anon_sym_CARET_EQ] = ACTIONS(3921), + [anon_sym_PIPE_EQ] = ACTIONS(3921), + [anon_sym_and_eq] = ACTIONS(3923), + [anon_sym_or_eq] = ACTIONS(3923), + [anon_sym_xor_eq] = ACTIONS(3923), + [anon_sym_LT_EQ_GT] = ACTIONS(3921), + [anon_sym_or] = ACTIONS(3923), + [anon_sym_and] = ACTIONS(3923), + [anon_sym_bitor] = ACTIONS(3923), + [anon_sym_xor] = ACTIONS(3923), + [anon_sym_bitand] = ACTIONS(3923), + [anon_sym_not_eq] = ACTIONS(3923), + [anon_sym_DASH_DASH] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3921), + [anon_sym_DOT] = ACTIONS(3923), + [anon_sym_DASH_GT] = ACTIONS(3921), + [anon_sym_L_DQUOTE] = ACTIONS(3921), + [anon_sym_u_DQUOTE] = ACTIONS(3921), + [anon_sym_U_DQUOTE] = ACTIONS(3921), + [anon_sym_u8_DQUOTE] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3921), + [anon_sym_LR_DQUOTE] = ACTIONS(3921), + [anon_sym_uR_DQUOTE] = ACTIONS(3921), + [anon_sym_UR_DQUOTE] = ACTIONS(3921), + [anon_sym_u8R_DQUOTE] = ACTIONS(3921), + [sym_literal_suffix] = ACTIONS(3923), + }, + [1807] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3925), + [anon_sym_COMMA] = ACTIONS(3925), + [anon_sym_RPAREN] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(3927), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3927), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_PIPE_PIPE] = ACTIONS(3925), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE] = ACTIONS(3927), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3927), + [anon_sym_EQ_EQ] = ACTIONS(3925), + [anon_sym_BANG_EQ] = ACTIONS(3925), + [anon_sym_GT] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3925), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_LT_LT] = ACTIONS(3927), + [anon_sym_GT_GT] = ACTIONS(3927), + [anon_sym_SEMI] = ACTIONS(3925), + [anon_sym_RBRACE] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_RBRACK] = ACTIONS(3925), + [anon_sym_EQ] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_STAR_EQ] = ACTIONS(3925), + [anon_sym_SLASH_EQ] = ACTIONS(3925), + [anon_sym_PERCENT_EQ] = ACTIONS(3925), + [anon_sym_PLUS_EQ] = ACTIONS(3925), + [anon_sym_DASH_EQ] = ACTIONS(3925), + [anon_sym_LT_LT_EQ] = ACTIONS(3925), + [anon_sym_GT_GT_EQ] = ACTIONS(3925), + [anon_sym_AMP_EQ] = ACTIONS(3925), + [anon_sym_CARET_EQ] = ACTIONS(3925), + [anon_sym_PIPE_EQ] = ACTIONS(3925), + [anon_sym_and_eq] = ACTIONS(3927), + [anon_sym_or_eq] = ACTIONS(3927), + [anon_sym_xor_eq] = ACTIONS(3927), + [anon_sym_LT_EQ_GT] = ACTIONS(3925), + [anon_sym_or] = ACTIONS(3927), + [anon_sym_and] = ACTIONS(3927), + [anon_sym_bitor] = ACTIONS(3927), + [anon_sym_xor] = ACTIONS(3927), + [anon_sym_bitand] = ACTIONS(3927), + [anon_sym_not_eq] = ACTIONS(3927), + [anon_sym_DASH_DASH] = ACTIONS(3925), + [anon_sym_PLUS_PLUS] = ACTIONS(3925), + [anon_sym_DOT] = ACTIONS(3927), + [anon_sym_DASH_GT] = ACTIONS(3925), + [anon_sym_L_DQUOTE] = ACTIONS(3925), + [anon_sym_u_DQUOTE] = ACTIONS(3925), + [anon_sym_U_DQUOTE] = ACTIONS(3925), + [anon_sym_u8_DQUOTE] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3925), + [anon_sym_LR_DQUOTE] = ACTIONS(3925), + [anon_sym_uR_DQUOTE] = ACTIONS(3925), + [anon_sym_UR_DQUOTE] = ACTIONS(3925), + [anon_sym_u8R_DQUOTE] = ACTIONS(3925), + [sym_literal_suffix] = ACTIONS(3927), + }, + [1808] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3762), + [anon_sym_SLASH] = ACTIONS(3762), + [anon_sym_PERCENT] = ACTIONS(3762), + [anon_sym_PIPE_PIPE] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3762), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_EQ_EQ] = ACTIONS(3764), + [anon_sym_BANG_EQ] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT_EQ] = ACTIONS(3762), + [anon_sym_LT_EQ] = ACTIONS(3762), + [anon_sym_LT] = ACTIONS(3762), + [anon_sym_LT_LT] = ACTIONS(3762), + [anon_sym_GT_GT] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_constinit] = ACTIONS(3764), + [anon_sym_consteval] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_STAR_EQ] = ACTIONS(3764), + [anon_sym_SLASH_EQ] = ACTIONS(3764), + [anon_sym_PERCENT_EQ] = ACTIONS(3764), + [anon_sym_PLUS_EQ] = ACTIONS(3764), + [anon_sym_DASH_EQ] = ACTIONS(3764), + [anon_sym_LT_LT_EQ] = ACTIONS(3764), + [anon_sym_GT_GT_EQ] = ACTIONS(3762), + [anon_sym_AMP_EQ] = ACTIONS(3764), + [anon_sym_CARET_EQ] = ACTIONS(3764), + [anon_sym_PIPE_EQ] = ACTIONS(3764), + [anon_sym_and_eq] = ACTIONS(3764), + [anon_sym_or_eq] = ACTIONS(3764), + [anon_sym_xor_eq] = ACTIONS(3764), + [anon_sym_LT_EQ_GT] = ACTIONS(3764), + [anon_sym_or] = ACTIONS(3762), + [anon_sym_and] = ACTIONS(3762), + [anon_sym_bitor] = ACTIONS(3764), + [anon_sym_xor] = ACTIONS(3762), + [anon_sym_bitand] = ACTIONS(3764), + [anon_sym_not_eq] = ACTIONS(3764), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3764), + [anon_sym_decltype] = ACTIONS(3764), + [anon_sym_final] = ACTIONS(3764), + [anon_sym_override] = ACTIONS(3764), + [anon_sym_GT2] = ACTIONS(3764), + }, + [1809] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_PERCENT] = ACTIONS(3740), + [anon_sym_PIPE_PIPE] = ACTIONS(3742), + [anon_sym_AMP_AMP] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_EQ_EQ] = ACTIONS(3742), + [anon_sym_BANG_EQ] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT_EQ] = ACTIONS(3740), + [anon_sym_LT_EQ] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_LT_LT] = ACTIONS(3740), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_COLON_COLON] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_EQ] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_COLON] = ACTIONS(3740), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_STAR_EQ] = ACTIONS(3742), + [anon_sym_SLASH_EQ] = ACTIONS(3742), + [anon_sym_PERCENT_EQ] = ACTIONS(3742), + [anon_sym_PLUS_EQ] = ACTIONS(3742), + [anon_sym_DASH_EQ] = ACTIONS(3742), + [anon_sym_LT_LT_EQ] = ACTIONS(3742), + [anon_sym_GT_GT_EQ] = ACTIONS(3740), + [anon_sym_AMP_EQ] = ACTIONS(3742), + [anon_sym_CARET_EQ] = ACTIONS(3742), + [anon_sym_PIPE_EQ] = ACTIONS(3742), + [anon_sym_and_eq] = ACTIONS(3742), + [anon_sym_or_eq] = ACTIONS(3742), + [anon_sym_xor_eq] = ACTIONS(3742), + [anon_sym_LT_EQ_GT] = ACTIONS(3742), + [anon_sym_or] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_bitor] = ACTIONS(3742), + [anon_sym_xor] = ACTIONS(3740), + [anon_sym_bitand] = ACTIONS(3742), + [anon_sym_not_eq] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_final] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_GT2] = ACTIONS(3742), + }, + [1810] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3736), + [anon_sym_PLUS] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_SLASH] = ACTIONS(3736), + [anon_sym_PERCENT] = ACTIONS(3736), + [anon_sym_PIPE_PIPE] = ACTIONS(3738), + [anon_sym_AMP_AMP] = ACTIONS(3738), + [anon_sym_PIPE] = ACTIONS(3736), + [anon_sym_CARET] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3736), + [anon_sym_EQ_EQ] = ACTIONS(3738), + [anon_sym_BANG_EQ] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT_EQ] = ACTIONS(3736), + [anon_sym_LT_EQ] = ACTIONS(3736), + [anon_sym_LT] = ACTIONS(3736), + [anon_sym_LT_LT] = ACTIONS(3736), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_COLON_COLON] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_EQ] = ACTIONS(3736), + [anon_sym_const] = ACTIONS(3736), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym_mutable] = ACTIONS(3738), + [anon_sym_constexpr] = ACTIONS(3738), + [anon_sym_constinit] = ACTIONS(3738), + [anon_sym_consteval] = ACTIONS(3738), + [anon_sym_COLON] = ACTIONS(3736), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_STAR_EQ] = ACTIONS(3738), + [anon_sym_SLASH_EQ] = ACTIONS(3738), + [anon_sym_PERCENT_EQ] = ACTIONS(3738), + [anon_sym_PLUS_EQ] = ACTIONS(3738), + [anon_sym_DASH_EQ] = ACTIONS(3738), + [anon_sym_LT_LT_EQ] = ACTIONS(3738), + [anon_sym_GT_GT_EQ] = ACTIONS(3736), + [anon_sym_AMP_EQ] = ACTIONS(3738), + [anon_sym_CARET_EQ] = ACTIONS(3738), + [anon_sym_PIPE_EQ] = ACTIONS(3738), + [anon_sym_and_eq] = ACTIONS(3738), + [anon_sym_or_eq] = ACTIONS(3738), + [anon_sym_xor_eq] = ACTIONS(3738), + [anon_sym_LT_EQ_GT] = ACTIONS(3738), + [anon_sym_or] = ACTIONS(3736), + [anon_sym_and] = ACTIONS(3736), + [anon_sym_bitor] = ACTIONS(3738), + [anon_sym_xor] = ACTIONS(3736), + [anon_sym_bitand] = ACTIONS(3738), + [anon_sym_not_eq] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_DASH_GT] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_decltype] = ACTIONS(3738), + [anon_sym_final] = ACTIONS(3738), + [anon_sym_override] = ACTIONS(3738), + [anon_sym_GT2] = ACTIONS(3738), + }, + [1811] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3778), + [anon_sym_COMMA] = ACTIONS(3778), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_PLUS] = ACTIONS(3773), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_PIPE_PIPE] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_PIPE] = ACTIONS(3773), + [anon_sym_CARET] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3775), + [anon_sym_EQ_EQ] = ACTIONS(3778), + [anon_sym_BANG_EQ] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3773), + [anon_sym_GT_EQ] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3773), + [anon_sym_LT] = ACTIONS(3773), + [anon_sym_LT_LT] = ACTIONS(3773), + [anon_sym_GT_GT] = ACTIONS(3773), + [anon_sym_COLON_COLON] = ACTIONS(3771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3771), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_EQ] = ACTIONS(3773), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3771), + [anon_sym_restrict] = ACTIONS(3771), + [anon_sym__Atomic] = ACTIONS(3771), + [anon_sym_mutable] = ACTIONS(3771), + [anon_sym_constexpr] = ACTIONS(3771), + [anon_sym_constinit] = ACTIONS(3771), + [anon_sym_consteval] = ACTIONS(3771), + [anon_sym_QMARK] = ACTIONS(3778), + [anon_sym_STAR_EQ] = ACTIONS(3778), + [anon_sym_SLASH_EQ] = ACTIONS(3778), + [anon_sym_PERCENT_EQ] = ACTIONS(3778), + [anon_sym_PLUS_EQ] = ACTIONS(3778), + [anon_sym_DASH_EQ] = ACTIONS(3778), + [anon_sym_LT_LT_EQ] = ACTIONS(3778), + [anon_sym_GT_GT_EQ] = ACTIONS(3778), + [anon_sym_AMP_EQ] = ACTIONS(3778), + [anon_sym_CARET_EQ] = ACTIONS(3778), + [anon_sym_PIPE_EQ] = ACTIONS(3778), + [anon_sym_and_eq] = ACTIONS(3778), + [anon_sym_or_eq] = ACTIONS(3778), + [anon_sym_xor_eq] = ACTIONS(3778), + [anon_sym_LT_EQ_GT] = ACTIONS(3778), + [anon_sym_or] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_bitor] = ACTIONS(3778), + [anon_sym_xor] = ACTIONS(3773), + [anon_sym_bitand] = ACTIONS(3778), + [anon_sym_not_eq] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_DASH_GT] = ACTIONS(3773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3771), + [anon_sym_decltype] = ACTIONS(3771), + [anon_sym_DOT_STAR] = ACTIONS(3778), + [anon_sym_DASH_GT_STAR] = ACTIONS(3778), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3742), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(3901), 1, + anon_sym_class, + ACTIONS(3903), 1, + anon_sym_typename, + ACTIONS(3905), 1, + anon_sym_template, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3398), 1, + sym__declaration_specifiers, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(6451), 7, + sym_parameter_declaration, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + sym_template_template_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2193), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3795), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3760), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3764), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [409] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1817), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3933), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3929), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(3931), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [484] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1818), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3936), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3939), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3847), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3849), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3738), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [632] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + sym_literal_suffix, + STATE(1823), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1681), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1687), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3510), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3518), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3746), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [782] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_const, + ACTIONS(3775), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3768), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3771), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3773), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3778), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [861] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1818), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1681), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1687), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3859), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3861), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3752), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1009] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3944), 1, + sym_identifier, + ACTIONS(3952), 1, + sym_primitive_type, + STATE(1817), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3950), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3948), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + ACTIONS(3946), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1088] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_const, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(3154), 1, + sym_template_argument_list, + ACTIONS(3520), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3957), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(3523), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3516), 9, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3510), 11, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3959), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [1178] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_const, + ACTIONS(3768), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + ACTIONS(3775), 3, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3771), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3773), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3778), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1256] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3771), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3768), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3773), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3778), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3766), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [1334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3925), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3897), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3909), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1544] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1833), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1447), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1455), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3861), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3859), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1620] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1833), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3961), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3964), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3849), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3847), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1696] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 1, + sym_literal_suffix, + STATE(1832), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1447), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1455), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3518), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1774] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3679), 1, + anon_sym_const, + ACTIONS(3969), 1, + anon_sym_LT, + STATE(1847), 1, + sym_template_argument_list, + ACTIONS(3688), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3681), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3684), 10, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3686), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 23, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3921), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1928] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3771), 4, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3768), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3778), 13, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3773), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3766), 23, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [2006] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3768), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3771), 4, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3773), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3778), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3766), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [2084] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2144), 1, + sym_field_declaration_list, + STATE(5570), 1, + sym_virtual_specifier, + STATE(6601), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3972), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2165] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2096), 1, + sym_field_declaration_list, + STATE(5595), 1, + sym_virtual_specifier, + STATE(6583), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3982), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2246] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(1465), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(3839), 1, + anon_sym_RPAREN, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3399), 1, + sym__declaration_specifiers, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5829), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2193), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [2373] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2130), 1, + sym_field_declaration_list, + STATE(5568), 1, + sym_virtual_specifier, + STATE(6610), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3986), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2454] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2157), 1, + sym_field_declaration_list, + STATE(5611), 1, + sym_virtual_specifier, + STATE(6567), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3990), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2535] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(3998), 1, + sym_primitive_type, + STATE(1846), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3996), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3948), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2612] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2140), 1, + sym_field_declaration_list, + STATE(5602), 1, + sym_virtual_specifier, + STATE(6574), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4000), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2693] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1846), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4004), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3929), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [2766] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_const, + ACTIONS(3775), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3768), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3771), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3773), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3778), 23, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [2843] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2137), 1, + sym_field_declaration_list, + STATE(5569), 1, + sym_virtual_specifier, + STATE(6606), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4007), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2924] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2014), 1, + sym_field_declaration_list, + STATE(5682), 1, + sym_virtual_specifier, + STATE(6510), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4011), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [3005] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2016), 1, + sym_field_declaration_list, + STATE(5679), 1, + sym_virtual_specifier, + STATE(6515), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4015), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [3086] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3100), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3102), 1, + anon_sym_RPAREN, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3399), 1, + sym__declaration_specifiers, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5821), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2193), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [3213] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2022), 1, + sym_field_declaration_list, + STATE(5669), 1, + sym_virtual_specifier, + STATE(6518), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4019), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [3294] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_LBRACK, + ACTIONS(4031), 1, + sym_auto, + ACTIONS(4033), 1, + anon_sym_decltype, + STATE(2153), 1, + sym_decltype_auto, + STATE(2159), 1, + sym_new_declarator, + STATE(2554), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4023), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [3378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3925), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [3446] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2433), 1, + sym_field_declaration_list, + STATE(5801), 1, + sym_virtual_specifier, + STATE(6295), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4019), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3526] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_const, + ACTIONS(3775), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3768), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3771), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3773), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3778), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3602] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2292), 1, + sym_field_declaration_list, + STATE(5720), 1, + sym_virtual_specifier, + STATE(6245), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4007), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3682] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2228), 1, + sym_field_declaration_list, + STATE(5781), 1, + sym_virtual_specifier, + STATE(6278), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3990), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3762] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2415), 1, + sym_field_declaration_list, + STATE(5725), 1, + sym_virtual_specifier, + STATE(6255), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3972), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3842] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + anon_sym_RPAREN, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3399), 1, + sym__declaration_specifiers, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5841), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2193), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [3966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3921), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [4034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4037), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_try, + anon_sym_delete, + anon_sym_throw, + anon_sym_co_return, + anon_sym_co_yield, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + [4102] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2224), 1, + sym_field_declaration_list, + STATE(5768), 1, + sym_virtual_specifier, + STATE(6273), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4000), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4182] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4043), 1, + anon_sym_LT, + STATE(1882), 1, + sym_template_argument_list, + ACTIONS(4041), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3534), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [4256] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_LBRACK, + ACTIONS(4031), 1, + sym_auto, + ACTIONS(4033), 1, + anon_sym_decltype, + STATE(2153), 1, + sym_decltype_auto, + STATE(2158), 1, + sym_new_declarator, + STATE(2476), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4045), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [4340] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2425), 1, + sym_field_declaration_list, + STATE(5812), 1, + sym_virtual_specifier, + STATE(6297), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4015), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4420] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4049), 1, + anon_sym_DOT_DOT_DOT, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3399), 1, + sym__declaration_specifiers, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(6429), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2193), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [4544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3897), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [4612] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_LBRACK, + ACTIONS(4031), 1, + sym_auto, + ACTIONS(4033), 1, + anon_sym_decltype, + STATE(2124), 1, + sym_new_declarator, + STATE(2153), 1, + sym_decltype_auto, + STATE(2487), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4051), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [4696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4055), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_try, + anon_sym_delete, + anon_sym_throw, + anon_sym_co_return, + anon_sym_co_yield, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + [4764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3909), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [4832] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2406), 1, + sym_field_declaration_list, + STATE(5808), 1, + sym_virtual_specifier, + STATE(6299), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4011), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4059), 1, + anon_sym_LT, + STATE(1882), 1, + sym_template_argument_list, + ACTIONS(3679), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3684), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [4986] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2221), 1, + sym_field_declaration_list, + STATE(5759), 1, + sym_virtual_specifier, + STATE(6269), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3982), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5066] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_LBRACK, + ACTIONS(4031), 1, + sym_auto, + ACTIONS(4033), 1, + anon_sym_decltype, + STATE(2138), 1, + sym_new_declarator, + STATE(2153), 1, + sym_decltype_auto, + STATE(2513), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4062), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [5150] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2262), 1, + sym_field_declaration_list, + STATE(5715), 1, + sym_virtual_specifier, + STATE(6241), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3986), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5230] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1877), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4066), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3929), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [5301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4069), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4073), 1, + anon_sym_LT, + STATE(1923), 1, + sym_template_argument_list, + ACTIONS(4041), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3534), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + anon_sym_catch, + STATE(1899), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2368), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [5512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3764), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3771), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3925), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5713] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4077), 1, + anon_sym_LT, + STATE(1923), 1, + sym_template_argument_list, + ACTIONS(3679), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3684), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5786] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4080), 1, + sym_identifier, + ACTIONS(4084), 1, + sym_primitive_type, + STATE(1877), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4082), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3948), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + [5861] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3399), 1, + sym__declaration_specifiers, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(6438), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2193), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [5982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4086), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3795), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4086), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3921), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4092), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + anon_sym_catch, + STATE(1899), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2374), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2372), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [6394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3738), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3746), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3742), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3909), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3760), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3752), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4096), 1, + anon_sym_catch, + STATE(1899), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2363), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2361), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [6867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3897), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6934] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + anon_sym_catch, + STATE(1899), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2357), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2355), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [7005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4043), 1, + anon_sym_LT, + STATE(1882), 1, + sym_template_argument_list, + ACTIONS(3508), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3516), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [7077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4086), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [7143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4099), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4103), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4111), 1, + sym_primitive_type, + STATE(1929), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3948), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + ACTIONS(3946), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4113), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4117), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7481] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 1, + sym_identifier, + ACTIONS(4125), 1, + sym_primitive_type, + STATE(1917), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4123), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3948), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [7555] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4131), 1, + sym_auto, + ACTIONS(4133), 1, + anon_sym_decltype, + STATE(2246), 1, + sym_decltype_auto, + STATE(2247), 1, + sym_new_declarator, + STATE(2815), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4062), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4135), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4139), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4143), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4135), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7901] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2638), 1, + sym_field_declaration_list, + STATE(5649), 1, + sym_virtual_specifier, + STATE(6212), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4019), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [7979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4149), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [8045] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1917), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4153), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3929), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [8115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4158), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4156), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [8181] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4131), 1, + sym_auto, + ACTIONS(4133), 1, + anon_sym_decltype, + STATE(2246), 1, + sym_decltype_auto, + STATE(2310), 1, + sym_new_declarator, + STATE(2844), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4051), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8263] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4131), 1, + sym_auto, + ACTIONS(4133), 1, + anon_sym_decltype, + STATE(2215), 1, + sym_new_declarator, + STATE(2246), 1, + sym_decltype_auto, + STATE(2771), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4045), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4135), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [8411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_COLON, + STATE(1961), 1, + sym__enum_base_clause, + STATE(2097), 1, + sym_enumerator_list, + ACTIONS(4162), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4160), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [8483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3771), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4164), 1, + anon_sym_COLON, + STATE(1947), 1, + sym__enum_base_clause, + STATE(2004), 1, + sym_enumerator_list, + ACTIONS(4168), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4166), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [8621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4172), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4170), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [8687] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2640), 1, + sym_field_declaration_list, + STATE(5658), 1, + sym_virtual_specifier, + STATE(6214), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4015), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2335), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2337), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [8833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4176), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4174), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [8899] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1929), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4178), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3929), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(3931), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4069), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9035] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2642), 1, + sym_field_declaration_list, + STATE(5664), 1, + sym_virtual_specifier, + STATE(6216), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4011), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9113] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_field_declaration_list, + STATE(5583), 1, + sym_virtual_specifier, + STATE(6179), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3986), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9191] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_field_declaration_list, + STATE(5636), 1, + sym_virtual_specifier, + STATE(6173), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3990), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9269] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4129), 1, + anon_sym_LBRACK, + ACTIONS(4131), 1, + sym_auto, + ACTIONS(4133), 1, + anon_sym_decltype, + STATE(2246), 1, + sym_decltype_auto, + STATE(2449), 1, + sym_new_declarator, + STATE(2728), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4023), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4181), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [9417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4092), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9485] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4185), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [9555] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2658), 1, + sym_field_declaration_list, + STATE(5630), 1, + sym_virtual_specifier, + STATE(6200), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4000), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2625), 1, + sym_field_declaration_list, + STATE(5626), 1, + sym_virtual_specifier, + STATE(6196), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3982), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4189), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [9777] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2610), 1, + sym_field_declaration_list, + STATE(5599), 1, + sym_virtual_specifier, + STATE(6183), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4007), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9855] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4086), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4086), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9991] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2614), 1, + sym_field_declaration_list, + STATE(5615), 1, + sym_virtual_specifier, + STATE(6188), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3972), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [10069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3771), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10134] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4193), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(4041), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3534), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [10205] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2047), 1, + sym_enumerator_list, + ACTIONS(4197), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4195), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [10272] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2857), 1, + sym_field_declaration_list, + STATE(5797), 1, + sym_virtual_specifier, + STATE(6388), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3986), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4201), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [10416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_catch, + STATE(1967), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2357), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2355), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [10485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4069), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10550] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4980), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5483), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4031), 1, + sym_auto, + ACTIONS(4033), 1, + anon_sym_decltype, + STATE(2153), 1, + sym_decltype_auto, + ACTIONS(4225), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4223), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [10734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4086), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10801] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4953), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5494), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3771), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10979] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5081), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5456), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11092] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2902), 1, + sym_field_declaration_list, + STATE(5703), 1, + sym_virtual_specifier, + STATE(6333), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4000), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11169] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2898), 1, + sym_field_declaration_list, + STATE(5710), 1, + sym_virtual_specifier, + STATE(6339), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3982), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11246] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4987), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5454), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11359] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1991), 1, + sym_enumerator_list, + ACTIONS(4229), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4227), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [11426] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4972), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5462), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2337), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [11604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_COLON, + STATE(2197), 1, + sym__enum_base_clause, + STATE(2243), 1, + sym_enumerator_list, + ACTIONS(4162), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4160), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4086), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym_catch, + STATE(1989), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2357), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2355), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [11809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_catch, + STATE(1967), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2363), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2361), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [11878] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2920), 1, + sym_field_declaration_list, + STATE(5692), 1, + sym_virtual_specifier, + STATE(6328), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3990), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11955] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4957), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5480), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym_catch, + STATE(1989), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2368), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [12137] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(4961), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5488), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4086), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [12317] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2919), 1, + sym_field_declaration_list, + STATE(5622), 1, + sym_virtual_specifier, + STATE(6306), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4019), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12394] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2870), 1, + sym_field_declaration_list, + STATE(5788), 1, + sym_virtual_specifier, + STATE(6415), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4007), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12471] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2917), 1, + sym_field_declaration_list, + STATE(5755), 1, + sym_virtual_specifier, + STATE(6293), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4015), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2878), 1, + sym_field_declaration_list, + STATE(5786), 1, + sym_virtual_specifier, + STATE(6374), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3972), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12625] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2912), 1, + sym_field_declaration_list, + STATE(5589), 1, + sym_virtual_specifier, + STATE(6289), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4011), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2386), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2384), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [12767] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5046), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5494), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12880] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5018), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5483), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym_catch, + STATE(1989), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2374), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2372), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_catch, + STATE(1967), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2370), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2368), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_catch, + STATE(1967), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2374), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2372), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13200] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5001), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5488), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [13313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2329), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [13378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4238), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(3679), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3684), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [13449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 1, + anon_sym_COLON, + STATE(2189), 1, + sym__enum_base_clause, + STATE(2398), 1, + sym_enumerator_list, + ACTIONS(4168), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4166), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [13520] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1611), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + STATE(4822), 1, + sym__scope_resolution, + STATE(5000), 1, + sym_function_declarator, + STATE(5475), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(5456), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5152), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [13633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 1, + anon_sym_catch, + STATE(1989), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2363), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2361), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2697), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4244), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [13830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4250), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4248), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4252), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [13958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4256), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4252), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4260), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4201), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4264), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4270), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4268), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4270), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4268), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4274), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4272), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4276), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4280), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4284), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4288), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [14726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2785), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4185), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [14858] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(4294), 1, + anon_sym_LBRACK, + ACTIONS(4296), 1, + sym_auto, + ACTIONS(4298), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2659), 1, + sym_new_declarator, + STATE(3036), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4051), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [14938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4300), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4304), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4308), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4312), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4316), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4320), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4324), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4328), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2737), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2733), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2725), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4332), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2713), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4336), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4340), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4344), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2705), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4348), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4352), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2555), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4352), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2555), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2535), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4356), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2829), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4360), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4364), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4368), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4372), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16794] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4073), 1, + anon_sym_LT, + STATE(1923), 1, + sym_template_argument_list, + ACTIONS(3508), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3516), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [16864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2833), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [16992] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4376), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + ACTIONS(3679), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3684), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [17062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2703), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2701), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17126] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4285), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [17242] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4277), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [17358] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4288), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [17474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2649), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4379), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2539), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2769), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4383), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4387), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4391), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2335), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2337), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [17988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4395), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18052] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4268), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [18168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4399), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4403), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2689), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18360] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4255), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [18476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2603), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4407), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2603), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [18796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4411), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4415), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18924] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(4294), 1, + anon_sym_LBRACK, + ACTIONS(4296), 1, + sym_auto, + ACTIONS(4298), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2660), 1, + sym_new_declarator, + STATE(3046), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4062), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [19004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4419), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2681), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19132] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2759), 1, + sym_field_declaration_list, + STATE(5633), 1, + sym_virtual_specifier, + STATE(6312), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3990), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [19208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4425), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4429), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4433), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4437), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19464] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4307), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [19580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4437), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4441), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4445), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4449), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2827), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2825), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4433), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4453), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4457), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2773), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20156] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4461), 1, + anon_sym_LT, + STATE(2184), 1, + sym_template_argument_list, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [20228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2773), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4464), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2791), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2789), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2793), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2801), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4468), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4201), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2807), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2805), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2757), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2797), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [20868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4472), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4476), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4480), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4484), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4488), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2709), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [21252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2717), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [21316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4492), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + ACTIONS(4041), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3534), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [21386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2761), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [21450] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2755), 1, + sym_field_declaration_list, + STATE(5581), 1, + sym_virtual_specifier, + STATE(6283), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4000), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [21526] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2740), 1, + sym_field_declaration_list, + STATE(5575), 1, + sym_virtual_specifier, + STATE(6251), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3982), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [21602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4494), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21666] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(4294), 1, + anon_sym_LBRACK, + ACTIONS(4296), 1, + sym_auto, + ACTIONS(4298), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2664), 1, + sym_new_declarator, + STATE(2987), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4023), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [21746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4498), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21810] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4256), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [21926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4502), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4506), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22118] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2748), 1, + sym_field_declaration_list, + STATE(5689), 1, + sym_virtual_specifier, + STATE(6168), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3986), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [22194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4514), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22258] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2714), 1, + sym_field_declaration_list, + STATE(5811), 1, + sym_virtual_specifier, + STATE(6175), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4007), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [22334] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2807), 1, + sym_field_declaration_list, + STATE(5700), 1, + sym_virtual_specifier, + STATE(6493), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4011), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [22410] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4297), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [22526] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4299), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [22642] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_field_declaration_list, + STATE(5722), 1, + sym_virtual_specifier, + STATE(6191), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3972), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [22718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2577), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [22782] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2804), 1, + sym_field_declaration_list, + STATE(5731), 1, + sym_virtual_specifier, + STATE(6462), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4015), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [22858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4518), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22922] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + STATE(2470), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4522), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22992] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2802), 1, + sym_field_declaration_list, + STATE(5745), 1, + sym_virtual_specifier, + STATE(6441), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4019), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [23068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4526), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [23132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4530), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [23196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4534), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4538), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [23324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4542), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4546), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23452] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2335), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2337), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [23518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4550), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23582] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(4294), 1, + anon_sym_LBRACK, + ACTIONS(4296), 1, + sym_auto, + ACTIONS(4298), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + STATE(2665), 1, + sym_new_declarator, + STATE(3056), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4045), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [23662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4554), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23726] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4275), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [23842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4558), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23906] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + STATE(2474), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4562), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [23976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4566), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4570), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4574), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4578), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4582), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4586), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24360] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4308), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [24476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4590), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2845), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [24604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4594), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2837), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [24732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4598), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2753), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [24860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4092), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [24926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4602), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2673), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [25054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4606), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4610), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4614), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [25246] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + STATE(2488), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4618), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + STATE(2514), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4622), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25386] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4270), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [25502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2507), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [25566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2693), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [25630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2783), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2781), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [25694] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + ACTIONS(4626), 1, + anon_sym_LT, + STATE(2184), 1, + sym_template_argument_list, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4086), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [25830] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3274), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4306), 1, + sym__declaration_specifiers, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2188), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [25946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2337), 49, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [26009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4086), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4086), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4629), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [26202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2337), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [26265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4088), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26328] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + ACTIONS(4635), 1, + anon_sym_LBRACK, + ACTIONS(4637), 1, + sym_auto, + ACTIONS(4639), 1, + anon_sym_decltype, + STATE(2795), 1, + sym_new_declarator, + STATE(2845), 1, + sym_decltype_auto, + STATE(3111), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4023), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26407] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + ACTIONS(4635), 1, + anon_sym_LBRACK, + ACTIONS(4637), 1, + sym_auto, + ACTIONS(4639), 1, + anon_sym_decltype, + STATE(2725), 1, + sym_new_declarator, + STATE(2845), 1, + sym_decltype_auto, + STATE(3128), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4051), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3778), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2329), 49, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [26614] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4644), 1, + anon_sym_LT, + ACTIONS(4647), 1, + anon_sym_LBRACK, + STATE(2284), 1, + sym_template_argument_list, + ACTIONS(4641), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26691] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + anon_sym_LT, + ACTIONS(4652), 1, + anon_sym_LBRACK, + STATE(2980), 1, + sym_template_argument_list, + ACTIONS(3887), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4650), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26768] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + ACTIONS(3693), 1, + anon_sym_LT, + STATE(2284), 1, + sym_template_argument_list, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_LBRACK, + STATE(2464), 1, + sym_new_declarator, + ACTIONS(4656), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4654), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26906] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(1631), 1, + anon_sym_typename, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + STATE(3418), 1, + sym_template_type, + STATE(3528), 1, + sym__type_specifier, + STATE(3792), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3411), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [27019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_COLON, + STATE(2575), 1, + sym__enum_base_clause, + STATE(2636), 1, + sym_enumerator_list, + ACTIONS(4162), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4160), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [27153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3778), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [27218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4069), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_COLON, + STATE(2467), 1, + sym__enum_base_clause, + STATE(2646), 1, + sym_enumerator_list, + ACTIONS(4168), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4166), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [27350] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4662), 1, + anon_sym_LT, + STATE(2492), 1, + sym_template_argument_list, + ACTIONS(4650), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27425] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3279), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3411), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [27538] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2240), 1, + sym_enumerator_list, + ACTIONS(4197), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4195), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2386), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2384), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [27666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4092), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27731] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + ACTIONS(4635), 1, + anon_sym_LBRACK, + ACTIONS(4637), 1, + sym_auto, + ACTIONS(4639), 1, + anon_sym_decltype, + STATE(2733), 1, + sym_new_declarator, + STATE(2845), 1, + sym_decltype_auto, + STATE(3134), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4062), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27810] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym__type_specifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3411), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [27923] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2871), 1, + anon_sym_enum, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(2879), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4074), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3411), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [28036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4131), 1, + sym_auto, + ACTIONS(4133), 1, + anon_sym_decltype, + STATE(2246), 1, + sym_decltype_auto, + ACTIONS(4225), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4223), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [28168] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2347), 1, + sym_enumerator_list, + ACTIONS(4229), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4227), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28233] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + ACTIONS(4635), 1, + anon_sym_LBRACK, + ACTIONS(4637), 1, + sym_auto, + ACTIONS(4639), 1, + anon_sym_decltype, + STATE(2765), 1, + sym_new_declarator, + STATE(2845), 1, + sym_decltype_auto, + STATE(3119), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4045), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [28375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2329), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [28438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [28501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [28564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [28627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2386), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2384), 49, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [28690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4550), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4437), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4538), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [28876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4399), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4403), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2837), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4665), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [29124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4407), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2753), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4457), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29310] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + STATE(2843), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4618), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4411), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4441), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4415), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2673), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [29626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4464), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4472), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4494), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4534), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4570), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4574), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4610), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4671), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4669), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [30122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4614), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4677), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4675), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4673), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [30250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4372), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2577), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4488), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4419), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4502), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2833), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [30622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4506), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4510), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4514), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4582), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4379), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4498), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3795), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [31056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4476), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2649), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4484), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4602), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31304] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + STATE(2879), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4562), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4687), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4685), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4683), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4681), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [31438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2791), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2789), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4480), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4256), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4526), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31686] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4689), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(2887), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(2885), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [31752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4069), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [31814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2797), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2649), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [31938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4693), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4691), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [32000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2685), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2685), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4518), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2845), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4542), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2769), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2757), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4304), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4308), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2773), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2773), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2785), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2507), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2807), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2805), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4250), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4248), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4453), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [32992] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + ACTIONS(3784), 1, + anon_sym_LT, + STATE(2175), 1, + sym_template_argument_list, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [33062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2693), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4546), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4433), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2737), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4437), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2697), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4395), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4437), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2793), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3778), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4433), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33746] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_LT, + STATE(2492), 1, + sym_template_argument_list, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2785), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2791), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2789), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [33940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4554), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2793), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2555), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4558), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34188] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4641), 1, + anon_sym_LPAREN2, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_LT, + STATE(2175), 1, + sym_template_argument_list, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [34264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2733), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4252), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4252), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2801), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2807), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2805), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4260), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4274), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4272), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2709), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [34822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4391), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4566), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2725), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4578), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [35070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4086), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [35134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2539), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2535), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + STATE(2886), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4522), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [35326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4086), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [35390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4538), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4530), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4526), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35576] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4702), 1, + anon_sym_STAR, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_AMP, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5180), 1, + sym__declarator, + STATE(5375), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4700), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3232), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3250), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [35686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4387), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [35748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4598), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [35810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4288), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [35872] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2319), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4712), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3929), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [35938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4383), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2555), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4429), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2717), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2829), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2721), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4606), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2577), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4425), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4316), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4312), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4300), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4590), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2773), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2797), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2783), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2781), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4594), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3764), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3760), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3752), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_COLON, + STATE(2691), 1, + sym__enum_base_clause, + STATE(2911), 1, + sym_enumerator_list, + ACTIONS(4168), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4166), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37246] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4717), 1, + sym_identifier, + ACTIONS(4721), 1, + sym_primitive_type, + STATE(2319), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4719), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3948), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [37316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2761), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3771), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2713), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2705), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37564] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [37638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4244), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2703), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2701), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2689), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4193), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(3508), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3516), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [37892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2603), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2685), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2803), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2801), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4726), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [38202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2603), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2827), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2825), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3863), 1, + sym_literal_suffix, + ACTIONS(3518), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [38390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4368), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4264), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4732), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4730), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [38578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2507), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4742), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4740), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4738), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4736), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [38706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2737), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2773), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2681), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4270), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4268), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [38954] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2883), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4744), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(2863), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(2861), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [39020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4270), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4268), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2733), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4449), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4746), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [39268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4754), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4752), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4750), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [39334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4758), 41, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [39396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2725), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2603), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2603), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2713), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39644] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [39722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4270), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4268), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4270), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4268), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4264), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2555), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [39970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2705), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2833), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4445), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + anon_sym_COLON, + STATE(2685), 1, + sym__enum_base_clause, + STATE(2909), 1, + sym_enumerator_list, + ACTIONS(4162), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4160), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4468), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4457), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4453), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4433), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4086), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4437), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4433), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4429), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4425), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2757), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4284), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2703), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2701), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [40968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4280), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2555), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2783), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2781), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4344), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4276), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2689), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4320), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2535), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4185), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [41530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2717), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4324), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41716] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4461), 1, + anon_sym_LT, + ACTIONS(4652), 1, + anon_sym_LBRACK, + STATE(2184), 1, + sym_template_argument_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [41790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4762), 41, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [41852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4364), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4586), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4348), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3746), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3742), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3738), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2709), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2697), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4092), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2539), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42474] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3913), 1, + anon_sym_LT, + STATE(2980), 1, + sym_template_argument_list, + ACTIONS(3887), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4328), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2693), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2769), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4332), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42794] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4766), 1, + anon_sym_STAR, + ACTIONS(4768), 1, + anon_sym_AMP_AMP, + ACTIONS(4770), 1, + anon_sym_AMP, + STATE(4350), 1, + sym_parameter_list, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5180), 1, + sym__declarator, + STATE(5397), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4700), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3217), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3250), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [42904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4360), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4274), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4272), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2673), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4336), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2845), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4260), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2753), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4368), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4364), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4360), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4356), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4352), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4352), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4348), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4346), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4344), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4340), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2827), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2825), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2829), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + STATE(2814), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4622), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4356), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4252), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4340), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44336] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4662), 1, + anon_sym_LT, + STATE(2492), 1, + sym_template_argument_list, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2761), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2839), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2837), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4468), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2681), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4252), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4352), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4352), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4250), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4248), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4532), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4530), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4308), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [45026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4772), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4304), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [45150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4776), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45211] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2634), 1, + sym_enumerator_list, + ACTIONS(4197), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4195), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4693), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45335] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3787), 1, + anon_sym_COLON, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4780), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4115), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(4492), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + ACTIONS(3508), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3516), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45599] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4784), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4792), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4812), 1, + anon_sym_EQ, + ACTIONS(4814), 1, + anon_sym_QMARK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4818), 1, + anon_sym_or, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4786), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [45708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4832), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45769] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3209), 1, + sym_field_declaration_list, + STATE(5724), 1, + sym_virtual_specifier, + STATE(6358), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3972), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [45842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4838), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4842), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45964] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4723), 1, + anon_sym_LT, + ACTIONS(4846), 1, + anon_sym_COMMA, + ACTIONS(4848), 1, + anon_sym_RBRACK, + ACTIONS(4851), 1, + anon_sym_EQ, + STATE(3323), 1, + sym_template_argument_list, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(4853), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [46043] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4857), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4855), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [46114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + sym_auto, + ACTIONS(4298), 1, + anon_sym_decltype, + STATE(2652), 1, + sym_decltype_auto, + ACTIONS(4225), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4223), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [46181] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3188), 1, + sym_field_declaration_list, + STATE(5732), 1, + sym_virtual_specifier, + STATE(6348), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3986), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [46254] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4859), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [46327] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4865), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4863), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [46408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4867), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4201), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [46532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4871), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4875), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4879), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46715] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4792), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4818), 1, + anon_sym_or, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4885), 1, + anon_sym_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [46820] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4792), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4818), 1, + anon_sym_or, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4889), 1, + anon_sym_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [46925] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47000] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3778), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [47063] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4893), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4891), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [47134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4119), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4145), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2327), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4183), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4899), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4897), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4895), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4730), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4907), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + ACTIONS(4905), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4903), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4748), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [47752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 1, + anon_sym_LBRACK, + STATE(2663), 1, + sym_new_declarator, + ACTIONS(4656), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4654), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [47817] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3200), 1, + sym_field_declaration_list, + STATE(5701), 1, + sym_virtual_specifier, + STATE(6371), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3982), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [47890] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3197), 1, + sym_field_declaration_list, + STATE(5696), 1, + sym_virtual_specifier, + STATE(6377), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4000), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [47963] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3148), 1, + sym_field_declaration_list, + STATE(5691), 1, + sym_virtual_specifier, + STATE(6383), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(3990), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [48036] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3807), 1, + anon_sym_COLON, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4151), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4912), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4910), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4176), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4158), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4914), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4918), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4922), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48540] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4792), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4818), 1, + anon_sym_or, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4928), 1, + anon_sym_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [48645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4930), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4934), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48767] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2519), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4938), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4941), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3849), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3847), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48834] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3213), 1, + sym_field_declaration_list, + STATE(5728), 1, + sym_virtual_specifier, + STATE(6355), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4007), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [48907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4944), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48968] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3797), 1, + anon_sym_COLON, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49043] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(4723), 1, + anon_sym_LT, + ACTIONS(4948), 1, + anon_sym_COLON, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4950), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49179] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3187), 1, + sym_field_declaration_list, + STATE(5519), 1, + sym_virtual_specifier, + STATE(6404), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4019), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [49252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4954), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49313] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4958), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [49386] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3185), 1, + sym_field_declaration_list, + STATE(5650), 1, + sym_virtual_specifier, + STATE(6407), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4015), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [49459] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3183), 1, + sym_field_declaration_list, + STATE(5646), 1, + sym_virtual_specifier, + STATE(6409), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4011), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [49532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4141), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4629), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4105), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4101), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [49898] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [49977] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1961), 1, + sym__enum_base_clause, + STATE(2097), 1, + sym_enumerator_list, + ACTIONS(4162), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4160), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [50042] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50119] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50200] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50285] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [50372] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [50463] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4968), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4966), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50536] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [50629] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4962), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [50726] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [50827] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50900] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50975] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3730), 1, + anon_sym_COLON, + ACTIONS(4723), 1, + anon_sym_LT, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4191), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4172), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4970), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4650), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4671), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51477] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4784), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4792), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4818), 1, + anon_sym_or, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4976), 1, + anon_sym_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4974), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [51584] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(3106), 1, + anon_sym_STAR, + ACTIONS(3108), 1, + anon_sym_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4700), 1, + anon_sym_RPAREN, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + STATE(4350), 1, + sym_parameter_list, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5321), 1, + sym__declarator, + STATE(5397), 1, + sym__abstract_declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3249), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3262), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [51693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2547), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4732), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51817] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2519), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3861), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3859), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4984), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4988), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4992), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52067] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4792), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4794), 1, + anon_sym_AMP_AMP, + ACTIONS(4796), 1, + anon_sym_PIPE, + ACTIONS(4800), 1, + anon_sym_AMP, + ACTIONS(4806), 1, + anon_sym_GT_EQ, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4816), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4818), 1, + anon_sym_or, + ACTIONS(4820), 1, + anon_sym_and, + ACTIONS(4822), 1, + anon_sym_bitor, + ACTIONS(4824), 1, + anon_sym_bitand, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4998), 1, + anon_sym_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4798), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4808), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4802), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4804), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [52172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5000), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52233] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4185), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [52298] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + sym_literal_suffix, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3518), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3510), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52367] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2569), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5010), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5006), 17, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5008), 26, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [52432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2335), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5013), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52737] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2619), 1, + sym_enumerator_list, + ACTIONS(4229), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4227), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [52800] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1947), 1, + sym__enum_base_clause, + STATE(2004), 1, + sym_enumerator_list, + ACTIONS(4168), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4166), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [52865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4984), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [52987] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4723), 1, + anon_sym_LT, + ACTIONS(4848), 1, + anon_sym_RBRACK, + ACTIONS(4851), 1, + anon_sym_EQ, + ACTIONS(5017), 1, + anon_sym_COMMA, + STATE(3323), 1, + sym_template_argument_list, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(4853), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [53066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4650), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53126] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4976), 1, + anon_sym_EQ, + ACTIONS(5020), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5048), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4974), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53230] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4723), 1, + anon_sym_LT, + ACTIONS(4851), 1, + anon_sym_EQ, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(4853), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [53302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 1, + sym_literal_suffix, + ACTIONS(3518), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4732), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [53426] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3684), 1, + anon_sym_LBRACE, + ACTIONS(3969), 1, + anon_sym_LT, + STATE(2828), 1, + sym_template_argument_list, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [53494] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(4641), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53560] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(4641), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4201), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [53686] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(3954), 1, + anon_sym_LT, + STATE(3593), 1, + sym_template_argument_list, + ACTIONS(3957), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(3959), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [53758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5062), 1, + anon_sym_LT, + STATE(2930), 1, + sym_template_argument_list, + ACTIONS(3534), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4041), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [53824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4300), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [53884] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4857), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4855), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4312), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4316), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4383), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4387), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4391), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4395), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4399), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4403), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4407), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4411), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4415), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4419), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4518), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4542), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4546), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4550), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4554), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [54972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4558), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4566), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4578), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4582), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4586), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55272] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4861), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4859), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55342] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4865), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4863), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4590), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4594), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4244), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4606), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4480), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4441), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4464), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55840] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4889), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5048), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4472), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4494), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4534), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56122] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4893), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4891), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [56190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4488), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4574), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4610), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4614), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4372), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4379), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4498), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4476), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4484), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4336), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4332), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4328), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4324), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [56970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4320), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57030] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2723), 1, + sym_enumerator_list, + ACTIONS(4229), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4227), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [57092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4276), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4280), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4284), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4445), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4449), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5062), 1, + anon_sym_LT, + STATE(2930), 1, + sym_template_argument_list, + ACTIONS(3684), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3679), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [57458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4288), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4598), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4602), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4514), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4506), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4502), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4201), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4570), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [57998] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + STATE(3030), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4522), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [58064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + STATE(3032), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4562), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [58130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4256), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58190] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2761), 1, + sym_enumerator_list, + ACTIONS(4197), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4195), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [58252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4772), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58312] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + STATE(3053), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4622), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [58378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + STATE(3037), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4618), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [58444] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4812), 1, + anon_sym_EQ, + ACTIONS(5020), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5048), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + ACTIONS(5064), 1, + anon_sym_QMARK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4786), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(4728), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + [58610] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(4641), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3887), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58678] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4968), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4966), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + STATE(2852), 1, + sym_decltype_auto, + ACTIONS(4225), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4223), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [58876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5000), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59056] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5048), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4732), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4730), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 1, + sym_auto, + ACTIONS(4639), 1, + anon_sym_decltype, + STATE(2845), 1, + sym_decltype_auto, + ACTIONS(4225), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4223), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59466] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4998), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5048), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59568] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4928), 1, + anon_sym_EQ, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5048), 1, + anon_sym_or, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59730] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 1, + anon_sym_LT, + STATE(2729), 1, + sym_template_argument_list, + ACTIONS(4905), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4903), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59794] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2887), 1, + sym_enumerator_list, + ACTIONS(4229), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4227), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4201), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [59918] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(5075), 1, + anon_sym_LT, + STATE(2828), 1, + sym_template_argument_list, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [59986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4629), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60046] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4960), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4958), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60116] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60192] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2914), 1, + sym_enumerator_list, + ACTIONS(4197), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4195), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60254] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60328] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60406] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60488] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60572] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60660] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4962), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60750] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4964), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60844] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5028), 1, + anon_sym_AMP_AMP, + ACTIONS(5030), 1, + anon_sym_PIPE, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(5040), 1, + anon_sym_GT_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5046), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5050), 1, + anon_sym_and, + ACTIONS(5052), 1, + anon_sym_bitor, + ACTIONS(5054), 1, + anon_sym_bitand, + STATE(2849), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5022), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5032), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5042), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5036), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5038), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60942] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4964), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61012] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5056), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2547), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4445), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4415), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4419), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4650), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [61438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4518), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4992), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4546), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4550), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4554), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4558), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4510), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4566), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [61969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4578), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4582), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4586), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4590), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4594), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4244), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4606), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + STATE(3133), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4522), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4665), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4970), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5013), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4172), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + STATE(3131), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4562), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4191), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3691), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4480), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4488), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4441), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4464), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4472), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4407), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4403), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4399), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4395), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4391), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4387), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4383), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4542), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4316), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4312), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [63987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4300), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4494), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4534), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4101), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4570), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4105), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4574), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4610), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4614), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4372), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4379), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4498), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4476), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4484), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [64813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + STATE(3127), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4618), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [64941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4256), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4954), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65059] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3540), 1, + anon_sym_EQ, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4641), 1, + anon_sym_LPAREN2, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(3544), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [65128] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5082), 1, + anon_sym_RPAREN, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [65281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4838), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65340] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_LBRACE, + ACTIONS(4723), 1, + anon_sym_LT, + ACTIONS(5164), 1, + anon_sym_EQ, + STATE(3323), 1, + sym_template_argument_list, + ACTIONS(5166), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [65411] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5170), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [65564] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4641), 1, + anon_sym_LPAREN2, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [65629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4764), 26, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [65688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4092), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [65749] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4641), 1, + anon_sym_LPAREN2, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [65814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [65873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4201), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [65932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4930), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65991] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5172), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66144] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66297] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5176), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66450] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5178), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66603] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5180), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66756] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66909] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67062] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5186), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67215] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5188), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67368] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5084), 1, + anon_sym_DASH, + ACTIONS(5086), 1, + anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_STAR, + ACTIONS(5090), 1, + anon_sym_SLASH, + ACTIONS(5092), 1, + anon_sym_PERCENT, + ACTIONS(5094), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5096), 1, + anon_sym_AMP_AMP, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5100), 1, + anon_sym_CARET, + ACTIONS(5102), 1, + anon_sym_AMP, + ACTIONS(5104), 1, + anon_sym_EQ_EQ, + ACTIONS(5106), 1, + anon_sym_BANG_EQ, + ACTIONS(5108), 1, + anon_sym_GT, + ACTIONS(5110), 1, + anon_sym_GT_EQ, + ACTIONS(5112), 1, + anon_sym_LT_EQ, + ACTIONS(5114), 1, + anon_sym_LT, + ACTIONS(5116), 1, + anon_sym_LT_LT, + ACTIONS(5118), 1, + anon_sym_GT_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5124), 1, + anon_sym_STAR_EQ, + ACTIONS(5126), 1, + anon_sym_SLASH_EQ, + ACTIONS(5128), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5130), 1, + anon_sym_PLUS_EQ, + ACTIONS(5132), 1, + anon_sym_DASH_EQ, + ACTIONS(5134), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5136), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5138), 1, + anon_sym_AMP_EQ, + ACTIONS(5140), 1, + anon_sym_CARET_EQ, + ACTIONS(5142), 1, + anon_sym_PIPE_EQ, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5146), 1, + anon_sym_or, + ACTIONS(5148), 1, + anon_sym_and, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5156), 1, + anon_sym_not_eq, + ACTIONS(5160), 1, + anon_sym_DOT_STAR, + ACTIONS(5162), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5168), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + anon_sym_RPAREN, + STATE(1523), 1, + sym__binary_fold_operator, + STATE(2849), 1, + sym_argument_list, + STATE(7216), 1, + sym__fold_operator, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5000), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [67580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4300), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4312), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3738), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [67757] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN2, + STATE(3121), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4622), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3742), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [67881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3746), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [67940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4502), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4411), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4441), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4934), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4336), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4332), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4328), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3752), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [68412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4324), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4320), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3760), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [68589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4276), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4280), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4506), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4284), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [68825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4141), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4918), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4914), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4449), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [69061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4158), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4176), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69179] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP_AMP, + ACTIONS(4912), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4910), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4151), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3764), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3795), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4871), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3771), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4069), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69594] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4086), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4086), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3778), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [69777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2327), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4383), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2335), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4629), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4145), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4119), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4387), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4288), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [70249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4598), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [70308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4391), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4183), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4514), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4730), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4395), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4879), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4875), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4602), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4399), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4403), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4984), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4407), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4602), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4411), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4415), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4419), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4518), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4542), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4546), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4550), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4554), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4514), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4510), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4506), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4502), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4984), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4842), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4950), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4558), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4598), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4566), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4288), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4578), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4582), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4201), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4586), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4832), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4256), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4650), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4115), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4590), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4594), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4780), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4244), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4449), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4867), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4606), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4693), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4480), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4488), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4671), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4464), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4316), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_AMP_AMP, + ACTIONS(5194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4897), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4895), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4472), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4494), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4534), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4294), 1, + anon_sym_LBRACK, + STATE(2953), 1, + sym_new_declarator, + ACTIONS(4656), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4654), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [74094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4570), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4748), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4776), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4988), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4445), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4484), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4944), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4476), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4498), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4284), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4320), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4324), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4379), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4372), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4280), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4328), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4332), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4336), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4614), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5000), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4610), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4574), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4276), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4922), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75510] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_or, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4889), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [75610] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_or, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5234), 1, + anon_sym_DOT_DOT_DOT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4976), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4974), 15, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [75712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [75788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4635), 1, + anon_sym_LBRACK, + STATE(3059), 1, + sym_new_declarator, + ACTIONS(4656), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4654), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3766), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [75908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + sym_literal_suffix, + ACTIONS(3510), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3518), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [75968] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4958), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [76038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3909), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [76096] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4857), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4855), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [76164] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4968), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4966), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [76234] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_or, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4928), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [76334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5236), 44, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [76392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3925), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [76450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3738), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3736), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4912), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3742), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3740), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3744), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76684] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_or, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4885), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [76784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3752), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3750), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3760), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3758), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3762), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3795), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3793), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77016] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4859), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [77086] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_or, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5234), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5242), 1, + anon_sym_QMARK, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4812), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4786), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [77190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2329), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2337), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77306] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4865), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4863), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [77384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4772), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [77442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3897), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [77500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5246), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5244), 44, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [77558] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4092), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4094), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4086), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [77676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4088), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 1, + anon_sym_LT, + STATE(3008), 1, + sym_template_argument_list, + ACTIONS(4905), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4903), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [77796] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4893), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4891), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [77864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 1, + anon_sym_AMP_AMP, + ACTIONS(5251), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4897), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77926] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [78012] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [78090] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [78170] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_GT2, + [78252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4088), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [78312] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [78400] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4964), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78492] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78588] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [78658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5253), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4732), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4730), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [78718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4088), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [78778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5255), 44, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [78836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4071), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [78894] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5202), 1, + anon_sym_AMP_AMP, + ACTIONS(5204), 1, + anon_sym_PIPE, + ACTIONS(5208), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5218), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5220), 1, + anon_sym_or, + ACTIONS(5222), 1, + anon_sym_and, + ACTIONS(5224), 1, + anon_sym_bitor, + ACTIONS(5226), 1, + anon_sym_bitand, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4998), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5206), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5214), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5210), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5212), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78994] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [79066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3921), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [79124] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5196), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5228), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 14, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [79198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4728), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [79256] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3778), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4151), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4119), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4992), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4665), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4191), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4172), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4970), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 1, + sym_literal_suffix, + ACTIONS(3518), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4871), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2547), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [79888] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(4641), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79951] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4857), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4855), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4984), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80073] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4859), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80140] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4865), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4863), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80215] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4889), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80312] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4893), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4891), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4671), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80662] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3003), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5275), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5278), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3847), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3849), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [80725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4650), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80782] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4812), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4786), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5283), 1, + anon_sym_AMP_AMP, + ACTIONS(4897), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4895), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5013), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4101), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4141), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4776), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4944), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4922), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(3959), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3518), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [81518] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5285), 1, + sym_literal_suffix, + STATE(3074), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2441), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2455), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81583] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4998), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [81680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4158), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5283), 1, + anon_sym_AMP_AMP, + ACTIONS(4912), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4910), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4183), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4693), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81910] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4976), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5078), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4974), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4867), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4930), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4726), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2335), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2327), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4988), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4780), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4115), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4832), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4950), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3691), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4842), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4875), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4879), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4730), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4145), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [82921] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82988] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4964), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4176), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83140] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4964), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83233] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83322] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4914), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83464] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83545] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4962), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83624] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4962), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83699] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83770] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4984), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4918), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4934), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84014] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + ACTIONS(4905), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4903), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [84075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4838), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84132] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4968), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4966), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [84201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4851), 1, + anon_sym_EQ, + ACTIONS(4853), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [84262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4772), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84319] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4857), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4855), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [84386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84443] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4859), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [84512] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4865), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4863), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [84589] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4889), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84690] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4893), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4891), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [84757] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4998), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84858] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4784), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4976), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4974), 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [85018] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [85089] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [85158] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85255] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4964), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85348] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [85437] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3003), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2441), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2455), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(3859), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3861), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [85500] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [85587] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [85670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4954), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [85727] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4958), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85794] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4928), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4748), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [85948] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [86029] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(5044), 1, + anon_sym_LBRACK, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(4962), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86098] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_EQ, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5150), 1, + anon_sym_bitor, + ACTIONS(5152), 1, + anon_sym_xor, + ACTIONS(5154), 1, + anon_sym_bitand, + ACTIONS(5265), 1, + anon_sym_PIPE, + ACTIONS(5267), 1, + anon_sym_CARET, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5273), 1, + anon_sym_GT_EQ, + STATE(2849), 1, + sym_argument_list, + ACTIONS(5058), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5146), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5148), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5158), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5259), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5263), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5156), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5261), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5271), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86195] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [86272] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [86345] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4964), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4962), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [86420] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4958), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [86489] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4928), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [86590] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [86691] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4784), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4812), 1, + anon_sym_EQ, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5300), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_AMP_AMP, + ACTIONS(5306), 1, + anon_sym_PIPE, + ACTIONS(5310), 1, + anon_sym_AMP, + ACTIONS(5316), 1, + anon_sym_GT_EQ, + ACTIONS(5318), 1, + anon_sym_or, + ACTIONS(5320), 1, + anon_sym_and, + ACTIONS(5322), 1, + anon_sym_bitor, + ACTIONS(5324), 1, + anon_sym_bitand, + ACTIONS(5326), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4826), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5294), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5308), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5312), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5314), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4786), 14, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [86796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5000), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [86853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4629), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [86910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4105), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [86967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4176), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4748), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [87137] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_EQ, + ACTIONS(5166), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3510), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [87197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3510), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4867), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87309] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5328), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(4897), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4895), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4922), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4944), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4776), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4141), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2547), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2327), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4183), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4970), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4172), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4191), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88097] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + STATE(3173), 1, + sym_decltype_auto, + ACTIONS(4225), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4223), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [88159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4101), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4105), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88271] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, + anon_sym_LT, + STATE(3224), 1, + sym_template_argument_list, + ACTIONS(3679), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3684), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [88333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4954), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4838), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4934), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4918), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4158), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_AMP_AMP, + ACTIONS(4912), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4910), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4151), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4145), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4119), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4879), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4875), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4842), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4950), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4832), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4115), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4780), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4914), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4988), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89343] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5336), 1, + anon_sym_LT, + STATE(3224), 1, + sym_template_argument_list, + ACTIONS(4041), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3534), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [89405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3795), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3764), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3760), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3752), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3746), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3742), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3738), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2335), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4671), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4693), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4554), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4614), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4488), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90130] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1774), 1, + sym_string_literal, + ACTIONS(5342), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5340), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5338), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [90189] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1775), 1, + sym_string_literal, + ACTIONS(5342), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5340), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5338), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [90248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4256), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90358] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_const, + ACTIONS(3775), 1, + anon_sym_AMP, + ACTIONS(3768), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3773), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3771), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3778), 17, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [90421] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1776), 1, + sym_string_literal, + ACTIONS(5342), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5340), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5338), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [90480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4300), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4312), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4316), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4383), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4387), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4391), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4395), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4399), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4403), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4407), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4411), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4201), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4502), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4415), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4506), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4510), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4514), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4602), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4419), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4598), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4288), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4518), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4449), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4445), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4284), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4280), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4276), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4320), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4324), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4328), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4332), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4336), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4542), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4484), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4476), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4498), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4379), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4372), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92570] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1778), 1, + sym_string_literal, + ACTIONS(5342), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5340), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5338), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [92629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4610), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4574), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4570), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4534), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4494), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4472), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4464), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4441), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4546), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4480), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4606), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4244), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4594), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4590), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4586), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4582), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4578), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4566), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4558), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4550), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [93729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4086), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [93785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5344), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5346), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [93839] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4766), 1, + anon_sym_STAR, + ACTIONS(4768), 1, + anon_sym_AMP_AMP, + ACTIONS(4770), 1, + anon_sym_AMP, + STATE(4350), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(5337), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5348), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4086), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [93987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(2601), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4092), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3921), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94151] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5350), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + ACTIONS(3679), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3684), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [94211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5353), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5355), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3771), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3925), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5357), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + ACTIONS(4041), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3534), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [94433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5359), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5361), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4069), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4086), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5363), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5365), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3909), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94705] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4702), 1, + anon_sym_STAR, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_AMP, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(5348), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5348), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3897), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5367), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5369), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3738), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [94961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3742), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3746), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3752), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3760), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2563), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(2565), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3764), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3795), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [95339] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3534), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4041), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95398] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4962), 1, + sym__scope_resolution, + STATE(5306), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3260), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3614), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95491] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5360), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3258), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3629), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95584] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5324), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3270), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3610), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3684), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3679), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95736] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5360), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3629), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95829] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5324), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3610), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95922] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3644), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96015] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5115), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3622), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96108] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5321), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3249), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3624), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96201] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5357), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3248), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3625), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96294] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5108), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3256), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3623), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96387] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5180), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3250), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3638), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96480] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5112), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3619), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96573] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5108), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3623), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96666] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5363), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3635), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96759] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5102), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3257), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3609), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96852] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4962), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3595), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96945] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3261), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5409), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3929), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [97002] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(3106), 1, + anon_sym_STAR, + ACTIONS(3108), 1, + anon_sym_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5348), 1, + anon_sym_RPAREN, + STATE(4350), 1, + sym_parameter_list, + STATE(4992), 1, + sym__scope_resolution, + STATE(5324), 1, + sym__declarator, + STATE(5337), 1, + sym__abstract_declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97095] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5157), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3268), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3617), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97188] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4962), 1, + sym__scope_resolution, + STATE(5302), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3602), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97281] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4962), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3264), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3595), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97374] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3639), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97467] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5088), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3608), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97560] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5088), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3608), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97653] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3266), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3644), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97746] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4992), 1, + sym__scope_resolution, + STATE(5313), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3603), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [97839] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + anon_sym_LBRACK, + STATE(2852), 1, + sym_decltype_auto, + STATE(3381), 1, + sym_new_declarator, + STATE(3470), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4051), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [97907] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4185), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [97963] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5357), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + ACTIONS(3508), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3516), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [98021] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5418), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [98093] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + anon_sym_LBRACK, + STATE(2852), 1, + sym_decltype_auto, + STATE(3373), 1, + sym_new_declarator, + STATE(3458), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4045), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [98161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5424), 1, + anon_sym_COLON, + STATE(2662), 1, + sym__enum_base_clause, + STATE(2812), 1, + sym_enumerator_list, + ACTIONS(4168), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4166), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [98219] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + anon_sym_LBRACK, + STATE(2852), 1, + sym_decltype_auto, + STATE(3384), 1, + sym_new_declarator, + STATE(3429), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4062), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [98287] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + anon_sym_LBRACK, + STATE(2852), 1, + sym_decltype_auto, + STATE(3382), 1, + sym_new_declarator, + STATE(3519), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4023), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [98355] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5426), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3360), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5428), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [98427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5424), 1, + anon_sym_COLON, + STATE(2643), 1, + sym__enum_base_clause, + STATE(2763), 1, + sym_enumerator_list, + ACTIONS(4162), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4160), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [98485] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5430), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(3679), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3684), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [98542] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4088), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3744), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4071), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98697] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3482), 1, + sym_field_declaration_list, + STATE(5789), 1, + sym_virtual_specifier, + STATE(6285), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4000), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4002), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98760] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3495), 1, + sym_field_declaration_list, + STATE(5593), 1, + sym_virtual_specifier, + STATE(6580), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3972), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3974), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3742), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3740), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98874] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3472), 1, + sym_field_declaration_list, + STATE(5769), 1, + sym_virtual_specifier, + STATE(6274), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3990), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3992), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98937] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5439), 1, + sym_identifier, + ACTIONS(5444), 1, + sym_primitive_type, + STATE(3261), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5442), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3948), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5446), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(4041), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3534), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [99053] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3430), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4011), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4013), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99116] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3512), 1, + sym_field_declaration_list, + STATE(5621), 1, + sym_virtual_specifier, + STATE(6550), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3986), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3988), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3684), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3679), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99236] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3428), 1, + sym_field_declaration_list, + STATE(5765), 1, + sym_virtual_specifier, + STATE(6323), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3982), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3984), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99299] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5414), 1, + anon_sym_LBRACK, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(2852), 1, + sym_decltype_auto, + STATE(3491), 1, + sym_new_declarator, + STATE(3519), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4023), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [99366] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3534), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4041), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4088), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99474] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5414), 1, + anon_sym_LBRACK, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(2852), 1, + sym_decltype_auto, + STATE(3434), 1, + sym_new_declarator, + STATE(3429), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4062), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [99541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3766), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99592] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3439), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4021), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4088), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99708] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3433), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4017), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99771] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5414), 1, + anon_sym_LBRACK, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(2852), 1, + sym_decltype_auto, + STATE(3525), 1, + sym_new_declarator, + STATE(3470), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4051), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [99838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3795), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3793), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [99889] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + STATE(3502), 1, + sym_field_declaration_list, + STATE(5618), 1, + sym_virtual_specifier, + STATE(6564), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4007), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4009), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3738), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3736), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3762), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3760), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3758), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3752), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3750), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100156] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(5414), 1, + anon_sym_LBRACK, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(2852), 1, + sym_decltype_auto, + STATE(3464), 1, + sym_new_declarator, + STATE(3458), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4045), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [100223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4092), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4094), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4185), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4187), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100332] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5454), 1, + anon_sym_RPAREN, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6071), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [100426] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + ACTIONS(5462), 1, + anon_sym_LBRACK, + STATE(3173), 1, + sym_decltype_auto, + STATE(3566), 1, + sym_new_declarator, + STATE(3833), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4053), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4051), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [100492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 17, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5466), 25, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [100542] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + ACTIONS(5462), 1, + anon_sym_LBRACK, + STATE(3173), 1, + sym_decltype_auto, + STATE(3582), 1, + sym_new_declarator, + STATE(3983), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4047), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4045), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [100608] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + ACTIONS(5462), 1, + anon_sym_LBRACK, + STATE(3173), 1, + sym_decltype_auto, + STATE(3540), 1, + sym_new_declarator, + STATE(3861), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4027), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4023), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [100674] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + ACTIONS(5462), 1, + anon_sym_LBRACK, + STATE(3173), 1, + sym_decltype_auto, + STATE(3546), 1, + sym_new_declarator, + STATE(3852), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4064), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4062), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [100740] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3516), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3508), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100796] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(5468), 1, + anon_sym_RPAREN, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(5837), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [100890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4141), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [100939] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 1, + anon_sym___attribute__, + ACTIONS(5480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5483), 1, + anon_sym___declspec, + ACTIONS(5489), 1, + anon_sym_virtual, + ACTIONS(5474), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5470), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5486), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3322), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5472), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [101002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3778), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [101053] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5492), 1, + anon_sym_enum, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5500), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4118), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3405), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4101), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4191), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101242] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6922), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101333] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4158), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101473] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6662), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(2335), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101613] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5502), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3322), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5504), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [101676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4176), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5506), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [101774] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(7049), 1, + sym_type_descriptor, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4105), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [101914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5510), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [101963] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6819), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102054] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5516), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(4073), 1, + sym__type_specifier, + STATE(4175), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5067), 1, + sym_type_descriptor, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3390), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102145] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2871), 1, + anon_sym_enum, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(2879), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4191), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3404), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5338), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102285] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(7155), 1, + sym_type_descriptor, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4172), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [102425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4151), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [102474] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(5518), 1, + anon_sym_enum, + ACTIONS(5520), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4198), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3385), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [102614] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(7224), 1, + sym_type_descriptor, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102705] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(2327), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [102845] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_COLON, + STATE(3190), 1, + sym_enumerator_list, + STATE(3435), 1, + sym__enum_base_clause, + ACTIONS(4162), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4160), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [102900] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6942), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4119), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4183), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3071), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [103187] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5526), 1, + anon_sym_enum, + ACTIONS(5528), 1, + anon_sym_class, + ACTIONS(5530), 1, + anon_sym_struct, + ACTIONS(5532), 1, + anon_sym_union, + ACTIONS(5534), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(4175), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4222), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4145), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103327] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(7117), 1, + sym_type_descriptor, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103418] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6748), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103509] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5536), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3322), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5538), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [103572] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5547), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5543), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(5545), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(5550), 12, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + ACTIONS(5540), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_template, + [103627] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5522), 1, + anon_sym_COLON, + STATE(3180), 1, + sym_enumerator_list, + STATE(3427), 1, + sym__enum_base_clause, + ACTIONS(4168), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4166), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [103682] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5414), 1, + anon_sym_LBRACK, + STATE(3424), 1, + sym_new_declarator, + ACTIONS(4656), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4654), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [103735] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4211), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6313), 1, + sym_type_descriptor, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3426), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3075), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [103875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4137), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4115), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103973] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5552), 1, + sym_identifier, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + sym_primitive_type, + ACTIONS(5560), 1, + anon_sym_enum, + ACTIONS(5562), 1, + anon_sym_class, + ACTIONS(5564), 1, + anon_sym_struct, + ACTIONS(5566), 1, + anon_sym_union, + ACTIONS(5568), 1, + sym_auto, + ACTIONS(5570), 1, + anon_sym_decltype, + ACTIONS(5572), 1, + anon_sym_typename, + STATE(4139), 1, + sym__type_specifier, + STATE(4279), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4436), 1, + sym_template_type, + STATE(4486), 1, + sym_decltype_auto, + STATE(4489), 1, + sym_qualified_type_identifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3420), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4488), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104064] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5574), 1, + anon_sym_enum, + ACTIONS(5576), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4079), 1, + sym__type_specifier, + STATE(5067), 1, + sym_type_descriptor, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3400), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104155] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(5578), 1, + anon_sym_enum, + ACTIONS(5580), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4276), 1, + sym__type_specifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3419), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104246] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2425), 1, + anon_sym_enum, + ACTIONS(2427), 1, + anon_sym_class, + ACTIONS(2429), 1, + anon_sym_struct, + ACTIONS(2431), 1, + anon_sym_union, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(2449), 1, + anon_sym_typename, + ACTIONS(5582), 1, + sym_identifier, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(5586), 1, + sym_primitive_type, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(4205), 1, + sym__type_specifier, + STATE(5154), 1, + sym_type_descriptor, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + sym_literal_suffix, + ACTIONS(3518), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3510), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [104387] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(3469), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4618), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [104441] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4942), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104529] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4945), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3374), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104617] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4223), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4225), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [104671] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4907), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104759] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4914), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104847] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4905), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3378), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104935] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4912), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3377), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(3460), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4522), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [105077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(3463), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4622), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [105131] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4926), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(3514), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4562), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [105273] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(5518), 1, + anon_sym_enum, + ACTIONS(5520), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4196), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105361] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5526), 1, + anon_sym_enum, + ACTIONS(5528), 1, + anon_sym_class, + ACTIONS(5530), 1, + anon_sym_struct, + ACTIONS(5532), 1, + anon_sym_union, + ACTIONS(5534), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(4175), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4226), 1, + sym__type_specifier, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105449] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3387), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5598), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3929), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105501] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2425), 1, + anon_sym_enum, + ACTIONS(2427), 1, + anon_sym_class, + ACTIONS(2429), 1, + anon_sym_struct, + ACTIONS(2431), 1, + anon_sym_union, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(2449), 1, + anon_sym_typename, + ACTIONS(5582), 1, + sym_identifier, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(5586), 1, + sym_primitive_type, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(4203), 1, + sym__type_specifier, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4185), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [105641] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5516), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(4065), 1, + sym__type_specifier, + STATE(4175), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105729] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4909), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105817] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5601), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [105887] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4915), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3391), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105975] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4932), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3383), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106063] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4916), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106151] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4890), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3395), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106239] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5603), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [106309] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4702), 1, + anon_sym_STAR, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(5605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5609), 1, + anon_sym_AMP_AMP, + ACTIONS(5611), 1, + anon_sym_AMP, + ACTIONS(5613), 1, + anon_sym_EQ, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5254), 1, + sym__declarator, + STATE(5513), 1, + sym__abstract_declarator, + STATE(5973), 1, + sym_variadic_declarator, + STATE(5974), 1, + sym_variadic_reference_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [106401] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4766), 1, + anon_sym_STAR, + ACTIONS(5605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5615), 1, + anon_sym_AMP_AMP, + ACTIONS(5617), 1, + anon_sym_AMP, + ACTIONS(5619), 1, + anon_sym_EQ, + STATE(4350), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5262), 1, + sym__declarator, + STATE(5517), 1, + sym__abstract_declarator, + STATE(5973), 1, + sym_variadic_declarator, + STATE(5974), 1, + sym_variadic_reference_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [106493] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5574), 1, + anon_sym_enum, + ACTIONS(5576), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4106), 1, + sym__type_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4988), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [106629] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5621), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [106699] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5623), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [106769] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2871), 1, + anon_sym_enum, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(2879), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4209), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106857] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5492), 1, + anon_sym_enum, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5500), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(4121), 1, + sym__type_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106945] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4893), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4842), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [107081] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + ACTIONS(5627), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(5625), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(3534), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4041), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [107139] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4920), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3406), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4934), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [107275] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5632), 1, + anon_sym___attribute__, + ACTIONS(5635), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5638), 1, + anon_sym___declspec, + ACTIONS(5644), 1, + anon_sym_virtual, + ACTIONS(5629), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5641), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3411), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5470), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [107337] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5647), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [107407] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5649), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [107477] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4901), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3416), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107565] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4902), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3421), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107653] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4895), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107741] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, + anon_sym___attribute__, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4221), 1, + anon_sym_virtual, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(5651), 1, + anon_sym_SEMI, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(4209), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5416), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4219), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3332), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [107811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4201), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4203), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107861] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(5578), 1, + anon_sym_enum, + ACTIONS(5580), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4266), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107949] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5552), 1, + sym_identifier, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + sym_primitive_type, + ACTIONS(5560), 1, + anon_sym_enum, + ACTIONS(5562), 1, + anon_sym_class, + ACTIONS(5564), 1, + anon_sym_struct, + ACTIONS(5566), 1, + anon_sym_union, + ACTIONS(5568), 1, + sym_auto, + ACTIONS(5570), 1, + anon_sym_decltype, + ACTIONS(5572), 1, + anon_sym_typename, + STATE(4179), 1, + sym__type_specifier, + STATE(4279), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4436), 1, + sym_template_type, + STATE(4486), 1, + sym_decltype_auto, + STATE(4489), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4488), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [108037] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(4929), 1, + sym__type_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [108125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(2547), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4726), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4772), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5446), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(3508), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3516), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [108323] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(4186), 1, + sym__type_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [108411] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3192), 1, + sym_enumerator_list, + ACTIONS(4197), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4195), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [108460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4474), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4914), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4322), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4326), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4086), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + ACTIONS(4088), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4330), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108742] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(3514), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4562), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108795] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3206), 1, + sym_enumerator_list, + ACTIONS(4229), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4227), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [108844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4409), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4405), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4334), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4338), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4401), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4954), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [109126] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4958), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [109185] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2643), 1, + sym__enum_base_clause, + STATE(2763), 1, + sym_enumerator_list, + ACTIONS(4162), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4160), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [109236] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4857), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4855), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [109293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4397), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4393), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4389), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109434] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2662), 1, + sym__enum_base_clause, + STATE(2812), 1, + sym_enumerator_list, + ACTIONS(4168), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4166), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [109485] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4893), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4891), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [109542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4385), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109589] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4017), 1, + sym_field_declaration_list, + STATE(5539), 1, + sym_virtual_specifier, + STATE(6480), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3986), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(3988), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4417), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109695] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4012), 1, + sym_field_declaration_list, + STATE(5535), 1, + sym_virtual_specifier, + STATE(6483), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4007), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4009), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109754] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4005), 1, + sym_field_declaration_list, + STATE(5531), 1, + sym_virtual_specifier, + STATE(6486), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3972), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(3974), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4604), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5657), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5659), 1, + anon_sym_AMP_AMP, + ACTIONS(4897), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4895), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [109911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4421), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [109958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4838), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4381), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4780), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110099] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4058), 1, + sym_field_declaration_list, + STATE(5784), 1, + sym_virtual_specifier, + STATE(6498), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3982), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(3984), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(3523), 1, + sym__enum_base_clause, + ACTIONS(4160), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4162), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [110213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4918), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(3469), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4618), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4516), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4600), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 1, + anon_sym_AMP_AMP, + ACTIONS(4912), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4910), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4374), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4879), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4875), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110597] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_COLON, + STATE(3480), 1, + sym__enum_base_clause, + STATE(3484), 1, + sym_enumerator_list, + ACTIONS(4166), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4168), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [110652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4616), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4608), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3911), 36, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [110793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4244), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4246), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4612), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4574), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4576), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4280), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4282), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4203), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + STATE(3459), 1, + sym_enumerator_list, + ACTIONS(4195), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4197), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_requires, + [111079] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4059), 1, + sym_field_declaration_list, + STATE(5654), 1, + sym_virtual_specifier, + STATE(6501), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4000), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4002), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4572), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3925), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3927), 36, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [111232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4284), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4286), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4447), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111326] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(3991), 1, + sym_field_declaration_list, + STATE(5605), 1, + sym_virtual_specifier, + STATE(6504), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3990), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(3992), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111385] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4040), 1, + sym_field_declaration_list, + STATE(5758), 1, + sym_virtual_specifier, + STATE(6522), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4021), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4867), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [111491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4596), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111538] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4020), 1, + sym_field_declaration_list, + STATE(5783), 1, + sym_virtual_specifier, + STATE(6529), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4017), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111597] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(3463), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4622), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [111650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4451), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4413), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4592), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4588), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111838] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [111897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4584), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111944] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4033), 1, + sym_field_declaration_list, + STATE(5805), 1, + sym_virtual_specifier, + STATE(6532), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4011), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4013), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4580), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112050] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4859), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [112109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4568), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4560), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4536), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4203), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112297] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 1, + sym_primitive_type, + ACTIONS(5665), 1, + sym_identifier, + STATE(3261), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5442), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3948), 22, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_try, + anon_sym_requires, + [112352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4556), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4552), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4922), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [112493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4496), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112540] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 1, + anon_sym___attribute__, + ACTIONS(5677), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5680), 1, + anon_sym___declspec, + ACTIONS(5686), 1, + anon_sym_virtual, + ACTIONS(5689), 1, + anon_sym_explicit, + ACTIONS(5669), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5671), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5667), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5683), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3510), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + [112603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4548), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4544), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4520), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4832), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [112791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4486), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4504), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4276), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4278), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112932] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5694), 1, + anon_sym___attribute__, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5698), 1, + anon_sym___declspec, + ACTIONS(5702), 1, + sym_auto, + ACTIONS(5704), 1, + anon_sym_decltype, + ACTIONS(5706), 1, + anon_sym_virtual, + STATE(3999), 1, + sym_decltype_auto, + ACTIONS(5416), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5692), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5418), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5700), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3738), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [112999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4970), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4478), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(3510), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4256), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4258), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + STATE(3475), 1, + sym_enumerator_list, + ACTIONS(4227), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4229), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_requires, + [113238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4466), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113285] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5450), 1, + anon_sym_LPAREN2, + STATE(3460), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4522), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4944), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4776), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113432] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5694), 1, + anon_sym___attribute__, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5698), 1, + anon_sym___declspec, + ACTIONS(5702), 1, + sym_auto, + ACTIONS(5704), 1, + anon_sym_decltype, + ACTIONS(5706), 1, + anon_sym_virtual, + STATE(3999), 1, + sym_decltype_auto, + ACTIONS(5426), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5692), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5428), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5700), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3808), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [113499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4480), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4482), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4950), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4490), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4512), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4508), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4318), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4500), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4290), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4443), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4314), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [113969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4300), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4302), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [114016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + STATE(3820), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4624), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4622), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [114068] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5708), 1, + anon_sym_SEMI, + STATE(3439), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4021), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114128] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5710), 1, + anon_sym_SEMI, + STATE(3439), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4021), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114188] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3472), 1, + sym_field_declaration_list, + STATE(5769), 1, + sym_virtual_specifier, + STATE(6274), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3990), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114246] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4702), 1, + anon_sym_STAR, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_AMP, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(5605), 1, + anon_sym_DOT_DOT_DOT, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5161), 1, + sym__declarator, + STATE(5339), 1, + sym__abstract_declarator, + STATE(5869), 1, + sym_variadic_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5712), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [114332] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3439), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4019), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + STATE(3871), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4564), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4562), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [114442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3482), 1, + sym_field_declaration_list, + STATE(5789), 1, + sym_virtual_specifier, + STATE(6285), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4000), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114500] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3433), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4015), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114558] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [114644] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3430), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4011), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114702] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3428), 1, + sym_field_declaration_list, + STATE(5765), 1, + sym_virtual_specifier, + STATE(6323), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3982), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114760] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [114846] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [114920] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [114984] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4865), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4863), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [115052] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4964), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [115114] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [115198] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [115280] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [115360] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4786), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [115450] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5708), 1, + anon_sym_SEMI, + STATE(3433), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4017), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [115510] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5708), 1, + anon_sym_SEMI, + STATE(3430), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4011), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4013), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [115570] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3516), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3508), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [115622] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [115708] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [115786] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + STATE(3883), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4524), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4522), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [115838] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [115924] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [115996] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5710), 1, + anon_sym_SEMI, + STATE(3433), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4017), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [116056] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3495), 1, + sym_field_declaration_list, + STATE(5593), 1, + sym_virtual_specifier, + STATE(6580), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3972), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [116114] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4766), 1, + anon_sym_STAR, + ACTIONS(4768), 1, + anon_sym_AMP_AMP, + ACTIONS(4770), 1, + anon_sym_AMP, + ACTIONS(5605), 1, + anon_sym_DOT_DOT_DOT, + STATE(4350), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5161), 1, + sym__declarator, + STATE(5402), 1, + sym__abstract_declarator, + STATE(5869), 1, + sym_variadic_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5712), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [116200] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [116268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3071), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [116314] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5710), 1, + anon_sym_SEMI, + STATE(3430), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4011), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4013), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [116374] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5748), 1, + anon_sym_SEMI, + STATE(3439), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4019), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4021), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [116434] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_field_declaration_list, + STATE(5618), 1, + sym_virtual_specifier, + STATE(6564), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4007), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [116492] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym_field_declaration_list, + STATE(5621), 1, + sym_virtual_specifier, + STATE(6550), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(3986), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [116550] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4974), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [116638] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5748), 1, + anon_sym_SEMI, + STATE(3433), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4015), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4017), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [116698] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5748), 1, + anon_sym_SEMI, + STATE(3430), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4011), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4013), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [116758] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5750), 1, + anon_sym_COMMA, + ACTIONS(5752), 1, + anon_sym_SEMI, + ACTIONS(5754), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + STATE(5884), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [116854] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + ACTIONS(5460), 1, + anon_sym_LPAREN2, + STATE(3830), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4620), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4618), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [116906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3075), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [116952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5506), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [116998] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [117064] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5794), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6055), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117157] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5796), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6003), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(4758), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [117295] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5798), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5934), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117388] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5800), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5907), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117481] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5804), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [117572] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5806), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5964), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3773), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3778), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [117712] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5808), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5988), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117805] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5302), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117882] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5810), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6022), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117975] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5812), 1, + anon_sym_COMMA, + ACTIONS(5814), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + STATE(5892), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118068] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5816), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6107), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118161] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5820), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118252] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5824), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(5915), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118345] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5826), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5888), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118438] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5301), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [118515] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5304), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [118592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(4762), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [118637] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5828), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6030), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118730] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5830), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6083), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118823] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5832), 1, + anon_sym_COMMA, + ACTIONS(5834), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + STATE(6027), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118916] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5115), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [118993] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5108), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119070] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5313), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119147] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5836), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(5814), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119240] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5838), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5984), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [119333] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + STATE(6001), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119426] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119503] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5844), 1, + anon_sym_COMMA, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, + anon_sym_RBRACK, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + STATE(6028), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119596] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5754), 1, + anon_sym_RBRACE, + ACTIONS(5880), 1, + anon_sym_COMMA, + STATE(2562), 1, + sym_argument_list, + STATE(5884), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119689] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5088), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119766] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5882), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(6035), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119859] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5118), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119936] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5884), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5863), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [120029] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5886), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5894), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [120122] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5109), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120199] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5112), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120276] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5324), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120353] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5360), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120430] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(5844), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120523] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5890), 1, + anon_sym_RPAREN, + ACTIONS(5892), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5462), 1, + anon_sym_LBRACK, + STATE(3730), 1, + sym_new_declarator, + ACTIONS(4656), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4654), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [120665] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5363), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120742] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(6090), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120835] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5896), 1, + anon_sym_COMMA, + ACTIONS(5898), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + STATE(6074), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120928] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5900), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(6072), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121021] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5902), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(5922), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121114] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5844), 1, + anon_sym_COMMA, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(5904), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + STATE(5940), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121207] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5366), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121284] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5844), 1, + anon_sym_COMMA, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(5906), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + STATE(5940), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4641), 1, + anon_sym_LPAREN2, + ACTIONS(4647), 1, + anon_sym_LBRACK, + ACTIONS(3518), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(3510), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [121428] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5162), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121505] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5168), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121582] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + STATE(5918), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121675] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + ACTIONS(5910), 1, + anon_sym_GT2, + STATE(2993), 1, + sym_argument_list, + STATE(5901), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121768] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5912), 1, + anon_sym_COMMA, + ACTIONS(5914), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + STATE(5856), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121861] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5804), 1, + anon_sym_SEMI, + ACTIONS(5916), 1, + anon_sym_COMMA, + ACTIONS(5919), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121954] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [122031] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4974), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122117] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5921), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4748), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [122251] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4996), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [122335] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5923), 1, + anon_sym_COMMA, + ACTIONS(5925), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4137), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [122469] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4865), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4863), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [122535] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5892), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122625] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5927), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4119), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [122759] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5929), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122849] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4092), 1, + anon_sym_LBRACE, + ACTIONS(4201), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [122895] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5931), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122985] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4887), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [123069] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5933), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123159] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5935), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123249] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4996), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [123333] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5937), 1, + anon_sym_COMMA, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4092), 1, + anon_sym_LBRACE, + ACTIONS(4201), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [123471] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5941), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123561] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5943), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4137), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [123695] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5945), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123785] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5947), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123875] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5949), 1, + anon_sym_COMMA, + ACTIONS(5951), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4115), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [124009] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4964), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [124069] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [124151] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [124231] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5953), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124321] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [124399] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [124475] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [124547] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4865), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4863), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [124615] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5955), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124705] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [124775] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [124841] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5957), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [124929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2335), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [124973] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4786), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125061] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3966), 1, + sym__enum_base_clause, + STATE(4057), 1, + sym_enumerator_list, + ACTIONS(4166), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4168), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [125109] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5959), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125199] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5961), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125289] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5963), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125379] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5965), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125469] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5967), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125559] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [125621] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5969), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125711] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5971), 1, + anon_sym_COMMA, + ACTIONS(5973), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + ACTIONS(5975), 1, + anon_sym_LBRACK, + STATE(3902), 1, + sym_template_argument_list, + ACTIONS(3531), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3516), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(3508), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [125855] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [125919] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5978), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126009] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5980), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4172), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [126143] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5982), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126231] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5984), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126321] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4926), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [126405] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5986), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126493] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5784), 1, + anon_sym_QMARK, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4137), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [126625] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(5990), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126715] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5995), 1, + anon_sym___attribute__, + ACTIONS(5998), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6001), 1, + anon_sym___declspec, + ACTIONS(6007), 1, + anon_sym_virtual, + ACTIONS(5470), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5992), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5472), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6004), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3706), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [126773] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3688), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(3902), 1, + sym_template_argument_list, + ACTIONS(3681), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3684), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(3679), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [126827] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126915] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4883), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [126999] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6010), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127089] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4958), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [127145] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6012), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127235] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + ACTIONS(5627), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(5625), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(3516), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3508), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [127289] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6014), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127379] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6016), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127469] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6018), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127559] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6020), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127649] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6022), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127739] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6024), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127829] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5082), 1, + anon_sym_RPAREN, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127919] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4786), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128007] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6026), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128097] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3903), 1, + sym__enum_base_clause, + STATE(4036), 1, + sym_enumerator_list, + ACTIONS(4160), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4162), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [128145] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6028), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128235] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6030), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128325] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6032), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128415] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6034), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128505] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6036), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128595] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6038), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4772), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [128729] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6040), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128819] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6042), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128909] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6044), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128999] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6046), 1, + anon_sym_COMMA, + ACTIONS(6048), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4693), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [129133] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6050), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4728), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [129267] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5694), 1, + anon_sym___attribute__, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5698), 1, + anon_sym___declspec, + ACTIONS(5706), 1, + anon_sym_virtual, + ACTIONS(5502), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5692), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5504), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5700), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3706), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [129325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4105), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [129369] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6052), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129459] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6054), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4145), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [129593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2327), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [129637] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4702), 1, + anon_sym_STAR, + ACTIONS(4704), 1, + anon_sym_AMP_AMP, + ACTIONS(4706), 1, + anon_sym_AMP, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5161), 1, + sym__declarator, + STATE(5339), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5712), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [129717] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6056), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129807] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6058), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129897] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6060), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129987] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5752), 1, + anon_sym_SEMI, + ACTIONS(5802), 1, + anon_sym_COMMA, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4101), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [130121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4671), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [130165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6062), 1, + anon_sym_LPAREN2, + STATE(2577), 1, + sym_argument_list, + ACTIONS(4201), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [130213] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130301] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4926), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [130385] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6065), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4158), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [130517] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6067), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130607] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6069), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4176), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [130741] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6071), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130831] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5957), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [130985] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 7, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4962), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [131047] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6073), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131137] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [131205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4183), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [131249] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6075), 1, + anon_sym_COMMA, + ACTIONS(6077), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131339] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6079), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131429] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [131499] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6081), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131589] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4893), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4891), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [131643] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_GT2, + [131715] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_GT2, + [131791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4151), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [131835] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_GT2, + [131913] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6083), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132003] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [132083] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [132165] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6085), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132255] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4887), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132339] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4962), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [132395] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4962), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [132455] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4883), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5285), 1, + sym_literal_suffix, + ACTIONS(3518), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3510), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [132585] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6087), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132675] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6089), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132763] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6091), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132853] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6093), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132943] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6095), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133033] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6097), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133123] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6099), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133213] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6101), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133301] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6103), 1, + sym_identifier, + ACTIONS(6108), 1, + sym_primitive_type, + STATE(3387), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6106), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3948), 21, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [133353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4191), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [133397] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133485] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6110), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133575] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4766), 1, + anon_sym_STAR, + ACTIONS(4768), 1, + anon_sym_AMP_AMP, + ACTIONS(4770), 1, + anon_sym_AMP, + STATE(4350), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5161), 1, + sym__declarator, + STATE(5402), 1, + sym__abstract_declarator, + STATE(7219), 1, + sym_ms_based_modifier, + ACTIONS(5712), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [133655] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5764), 1, + anon_sym_SLASH, + ACTIONS(5770), 1, + anon_sym_PIPE, + ACTIONS(5774), 1, + anon_sym_AMP, + ACTIONS(5780), 1, + anon_sym_LT_LT, + ACTIONS(5782), 1, + anon_sym_GT_GT, + ACTIONS(5786), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5788), 1, + anon_sym_bitor, + ACTIONS(5790), 1, + anon_sym_bitand, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5766), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5768), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5772), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4974), 3, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5776), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5778), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [133741] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6112), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133831] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6114), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133921] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6116), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134011] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6118), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4141), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [134145] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6120), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134235] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6128), 1, + anon_sym___attribute__, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + STATE(5092), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4234), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4068), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6122), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [134307] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(5792), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4859), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [134363] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + ACTIONS(5216), 1, + anon_sym_LBRACK, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(5232), 1, + anon_sym_DASH_GT, + STATE(2993), 1, + sym_argument_list, + ACTIONS(4857), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4855), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [134417] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6142), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134507] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5694), 1, + anon_sym___attribute__, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5698), 1, + anon_sym___declspec, + ACTIONS(5706), 1, + anon_sym_virtual, + ACTIONS(5536), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5692), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5538), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5700), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3706), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [134565] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6144), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134655] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6146), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134745] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_COMMA, + ACTIONS(6148), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134835] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6128), 1, + anon_sym___attribute__, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6152), 1, + anon_sym_LBRACK, + STATE(5106), 1, + sym_trailing_return_type, + STATE(5113), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(3804), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4062), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6150), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [134907] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6154), 1, + anon_sym_COMMA, + ACTIONS(6156), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134997] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6182), 1, + anon_sym_COLON, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135084] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6192), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135171] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4964), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [135230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4693), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [135273] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6194), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135360] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6196), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4918), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [135490] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6198), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135577] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4974), 2, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135662] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5079), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3928), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4289), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [135733] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4996), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135816] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4195), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4081), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6122), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [135887] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6218), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135974] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5443), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4262), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [136045] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + STATE(5030), 1, + sym_trailing_return_type, + STATE(5113), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(3825), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4082), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6150), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [136116] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3633), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4881), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4879), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [136246] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6228), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136333] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6230), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4875), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [136463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6232), 1, + anon_sym_LPAREN2, + STATE(2866), 1, + sym_argument_list, + ACTIONS(4201), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [136510] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3627), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136597] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6235), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136684] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136771] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6237), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136858] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6239), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136945] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137032] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6241), 1, + anon_sym_AMP_AMP, + ACTIONS(4912), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4910), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [137077] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6243), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137164] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4960), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4958), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [137219] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6245), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137306] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6247), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137393] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6249), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137480] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6251), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137567] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5029), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4298), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [137638] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6253), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4842), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [137768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4950), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [137811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4914), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [137854] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6255), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137941] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6257), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138028] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6259), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138115] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6261), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138202] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6263), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138289] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6265), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138376] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6267), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138463] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6269), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4970), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [138593] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [138672] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6271), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138759] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6273), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138846] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4964), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [138901] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3673), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138988] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6275), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139075] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3677), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139162] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [139239] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6277), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4832), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [139369] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6279), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139456] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6281), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139543] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3728), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139630] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_PIPE, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [139705] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3566), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139792] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139879] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [139950] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140037] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6285), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4869), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4867), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [140167] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4964), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [140236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4780), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [140279] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6287), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140366] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6289), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140453] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [140518] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6291), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140605] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6293), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140692] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6295), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140779] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [140840] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4964), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [140903] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6297), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2547), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [141033] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6299), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141120] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6301), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141207] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4926), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141290] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6303), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141377] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6305), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141464] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6307), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141551] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6309), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3510), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [141681] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 1, + anon_sym_LBRACK, + ACTIONS(3778), 1, + anon_sym_SEMI, + ACTIONS(3768), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3771), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + ACTIONS(3766), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [141730] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3998), 1, + sym_enumerator_list, + ACTIONS(4227), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4229), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [141775] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3573), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141862] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4883), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141945] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4962), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [142026] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6311), 1, + anon_sym_RBRACE, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4944), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [142156] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6313), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4934), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [142286] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(6315), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(3523), 1, + sym__enum_base_clause, + ACTIONS(4160), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4162), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [142337] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6317), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142424] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6319), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5702), 1, + sym_auto, + ACTIONS(5704), 1, + anon_sym_decltype, + STATE(3999), 1, + sym_decltype_auto, + ACTIONS(4223), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4225), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [142560] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6321), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142647] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6323), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142734] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6325), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4776), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [142864] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6327), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142951] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4786), 1, + anon_sym_COLON, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143038] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5444), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3827), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4293), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [143109] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6329), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143196] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6331), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143283] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143370] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6333), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143457] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(6315), 1, + anon_sym_COLON, + STATE(3480), 1, + sym__enum_base_clause, + STATE(3484), 1, + sym_enumerator_list, + ACTIONS(4166), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4168), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [143508] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6335), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143595] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5007), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4258), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [143666] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6337), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143753] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6339), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143840] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5444), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4293), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [143911] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6341), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143998] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144085] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5007), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3848), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4258), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [144156] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6345), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144243] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6347), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144330] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6349), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144417] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6351), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144504] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6353), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144591] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144678] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6357), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144765] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6359), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144852] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6361), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [144939] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6363), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4748), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [145069] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3104), 1, + anon_sym_LPAREN2, + ACTIONS(3106), 1, + anon_sym_STAR, + ACTIONS(3108), 1, + anon_sym_AMP_AMP, + ACTIONS(3110), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5712), 1, + anon_sym_RPAREN, + STATE(4350), 1, + sym_parameter_list, + STATE(4992), 1, + sym__scope_resolution, + STATE(5319), 1, + sym__declarator, + STATE(5402), 1, + sym__abstract_declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [145148] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(5820), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145235] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6365), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145322] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5411), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3931), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4305), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [145393] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6367), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145480] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6369), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145567] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6371), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145654] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6373), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145741] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6375), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145828] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4857), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4855), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [145881] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6377), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145968] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3575), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146055] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6379), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146142] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6381), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6241), 1, + anon_sym_AMP_AMP, + ACTIONS(6383), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4897), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4895), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [146276] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6385), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146363] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6387), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146450] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6389), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146537] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4861), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4859), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [146592] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(4893), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4891), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [146645] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4060), 1, + sym_enumerator_list, + ACTIONS(4195), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4197), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [146690] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6391), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146777] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6393), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146864] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4887), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146947] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6395), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147034] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4865), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4863), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [147099] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6397), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147186] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3571), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147273] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6399), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4669), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4671), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [147403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4988), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [147446] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6401), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147533] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3597), 1, + anon_sym_RBRACK, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147620] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6403), 1, + anon_sym_RPAREN, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147707] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4954), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [147837] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_GT_EQ, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5876), 1, + anon_sym_bitor, + ACTIONS(5878), 1, + anon_sym_bitand, + ACTIONS(6407), 1, + anon_sym_RBRACK, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5846), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5848), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5858), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5868), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5862), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5864), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4838), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [147967] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(5290), 1, + anon_sym_DOT, + ACTIONS(5292), 1, + anon_sym_DASH_GT, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6162), 1, + anon_sym_SLASH, + ACTIONS(6168), 1, + anon_sym_PIPE, + ACTIONS(6172), 1, + anon_sym_AMP, + ACTIONS(6178), 1, + anon_sym_GT_EQ, + ACTIONS(6184), 1, + anon_sym_QMARK, + ACTIONS(6186), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6188), 1, + anon_sym_bitor, + ACTIONS(6190), 1, + anon_sym_bitand, + ACTIONS(6409), 1, + anon_sym_COLON, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6158), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6160), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6164), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6166), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6170), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6174), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6176), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148054] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6411), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148141] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6413), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4922), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [148271] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6415), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148358] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + ACTIONS(4810), 1, + anon_sym_LBRACK, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_DASH_GT, + ACTIONS(5718), 1, + anon_sym_SLASH, + ACTIONS(5724), 1, + anon_sym_PIPE, + ACTIONS(5728), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_GT_EQ, + ACTIONS(5738), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5740), 1, + anon_sym_bitor, + ACTIONS(5742), 1, + anon_sym_bitand, + ACTIONS(5744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + anon_sym_QMARK, + ACTIONS(6417), 1, + anon_sym_SEMI, + STATE(2562), 1, + sym_argument_list, + ACTIONS(5653), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5714), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5722), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5726), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5730), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5732), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4401), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4616), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4314), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4318), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4516), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4512), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4508), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4608), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4244), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4246), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4604), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4596), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4590), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4592), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5510), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [148991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5338), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [149033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4762), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [149075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4588), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149117] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LBRACK, + STATE(4094), 1, + sym_template_argument_list, + ACTIONS(3531), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3516), 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3508), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [149169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4584), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149211] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(4094), 1, + sym_template_argument_list, + ACTIONS(3681), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3684), 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3679), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [149263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4334), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4580), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4568), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4558), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4560), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4556), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4504), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4552), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4548), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4544), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4520), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4203), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4330), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4324), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4326), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149809] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + STATE(5030), 1, + sym_trailing_return_type, + STATE(5113), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4030), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6150), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4112), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [149879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4480), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4482), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4421), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4490), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4256), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4258), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4417), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4413), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4409), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150173] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4195), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6122), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4116), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [150243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4405), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4300), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4302), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4322), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4443), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4486), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4478), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4600), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4534), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4536), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4393), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4338), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4203), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4496), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4290), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4385), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4612), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4451), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150915] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(6423), 1, + sym_identifier, + ACTIONS(6425), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6429), 1, + anon_sym_EQ, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6427), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [150999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4276), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4278), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4447), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4574), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4576), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4498), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4500), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4397), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4466), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4758), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [151293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4389), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4280), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4282), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4284), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4286), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4474), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4572), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4381), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4374), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151587] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + STATE(5092), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6122), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [151652] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1727), 1, + sym__fold_operator, + ACTIONS(6433), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6431), 19, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [151695] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_SEMI, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(3516), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3508), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [151744] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6447), 1, + sym_auto, + ACTIONS(6449), 1, + anon_sym_decltype, + STATE(3999), 1, + sym_decltype_auto, + STATE(4155), 1, + sym_parameter_list, + STATE(5099), 1, + sym__abstract_declarator, + STATE(4172), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6435), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [151811] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6453), 1, + anon_sym___declspec, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6459), 1, + anon_sym_virtual, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(5416), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5418), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6451), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4177), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [151874] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6463), 1, + anon_sym_LBRACK, + STATE(5094), 1, + sym_trailing_return_type, + STATE(5178), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6461), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [151939] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6467), 1, + anon_sym_LBRACK, + STATE(5086), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6465), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [152004] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3688), 1, + anon_sym_LBRACK, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(4124), 1, + sym_template_argument_list, + ACTIONS(3681), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3684), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(3679), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152055] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3688), 1, + anon_sym_LBRACK, + ACTIONS(3691), 1, + anon_sym_SEMI, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3902), 1, + sym_template_argument_list, + ACTIONS(3681), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3684), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3679), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152108] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6471), 1, + anon_sym_LBRACK, + STATE(5141), 1, + sym_trailing_return_type, + STATE(5204), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4067), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6469), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [152173] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3885), 1, + anon_sym_SEMI, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(5975), 1, + anon_sym_LBRACK, + STATE(3902), 1, + sym_template_argument_list, + ACTIONS(3531), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3516), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3508), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152226] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6447), 1, + sym_auto, + ACTIONS(6449), 1, + anon_sym_decltype, + STATE(3999), 1, + sym_decltype_auto, + STATE(4155), 1, + sym_parameter_list, + STATE(5127), 1, + sym__abstract_declarator, + STATE(4159), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6473), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [152293] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6453), 1, + anon_sym___declspec, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6459), 1, + anon_sym_virtual, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(5426), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5428), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6451), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4136), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [152356] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(5975), 1, + anon_sym_LBRACK, + STATE(4124), 1, + sym_template_argument_list, + ACTIONS(3531), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3516), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(3508), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152407] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6479), 1, + anon_sym_enum, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6487), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3310), 1, + sym__type_specifier, + STATE(4150), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2535), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [152527] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5586), 1, + sym_primitive_type, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_enum, + ACTIONS(6495), 1, + anon_sym_class, + ACTIONS(6497), 1, + anon_sym_struct, + ACTIONS(6499), 1, + anon_sym_union, + ACTIONS(6501), 1, + anon_sym_typename, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(3316), 1, + sym__type_specifier, + STATE(4145), 1, + sym_argument_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152607] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4208), 1, + sym_parameter_list, + STATE(5171), 1, + sym__abstract_declarator, + STATE(4183), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6473), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [152673] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6517), 1, + anon_sym_enum, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6529), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1853), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(4173), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152753] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6467), 1, + anon_sym_LBRACK, + STATE(5068), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6465), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [152817] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6122), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [152881] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3295), 1, + sym__type_specifier, + STATE(4152), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152961] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6541), 1, + sym_primitive_type, + ACTIONS(6543), 1, + anon_sym_enum, + ACTIONS(6545), 1, + anon_sym_class, + ACTIONS(6547), 1, + anon_sym_struct, + ACTIONS(6549), 1, + anon_sym_union, + ACTIONS(6551), 1, + sym_auto, + ACTIONS(6553), 1, + anon_sym_decltype, + ACTIONS(6555), 1, + anon_sym_typename, + STATE(1844), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1920), 1, + sym__type_specifier, + STATE(2182), 1, + sym_template_type, + STATE(2251), 1, + sym_decltype_auto, + STATE(2448), 1, + sym_qualified_type_identifier, + STATE(4135), 1, + sym_argument_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2299), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153041] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1865), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(4153), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153121] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6566), 1, + anon_sym_AMP, + ACTIONS(6569), 1, + anon_sym_LBRACK, + ACTIONS(6571), 1, + anon_sym_const, + ACTIONS(6580), 1, + anon_sym_noexcept, + ACTIONS(6583), 1, + anon_sym_throw, + ACTIONS(6577), 2, + anon_sym_final, + anon_sym_override, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6574), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6561), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [153177] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3278), 1, + sym__type_specifier, + STATE(4166), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6588), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6586), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [153297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2827), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2825), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [153337] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6517), 1, + anon_sym_enum, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6529), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1865), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(4180), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153417] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4195), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6122), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4201), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153485] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4195), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6122), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4197), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153553] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5586), 1, + sym_primitive_type, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_enum, + ACTIONS(6495), 1, + anon_sym_class, + ACTIONS(6497), 1, + anon_sym_struct, + ACTIONS(6499), 1, + anon_sym_union, + ACTIONS(6501), 1, + anon_sym_typename, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(3317), 1, + sym__type_specifier, + STATE(4176), 1, + sym_argument_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3773), 1, + anon_sym_LBRACK, + ACTIONS(3768), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3771), 6, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3766), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [153677] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5113), 1, + sym_requires_clause, + STATE(5263), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4091), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6150), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4202), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153745] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6596), 1, + sym_identifier, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6602), 1, + sym_primitive_type, + ACTIONS(6604), 1, + anon_sym_enum, + ACTIONS(6606), 1, + anon_sym_class, + ACTIONS(6608), 1, + anon_sym_struct, + ACTIONS(6610), 1, + anon_sym_union, + ACTIONS(6612), 1, + sym_auto, + ACTIONS(6614), 1, + anon_sym_decltype, + ACTIONS(6616), 1, + anon_sym_typename, + STATE(1906), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2173), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2767), 1, + sym_decltype_auto, + STATE(2869), 1, + sym_qualified_type_identifier, + STATE(4129), 1, + sym_argument_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2885), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153825] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6596), 1, + sym_identifier, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6602), 1, + sym_primitive_type, + ACTIONS(6604), 1, + anon_sym_enum, + ACTIONS(6606), 1, + anon_sym_class, + ACTIONS(6608), 1, + anon_sym_struct, + ACTIONS(6610), 1, + anon_sym_union, + ACTIONS(6612), 1, + sym_auto, + ACTIONS(6614), 1, + anon_sym_decltype, + ACTIONS(6616), 1, + anon_sym_typename, + STATE(1906), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2198), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2767), 1, + sym_decltype_auto, + STATE(2869), 1, + sym_qualified_type_identifier, + STATE(4174), 1, + sym_argument_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2885), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2539), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [153945] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3275), 1, + sym__type_specifier, + STATE(4133), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2507), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [154065] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1853), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(4148), 1, + sym_argument_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154145] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6618), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + sym_primitive_type, + ACTIONS(6626), 1, + anon_sym_enum, + ACTIONS(6628), 1, + anon_sym_class, + ACTIONS(6630), 1, + anon_sym_struct, + ACTIONS(6632), 1, + anon_sym_union, + ACTIONS(6634), 1, + sym_auto, + ACTIONS(6636), 1, + anon_sym_decltype, + ACTIONS(6638), 1, + anon_sym_typename, + STATE(1885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2108), 1, + sym__type_specifier, + STATE(2485), 1, + sym_template_type, + STATE(2588), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(4170), 1, + sym_argument_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154225] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6618), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + sym_primitive_type, + ACTIONS(6626), 1, + anon_sym_enum, + ACTIONS(6628), 1, + anon_sym_class, + ACTIONS(6630), 1, + anon_sym_struct, + ACTIONS(6632), 1, + anon_sym_union, + ACTIONS(6634), 1, + sym_auto, + ACTIONS(6636), 1, + anon_sym_decltype, + ACTIONS(6638), 1, + anon_sym_typename, + STATE(1885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2134), 1, + sym__type_specifier, + STATE(2485), 1, + sym_template_type, + STATE(2588), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(4162), 1, + sym_argument_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154305] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6479), 1, + anon_sym_enum, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6487), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3295), 1, + sym__type_specifier, + STATE(4181), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2577), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [154425] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4208), 1, + sym_parameter_list, + STATE(5205), 1, + sym__abstract_declarator, + STATE(4187), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6435), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [154491] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6541), 1, + sym_primitive_type, + ACTIONS(6543), 1, + anon_sym_enum, + ACTIONS(6545), 1, + anon_sym_class, + ACTIONS(6547), 1, + anon_sym_struct, + ACTIONS(6549), 1, + anon_sym_union, + ACTIONS(6551), 1, + sym_auto, + ACTIONS(6553), 1, + anon_sym_decltype, + ACTIONS(6555), 1, + anon_sym_typename, + STATE(1844), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1934), 1, + sym__type_specifier, + STATE(2182), 1, + sym_template_type, + STATE(2251), 1, + sym_decltype_auto, + STATE(2448), 1, + sym_qualified_type_identifier, + STATE(4146), 1, + sym_argument_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2299), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154571] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + STATE(5113), 1, + sym_requires_clause, + STATE(5263), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4092), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6150), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4200), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154639] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3310), 1, + sym__type_specifier, + STATE(4131), 1, + sym_argument_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2925), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2920), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [154759] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, + anon_sym_AMP_AMP, + ACTIONS(6566), 1, + anon_sym_AMP, + ACTIONS(6569), 1, + anon_sym_LBRACK, + ACTIONS(6580), 1, + anon_sym_noexcept, + ACTIONS(6583), 1, + anon_sym_throw, + ACTIONS(6640), 1, + anon_sym_const, + ACTIONS(6577), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6643), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6561), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_try, + anon_sym_requires, + [154814] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + STATE(5040), 1, + sym_trailing_return_type, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6122), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154877] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6128), 1, + anon_sym___attribute__, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5455), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4234), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6122), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4240), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4092), 1, + anon_sym_SEMI, + ACTIONS(4201), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [154985] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(6650), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(3523), 1, + sym__enum_base_clause, + ACTIONS(4162), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4160), 24, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_requires, + [155032] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6467), 1, + anon_sym_LBRACK, + STATE(5068), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6465), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155095] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(6650), 1, + anon_sym_COLON, + STATE(3480), 1, + sym__enum_base_clause, + STATE(3484), 1, + sym_enumerator_list, + ACTIONS(4168), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4166), 24, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_requires, + [155142] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4217), 1, + sym_parameter_list, + STATE(5221), 1, + sym__abstract_declarator, + STATE(4218), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6473), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3071), 22, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + [155246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3075), 22, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + [155285] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4217), 1, + sym_parameter_list, + STATE(5236), 1, + sym__abstract_declarator, + STATE(4220), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6435), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155350] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6128), 1, + anon_sym___attribute__, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6152), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + STATE(5113), 1, + sym_requires_clause, + STATE(5453), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + STATE(4113), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6150), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4244), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4762), 17, + anon_sym_AMP, + anon_sym___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [155456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 1, + anon_sym_LBRACK, + ACTIONS(3768), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3771), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(3766), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [155499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4092), 1, + anon_sym_SEMI, + ACTIONS(4201), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [155542] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5492), 1, + anon_sym_enum, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5500), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(5506), 1, + sym__type_specifier, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155616] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(5518), 1, + anon_sym_enum, + ACTIONS(5520), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155690] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6618), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + sym_primitive_type, + ACTIONS(6626), 1, + anon_sym_enum, + ACTIONS(6628), 1, + anon_sym_class, + ACTIONS(6630), 1, + anon_sym_struct, + ACTIONS(6632), 1, + anon_sym_union, + ACTIONS(6634), 1, + sym_auto, + ACTIONS(6636), 1, + anon_sym_decltype, + ACTIONS(6638), 1, + anon_sym_typename, + STATE(1885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2480), 1, + sym__type_specifier, + STATE(2485), 1, + sym_template_type, + STATE(2588), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155764] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6596), 1, + sym_identifier, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6602), 1, + sym_primitive_type, + ACTIONS(6604), 1, + anon_sym_enum, + ACTIONS(6606), 1, + anon_sym_class, + ACTIONS(6608), 1, + anon_sym_struct, + ACTIONS(6610), 1, + anon_sym_union, + ACTIONS(6612), 1, + sym_auto, + ACTIONS(6614), 1, + anon_sym_decltype, + ACTIONS(6616), 1, + anon_sym_typename, + STATE(1906), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2192), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2767), 1, + sym_decltype_auto, + STATE(2869), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2885), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155838] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5516), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3914), 1, + sym__type_specifier, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(4175), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155912] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3303), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155986] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1617), 1, + anon_sym_enum, + ACTIONS(1619), 1, + anon_sym_class, + ACTIONS(1621), 1, + anon_sym_struct, + ACTIONS(1623), 1, + anon_sym_union, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(1631), 1, + anon_sym_typename, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + STATE(3418), 1, + sym_template_type, + STATE(3792), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3914), 1, + sym__type_specifier, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1613), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156060] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3271), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156134] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(5578), 1, + anon_sym_enum, + ACTIONS(5580), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156208] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6541), 1, + sym_primitive_type, + ACTIONS(6543), 1, + anon_sym_enum, + ACTIONS(6545), 1, + anon_sym_class, + ACTIONS(6547), 1, + anon_sym_struct, + ACTIONS(6549), 1, + anon_sym_union, + ACTIONS(6551), 1, + sym_auto, + ACTIONS(6553), 1, + anon_sym_decltype, + ACTIONS(6555), 1, + anon_sym_typename, + STATE(1844), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1919), 1, + sym__type_specifier, + STATE(2182), 1, + sym_template_type, + STATE(2251), 1, + sym_decltype_auto, + STATE(2448), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2299), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156282] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6453), 1, + anon_sym___declspec, + ACTIONS(6459), 1, + anon_sym_virtual, + ACTIONS(5536), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5538), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6451), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4138), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [156336] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6479), 1, + anon_sym_enum, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6487), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156410] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5641), 1, + anon_sym_const, + ACTIONS(6661), 1, + anon_sym___attribute__, + ACTIONS(6664), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6667), 1, + anon_sym___declspec, + ACTIONS(6673), 1, + anon_sym_virtual, + ACTIONS(5470), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5472), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6658), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6670), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4138), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [156464] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6686), 1, + sym_auto, + ACTIONS(6688), 1, + anon_sym_decltype, + STATE(4263), 1, + sym_parameter_list, + STATE(4498), 1, + sym_decltype_auto, + STATE(5330), 1, + sym__abstract_declarator, + STATE(4278), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6473), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [156528] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1615), 1, + sym_primitive_type, + ACTIONS(1625), 1, + sym_auto, + ACTIONS(1627), 1, + anon_sym_decltype, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5526), 1, + anon_sym_enum, + ACTIONS(5528), 1, + anon_sym_class, + ACTIONS(5530), 1, + anon_sym_struct, + ACTIONS(5532), 1, + anon_sym_union, + ACTIONS(5534), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3914), 1, + sym__type_specifier, + STATE(4026), 1, + sym_decltype_auto, + STATE(4041), 1, + sym_qualified_type_identifier, + STATE(4175), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5514), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4019), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156602] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + STATE(4155), 1, + sym_parameter_list, + STATE(5150), 1, + sym__abstract_declarator, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5348), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [156660] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5492), 1, + anon_sym_enum, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5500), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156734] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1949), 1, + sym_template_type, + STATE(1953), 1, + sym__type_specifier, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156808] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2425), 1, + anon_sym_enum, + ACTIONS(2427), 1, + anon_sym_class, + ACTIONS(2429), 1, + anon_sym_struct, + ACTIONS(2431), 1, + anon_sym_union, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(2449), 1, + anon_sym_typename, + ACTIONS(5582), 1, + sym_identifier, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(5586), 1, + sym_primitive_type, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3114), 1, + sym__type_specifier, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156882] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(5586), 1, + sym_primitive_type, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_enum, + ACTIONS(6495), 1, + anon_sym_class, + ACTIONS(6497), 1, + anon_sym_struct, + ACTIONS(6499), 1, + anon_sym_union, + ACTIONS(6501), 1, + anon_sym_typename, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(3314), 1, + sym__type_specifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156956] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6541), 1, + sym_primitive_type, + ACTIONS(6543), 1, + anon_sym_enum, + ACTIONS(6545), 1, + anon_sym_class, + ACTIONS(6547), 1, + anon_sym_struct, + ACTIONS(6549), 1, + anon_sym_union, + ACTIONS(6551), 1, + sym_auto, + ACTIONS(6553), 1, + anon_sym_decltype, + ACTIONS(6555), 1, + anon_sym_typename, + STATE(1844), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1910), 1, + sym__type_specifier, + STATE(2182), 1, + sym_template_type, + STATE(2251), 1, + sym_decltype_auto, + STATE(2448), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2299), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157030] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5574), 1, + anon_sym_enum, + ACTIONS(5576), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157104] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1875), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157178] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6692), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5155), 1, + sym_trailing_return_type, + STATE(4161), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6690), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [157238] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6479), 1, + anon_sym_enum, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6487), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3303), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157312] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157386] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3298), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157460] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6557), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1869), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157534] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_class, + ACTIONS(5592), 1, + anon_sym_struct, + ACTIONS(5594), 1, + anon_sym_union, + ACTIONS(5596), 1, + anon_sym_typename, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157608] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5151), 1, + sym_trailing_return_type, + STATE(4171), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6694), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [157668] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3522), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157742] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157816] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(2871), 1, + anon_sym_enum, + ACTIONS(2873), 1, + anon_sym_class, + ACTIONS(2875), 1, + anon_sym_struct, + ACTIONS(2877), 1, + anon_sym_union, + ACTIONS(2879), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157890] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + STATE(4155), 1, + sym_parameter_list, + STATE(5142), 1, + sym__abstract_declarator, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6698), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [157948] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2869), 1, + sym_primitive_type, + ACTIONS(3825), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5492), 1, + anon_sym_enum, + ACTIONS(5494), 1, + anon_sym_class, + ACTIONS(5496), 1, + anon_sym_struct, + ACTIONS(5498), 1, + anon_sym_union, + ACTIONS(5500), 1, + anon_sym_typename, + STATE(3418), 1, + sym_template_type, + STATE(3479), 1, + sym_qualified_type_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3522), 1, + sym_decltype_auto, + STATE(5385), 1, + sym__scope_resolution, + STATE(5510), 1, + sym__type_specifier, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3504), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158022] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5123), 1, + sym_trailing_return_type, + STATE(4224), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6700), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [158082] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6618), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + sym_primitive_type, + ACTIONS(6626), 1, + anon_sym_enum, + ACTIONS(6628), 1, + anon_sym_class, + ACTIONS(6630), 1, + anon_sym_struct, + ACTIONS(6632), 1, + anon_sym_union, + ACTIONS(6634), 1, + sym_auto, + ACTIONS(6636), 1, + anon_sym_decltype, + ACTIONS(6638), 1, + anon_sym_typename, + STATE(1885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2008), 1, + sym__type_specifier, + STATE(2485), 1, + sym_template_type, + STATE(2588), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158156] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6541), 1, + sym_primitive_type, + ACTIONS(6543), 1, + anon_sym_enum, + ACTIONS(6545), 1, + anon_sym_class, + ACTIONS(6547), 1, + anon_sym_struct, + ACTIONS(6549), 1, + anon_sym_union, + ACTIONS(6551), 1, + sym_auto, + ACTIONS(6553), 1, + anon_sym_decltype, + ACTIONS(6555), 1, + anon_sym_typename, + STATE(1844), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2182), 1, + sym_template_type, + STATE(2195), 1, + sym__type_specifier, + STATE(2251), 1, + sym_decltype_auto, + STATE(2448), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2299), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158230] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6517), 1, + anon_sym_enum, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6529), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1949), 1, + sym_template_type, + STATE(1953), 1, + sym__type_specifier, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158304] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + STATE(4155), 1, + sym_parameter_list, + STATE(5134), 1, + sym__abstract_declarator, + STATE(4141), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4700), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [158362] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6531), 1, + anon_sym_enum, + ACTIONS(6533), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3277), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158436] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6596), 1, + sym_identifier, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6602), 1, + sym_primitive_type, + ACTIONS(6604), 1, + anon_sym_enum, + ACTIONS(6606), 1, + anon_sym_class, + ACTIONS(6608), 1, + anon_sym_struct, + ACTIONS(6610), 1, + anon_sym_union, + ACTIONS(6612), 1, + sym_auto, + ACTIONS(6614), 1, + anon_sym_decltype, + ACTIONS(6616), 1, + anon_sym_typename, + STATE(1906), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2670), 1, + sym_template_type, + STATE(2679), 1, + sym__type_specifier, + STATE(2767), 1, + sym_decltype_auto, + STATE(2869), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2885), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158510] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(5586), 1, + sym_primitive_type, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_enum, + ACTIONS(6495), 1, + anon_sym_class, + ACTIONS(6497), 1, + anon_sym_struct, + ACTIONS(6499), 1, + anon_sym_union, + ACTIONS(6501), 1, + anon_sym_typename, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3114), 1, + sym__type_specifier, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4201), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4203), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [158624] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6618), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(6624), 1, + sym_primitive_type, + ACTIONS(6626), 1, + anon_sym_enum, + ACTIONS(6628), 1, + anon_sym_class, + ACTIONS(6630), 1, + anon_sym_struct, + ACTIONS(6632), 1, + anon_sym_union, + ACTIONS(6634), 1, + sym_auto, + ACTIONS(6636), 1, + anon_sym_decltype, + ACTIONS(6638), 1, + anon_sym_typename, + STATE(1885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2067), 1, + sym__type_specifier, + STATE(2485), 1, + sym_template_type, + STATE(2588), 1, + sym_qualified_type_identifier, + STATE(2661), 1, + sym_decltype_auto, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2657), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158698] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_DASH_GT, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5122), 1, + sym_trailing_return_type, + STATE(4224), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6704), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [158758] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + STATE(4155), 1, + sym_parameter_list, + STATE(5126), 1, + sym__abstract_declarator, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6708), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [158816] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6517), 1, + anon_sym_enum, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6529), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1875), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158890] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6596), 1, + sym_identifier, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6602), 1, + sym_primitive_type, + ACTIONS(6604), 1, + anon_sym_enum, + ACTIONS(6606), 1, + anon_sym_class, + ACTIONS(6608), 1, + anon_sym_struct, + ACTIONS(6610), 1, + anon_sym_union, + ACTIONS(6612), 1, + sym_auto, + ACTIONS(6614), 1, + anon_sym_decltype, + ACTIONS(6616), 1, + anon_sym_typename, + STATE(1906), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2174), 1, + sym__type_specifier, + STATE(2670), 1, + sym_template_type, + STATE(2767), 1, + sym_decltype_auto, + STATE(2869), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2885), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158964] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6108), 1, + sym_primitive_type, + ACTIONS(6710), 1, + sym_identifier, + STATE(3387), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6106), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3948), 14, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [159010] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2445), 1, + sym_auto, + ACTIONS(2447), 1, + anon_sym_decltype, + ACTIONS(5586), 1, + sym_primitive_type, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6493), 1, + anon_sym_enum, + ACTIONS(6495), 1, + anon_sym_class, + ACTIONS(6497), 1, + anon_sym_struct, + ACTIONS(6499), 1, + anon_sym_union, + ACTIONS(6501), 1, + anon_sym_typename, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3096), 1, + sym_template_type, + STATE(3152), 1, + sym_decltype_auto, + STATE(3167), 1, + sym_qualified_type_identifier, + STATE(3318), 1, + sym__type_specifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3153), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159084] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6210), 1, + anon_sym___attribute__, + ACTIONS(6453), 1, + anon_sym___declspec, + ACTIONS(6459), 1, + anon_sym_virtual, + ACTIONS(5502), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5504), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6451), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4138), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [159138] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5552), 1, + sym_identifier, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + sym_primitive_type, + ACTIONS(5560), 1, + anon_sym_enum, + ACTIONS(5562), 1, + anon_sym_class, + ACTIONS(5564), 1, + anon_sym_struct, + ACTIONS(5566), 1, + anon_sym_union, + ACTIONS(5568), 1, + sym_auto, + ACTIONS(5570), 1, + anon_sym_decltype, + ACTIONS(5572), 1, + anon_sym_typename, + STATE(4279), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4429), 1, + sym__type_specifier, + STATE(4436), 1, + sym_template_type, + STATE(4486), 1, + sym_decltype_auto, + STATE(4489), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4488), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159212] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6686), 1, + sym_auto, + ACTIONS(6688), 1, + anon_sym_decltype, + STATE(4263), 1, + sym_parameter_list, + STATE(4498), 1, + sym_decltype_auto, + STATE(5334), 1, + sym__abstract_declarator, + STATE(4254), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6435), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159276] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6509), 1, + sym_identifier, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_primitive_type, + ACTIONS(6517), 1, + anon_sym_enum, + ACTIONS(6519), 1, + anon_sym_class, + ACTIONS(6521), 1, + anon_sym_struct, + ACTIONS(6523), 1, + anon_sym_union, + ACTIONS(6525), 1, + sym_auto, + ACTIONS(6527), 1, + anon_sym_decltype, + ACTIONS(6529), 1, + anon_sym_typename, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1869), 1, + sym__type_specifier, + STATE(1949), 1, + sym_template_type, + STATE(1994), 1, + sym_decltype_auto, + STATE(2092), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1997), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159350] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5458), 1, + sym_primitive_type, + ACTIONS(6475), 1, + sym_identifier, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6479), 1, + anon_sym_enum, + ACTIONS(6481), 1, + anon_sym_class, + ACTIONS(6483), 1, + anon_sym_struct, + ACTIONS(6485), 1, + anon_sym_union, + ACTIONS(6487), 1, + anon_sym_typename, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(3298), 1, + sym__type_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159424] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5452), 1, + sym_identifier, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + sym_primitive_type, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2671), 1, + sym__type_specifier, + STATE(2686), 1, + sym_template_type, + STATE(2779), 1, + sym_qualified_type_identifier, + STATE(2880), 1, + sym_decltype_auto, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2877), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159498] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(4208), 1, + sym_parameter_list, + STATE(5202), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6698), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [159555] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5240), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4189), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4432), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159614] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(4208), 1, + sym_parameter_list, + STATE(5207), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5348), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159671] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(2852), 1, + sym_decltype_auto, + STATE(4350), 1, + sym_parameter_list, + STATE(5388), 1, + sym__abstract_declarator, + STATE(4341), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6435), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159734] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(4208), 1, + sym_parameter_list, + STATE(5194), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6708), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [159791] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6720), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_AMP, + ACTIONS(6726), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_const, + ACTIONS(6734), 1, + anon_sym_noexcept, + ACTIONS(6737), 1, + anon_sym_throw, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6731), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6718), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [159842] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5297), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4442), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6742), 1, + anon_sym_LPAREN2, + ACTIONS(6744), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6740), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [159940] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4339), 1, + sym_parameter_list, + STATE(5439), 1, + sym__abstract_declarator, + STATE(4315), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6473), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6754), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6752), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [160040] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6692), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5062), 1, + sym_trailing_return_type, + STATE(4206), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6690), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160099] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6756), 1, + anon_sym_AMP_AMP, + ACTIONS(6759), 1, + anon_sym_AMP, + ACTIONS(6762), 1, + anon_sym_const, + ACTIONS(6768), 1, + anon_sym_noexcept, + ACTIONS(6771), 1, + anon_sym_throw, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6765), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6718), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [160148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6778), 1, + anon_sym___attribute__, + STATE(4195), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6776), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6774), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [160189] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4328), 1, + sym_parameter_list, + STATE(5346), 1, + sym__abstract_declarator, + STATE(4314), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6435), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160252] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + STATE(5135), 1, + sym_requires_clause, + STATE(5234), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6465), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160313] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4328), 1, + sym_parameter_list, + STATE(5438), 1, + sym__abstract_declarator, + STATE(4322), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6473), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160376] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5085), 1, + sym_trailing_return_type, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6704), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160435] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6122), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160496] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + STATE(5234), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6465), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160557] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5217), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6122), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160618] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(3173), 1, + sym_decltype_auto, + STATE(4345), 1, + sym_parameter_list, + STATE(5343), 1, + sym__abstract_declarator, + STATE(4320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6435), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160681] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5293), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4441), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160740] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(5332), 1, + sym_auto, + ACTIONS(5334), 1, + anon_sym_decltype, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(3173), 1, + sym_decltype_auto, + STATE(4345), 1, + sym_parameter_list, + STATE(5418), 1, + sym__abstract_declarator, + STATE(4327), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6473), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160803] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5039), 1, + sym_trailing_return_type, + STATE(5057), 1, + sym_requires_clause, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6700), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160862] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(4208), 1, + sym_parameter_list, + STATE(5187), 1, + sym__abstract_declarator, + STATE(4185), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(4700), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6214), 1, + anon_sym_DASH_GT, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(5037), 1, + sym_trailing_return_type, + STATE(5074), 1, + sym_requires_clause, + STATE(4199), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6694), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160978] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(3455), 1, + sym_decltype_auto, + STATE(4339), 1, + sym_parameter_list, + STATE(5427), 1, + sym__abstract_declarator, + STATE(4347), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6435), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161041] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5297), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + ACTIONS(2903), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4204), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4442), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2901), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161100] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(2852), 1, + sym_decltype_auto, + STATE(4350), 1, + sym_parameter_list, + STATE(5358), 1, + sym__abstract_declarator, + STATE(4330), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6473), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161163] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4788), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6017), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161229] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6692), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5062), 1, + sym_trailing_return_type, + STATE(4243), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6690), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6793), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [161323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6797), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [161359] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(4217), 1, + sym_parameter_list, + STATE(5220), 1, + sym__abstract_declarator, + STATE(4219), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(4700), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161415] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(5037), 1, + sym_trailing_return_type, + STATE(5074), 1, + sym_requires_clause, + STATE(4251), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6694), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161473] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(4217), 1, + sym_parameter_list, + STATE(5237), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6698), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161529] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(4217), 1, + sym_parameter_list, + STATE(5231), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5348), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161585] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(4217), 1, + sym_parameter_list, + STATE(5228), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6708), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5508), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5506), 20, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [161677] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6447), 1, + sym_auto, + ACTIONS(6449), 1, + anon_sym_decltype, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(3999), 1, + sym_decltype_auto, + STATE(4373), 1, + sym_parameter_list, + STATE(5460), 1, + sym__abstract_declarator, + STATE(4374), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6473), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161739] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4986), 1, + sym__declarator, + STATE(6049), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161805] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6720), 1, + anon_sym_AMP_AMP, + ACTIONS(6723), 1, + anon_sym_AMP, + ACTIONS(6726), 1, + anon_sym_LBRACK, + ACTIONS(6734), 1, + anon_sym_noexcept, + ACTIONS(6737), 1, + anon_sym_throw, + ACTIONS(6807), 1, + anon_sym_const, + STATE(4224), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6810), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6718), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_try, + anon_sym_requires, + [161855] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6471), 1, + anon_sym_LBRACK, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + STATE(5204), 1, + sym_requires_clause, + STATE(5478), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6469), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(4229), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161915] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6447), 1, + sym_auto, + ACTIONS(6449), 1, + anon_sym_decltype, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(3999), 1, + sym_decltype_auto, + STATE(4373), 1, + sym_parameter_list, + STATE(5466), 1, + sym__abstract_declarator, + STATE(4379), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6435), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161977] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4975), 1, + sym__declarator, + STATE(6017), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162043] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5016), 1, + sym__declarator, + STATE(6456), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162109] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6463), 1, + anon_sym_LBRACK, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + STATE(5178), 1, + sym_requires_clause, + STATE(5479), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6461), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(4086), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5510), 20, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [162205] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4943), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162271] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4900), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162337] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4934), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6813), 1, + anon_sym___attribute__, + STATE(4234), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6776), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6774), 22, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [162443] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4974), 1, + sym__declarator, + STATE(6061), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162509] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(4979), 1, + sym__declarator, + STATE(5876), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162575] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4761), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6049), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162641] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4917), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162707] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4898), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162773] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + STATE(5458), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6465), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5338), 20, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [162869] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4971), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162935] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5039), 1, + sym_trailing_return_type, + STATE(5057), 1, + sym_requires_clause, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6700), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [162993] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + STATE(5455), 1, + sym_trailing_return_type, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6122), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [163053] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4944), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5876), 1, + sym_init_declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163119] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4960), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6080), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163185] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4789), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5839), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163251] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4760), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6080), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163317] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4758), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6061), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6818), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6816), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [163419] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6421), 1, + anon_sym_DASH_GT, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5085), 1, + sym_trailing_return_type, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6704), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [163477] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4784), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5980), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163543] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4770), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5930), 1, + sym_init_declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163609] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4263), 1, + sym_parameter_list, + STATE(5329), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6708), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [163664] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5342), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163727] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5421), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163790] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6824), 1, + anon_sym_DASH_GT, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + STATE(5315), 1, + sym_trailing_return_type, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6704), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [163845] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(5029), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [163900] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5305), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [163963] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_LT, + STATE(4355), 1, + sym_template_argument_list, + ACTIONS(4041), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3534), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164004] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_LT, + STATE(4355), 1, + sym_template_argument_list, + ACTIONS(3679), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3684), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164045] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(5441), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [164100] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6824), 1, + anon_sym_DASH_GT, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5156), 1, + sym_requires_clause, + STATE(5325), 1, + sym_trailing_return_type, + STATE(4257), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6694), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164155] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4264), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6834), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3931), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(3929), 15, + anon_sym_AMP, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [164194] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6824), 1, + anon_sym_DASH_GT, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5125), 1, + sym_requires_clause, + STATE(5318), 1, + sym_trailing_return_type, + STATE(4304), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6690), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164249] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(2852), 1, + sym_decltype_auto, + STATE(4395), 1, + sym_parameter_list, + STATE(5499), 1, + sym__abstract_declarator, + ACTIONS(6435), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4383), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164310] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5430), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164373] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5199), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6845), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6843), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [164471] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5203), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164534] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5367), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164597] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5344), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164660] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4263), 1, + sym_parameter_list, + STATE(5314), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5348), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 1, + anon_sym_LPAREN2, + ACTIONS(6851), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6847), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [164752] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5188), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164815] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(5066), 1, + sym_auto, + ACTIONS(5068), 1, + anon_sym_decltype, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(2852), 1, + sym_decltype_auto, + STATE(4395), 1, + sym_parameter_list, + STATE(5509), 1, + sym__abstract_declarator, + ACTIONS(6473), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4385), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164876] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5378), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164939] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4263), 1, + sym_parameter_list, + STATE(5332), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164994] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6853), 1, + sym_identifier, + ACTIONS(6857), 1, + sym_primitive_type, + STATE(4264), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3946), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(3948), 13, + anon_sym_AMP, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [165037] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4263), 1, + sym_parameter_list, + STATE(5335), 1, + sym__abstract_declarator, + STATE(4273), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4700), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165092] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + ACTIONS(4187), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4185), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [165133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6859), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [165168] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + ACTIONS(4041), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3534), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [165209] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5319), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165272] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5393), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + ACTIONS(3679), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3684), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [165376] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5387), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165439] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5376), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165502] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(5007), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [165557] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4390), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(6872), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4290), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6869), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6867), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(6865), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [165600] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5223), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6877), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6875), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [165698] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(5443), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [165753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6881), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6879), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [165788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6885), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6883), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [165823] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5391), 1, + anon_sym_STAR, + ACTIONS(5393), 1, + anon_sym_AMP_AMP, + ACTIONS(5395), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5161), 1, + sym__declarator, + STATE(7219), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165886] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5209), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165949] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(5008), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [166004] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5192), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6889), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6887), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [166102] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5403), 1, + anon_sym_STAR, + ACTIONS(5405), 1, + anon_sym_AMP_AMP, + ACTIONS(5407), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5095), 1, + sym__declarator, + STATE(7048), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166165] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4698), 1, + sym_identifier, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5399), 1, + anon_sym_AMP_AMP, + ACTIONS(5401), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5140), 1, + sym__declarator, + STATE(6665), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166228] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1603), 1, + anon_sym_STAR, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4992), 1, + sym__scope_resolution, + STATE(5446), 1, + sym__declarator, + STATE(6985), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166291] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6824), 1, + anon_sym_DASH_GT, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + STATE(5328), 1, + sym_trailing_return_type, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6700), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166346] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(5444), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [166401] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5201), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166464] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5379), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166527] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_STAR, + ACTIONS(5377), 1, + anon_sym_AMP_AMP, + ACTIONS(5379), 1, + anon_sym_AMP, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + STATE(4962), 1, + sym__scope_resolution, + STATE(5176), 1, + sym__declarator, + STATE(6725), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6893), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6891), 24, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [166625] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1599), 1, + anon_sym_LPAREN2, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4207), 1, + sym_identifier, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(5383), 1, + anon_sym_LBRACK, + ACTIONS(5385), 1, + anon_sym_STAR, + ACTIONS(5387), 1, + anon_sym_AMP_AMP, + ACTIONS(5389), 1, + anon_sym_AMP, + STATE(4992), 1, + sym__scope_resolution, + STATE(5359), 1, + sym__declarator, + STATE(6734), 1, + sym_ms_based_modifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5152), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166688] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6895), 1, + anon_sym_DASH_GT, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + STATE(5429), 1, + sym_trailing_return_type, + ACTIONS(6704), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166742] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4537), 1, + sym_field_declaration_list, + STATE(5799), 1, + sym_virtual_specifier, + STATE(6347), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4000), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [166788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6901), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6795), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6793), 21, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [166824] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(5351), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6708), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166878] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(4339), 1, + sym_parameter_list, + STATE(5428), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166932] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(3679), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3684), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [166972] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(5347), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5348), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167026] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6895), 1, + anon_sym_DASH_GT, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5125), 1, + sym_requires_clause, + STATE(5434), 1, + sym_trailing_return_type, + ACTIONS(6690), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4346), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167080] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5348), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5348), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167134] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5409), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6708), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167188] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_field_declaration_list, + STATE(5662), 1, + sym_virtual_specifier, + STATE(6137), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3986), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167234] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(5374), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167288] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(4339), 1, + sym_parameter_list, + STATE(5426), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5348), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167342] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5337), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5348), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167396] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4555), 1, + sym_field_declaration_list, + STATE(5657), 1, + sym_virtual_specifier, + STATE(6132), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4007), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4505), 1, + sym_field_declaration_list, + STATE(5534), 1, + sym_virtual_specifier, + STATE(6156), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4011), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167488] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5340), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167542] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5243), 1, + sym_trailing_return_type, + ACTIONS(6694), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4333), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167598] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4551), 1, + sym_field_declaration_list, + STATE(5656), 1, + sym_virtual_specifier, + STATE(6126), 1, + sym_base_class_clause, + ACTIONS(3974), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3972), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167644] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5405), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167698] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5247), 1, + sym_trailing_return_type, + ACTIONS(6700), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167754] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6906), 1, + anon_sym_DASH_GT, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + STATE(5320), 1, + sym_trailing_return_type, + ACTIONS(6700), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167808] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5245), 1, + sym_trailing_return_type, + ACTIONS(6704), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167864] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6590), 1, + anon_sym_DASH_GT, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6692), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5244), 1, + sym_trailing_return_type, + ACTIONS(6690), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4331), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167920] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5247), 1, + sym_trailing_return_type, + ACTIONS(6700), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167976] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4507), 1, + sym_field_declaration_list, + STATE(5529), 1, + sym_virtual_specifier, + STATE(6154), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4015), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168022] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(5440), 1, + sym__abstract_declarator, + STATE(4317), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4700), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168076] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4514), 1, + sym_field_declaration_list, + STATE(5524), 1, + sym_virtual_specifier, + STATE(6151), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4019), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168122] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5243), 1, + sym_trailing_return_type, + ACTIONS(6694), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4344), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(4041), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3534), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [168218] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5350), 1, + sym__abstract_declarator, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6708), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168272] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5375), 1, + sym__abstract_declarator, + STATE(4319), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4700), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168326] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4543), 1, + sym_field_declaration_list, + STATE(5600), 1, + sym_virtual_specifier, + STATE(6122), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3982), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168372] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5245), 1, + sym_trailing_return_type, + ACTIONS(6704), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168428] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6895), 1, + anon_sym_DASH_GT, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5156), 1, + sym_requires_clause, + STATE(5436), 1, + sym_trailing_return_type, + ACTIONS(6694), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4311), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168482] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6895), 1, + anon_sym_DASH_GT, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + STATE(5423), 1, + sym_trailing_return_type, + ACTIONS(6700), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168536] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(4339), 1, + sym_parameter_list, + STATE(5425), 1, + sym__abstract_declarator, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6708), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168590] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6906), 1, + anon_sym_DASH_GT, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5125), 1, + sym_requires_clause, + STATE(5327), 1, + sym_trailing_return_type, + ACTIONS(6690), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4332), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168644] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4534), 1, + sym_field_declaration_list, + STATE(5737), 1, + sym_virtual_specifier, + STATE(6117), 1, + sym_base_class_clause, + ACTIONS(3980), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3990), 17, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168690] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6906), 1, + anon_sym_DASH_GT, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5156), 1, + sym_requires_clause, + STATE(5310), 1, + sym_trailing_return_type, + ACTIONS(6694), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4352), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168744] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5397), 1, + sym__abstract_declarator, + STATE(4324), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4700), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168798] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6906), 1, + anon_sym_DASH_GT, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + STATE(5331), 1, + sym_trailing_return_type, + ACTIONS(6704), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168852] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6594), 1, + anon_sym_DASH_GT, + ACTIONS(6692), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5244), 1, + sym_trailing_return_type, + ACTIONS(6690), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4335), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168908] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(4339), 1, + sym_parameter_list, + STATE(5432), 1, + sym__abstract_declarator, + STATE(4323), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4700), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6212), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3771), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3760), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169028] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + STATE(5485), 1, + sym_trailing_return_type, + ACTIONS(6700), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4224), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + anon_sym_COLON_COLON, + STATE(4358), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6910), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5006), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [169120] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_COLON, + STATE(3480), 1, + sym__enum_base_clause, + STATE(3484), 1, + sym_enumerator_list, + ACTIONS(4168), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4166), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [169161] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(6692), 1, + anon_sym_LBRACK, + STATE(5059), 1, + sym_requires_clause, + STATE(5482), 1, + sym_trailing_return_type, + ACTIONS(6690), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4357), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_COLON, + STATE(3484), 1, + sym_enumerator_list, + STATE(4417), 1, + sym__enum_base_clause, + ACTIONS(4168), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4166), 19, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169255] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(3523), 1, + sym__enum_base_clause, + ACTIONS(4162), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4160), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [169296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3746), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4086), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3738), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(4416), 1, + sym__enum_base_clause, + ACTIONS(4162), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4160), 19, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169436] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6704), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4224), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4069), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3742), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4088), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4086), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4094), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4092), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3752), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169660] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_AMP, + ACTIONS(6136), 1, + anon_sym_noexcept, + ACTIONS(6138), 1, + anon_sym_throw, + ACTIONS(6646), 1, + anon_sym_DASH_GT, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(6696), 1, + anon_sym_LBRACK, + STATE(5074), 1, + sym_requires_clause, + STATE(5481), 1, + sym_trailing_return_type, + ACTIONS(6694), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4367), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169715] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(4373), 1, + sym_parameter_list, + STATE(5464), 1, + sym__abstract_declarator, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6698), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169768] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(4373), 1, + sym_parameter_list, + STATE(5467), 1, + sym__abstract_declarator, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5348), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169821] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(4373), 1, + sym_parameter_list, + STATE(5461), 1, + sym__abstract_declarator, + STATE(4375), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4700), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3764), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(3795), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169940] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5700), 1, + anon_sym_const, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(4373), 1, + sym_parameter_list, + STATE(5468), 1, + sym__abstract_declarator, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6708), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6132), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6877), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6875), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170025] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6908), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5138), 1, + sym_requires_clause, + STATE(5331), 1, + sym_trailing_return_type, + ACTIONS(6704), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170077] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(4395), 1, + sym_parameter_list, + STATE(5501), 1, + sym__abstract_declarator, + ACTIONS(5348), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170129] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(4395), 1, + sym_parameter_list, + STATE(5502), 1, + sym__abstract_declarator, + ACTIONS(6708), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6917), 1, + anon_sym_LPAREN2, + ACTIONS(6851), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6847), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170215] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(4395), 1, + sym_parameter_list, + STATE(5497), 1, + sym__abstract_declarator, + ACTIONS(6698), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170267] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_const, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6922), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5008), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6845), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6843), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4086), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [170369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6797), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(6925), 18, + anon_sym_AMP, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [170433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6793), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170465] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(4395), 1, + sym_parameter_list, + STATE(5508), 1, + sym__abstract_declarator, + ACTIONS(4700), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4382), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170517] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5006), 5, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(6919), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5008), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + [170553] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6908), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5145), 1, + sym_requires_clause, + STATE(5320), 1, + sym_trailing_return_type, + ACTIONS(6700), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170605] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6908), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5156), 1, + sym_requires_clause, + STATE(5310), 1, + sym_trailing_return_type, + ACTIONS(6694), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4381), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170657] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 1, + anon_sym_const, + ACTIONS(5006), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4396), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6929), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5008), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6893), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6891), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6859), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170759] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 1, + anon_sym_const, + ACTIONS(6820), 1, + anon_sym_AMP_AMP, + ACTIONS(6822), 1, + anon_sym_AMP, + ACTIONS(6826), 1, + anon_sym_noexcept, + ACTIONS(6828), 1, + anon_sym_throw, + ACTIONS(6908), 1, + anon_sym_requires, + ACTIONS(6915), 1, + anon_sym_DASH_GT, + STATE(5125), 1, + sym_requires_clause, + STATE(5327), 1, + sym_trailing_return_type, + ACTIONS(6690), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4394), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6684), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6818), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6816), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6934), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(6932), 18, + anon_sym_AMP, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [170875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6881), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6879), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6885), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6883), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170939] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(6938), 1, + anon_sym_LPAREN2, + ACTIONS(6940), 1, + anon_sym_LBRACE, + ACTIONS(6944), 1, + anon_sym_requires, + STATE(1936), 1, + sym_template_type, + STATE(2839), 1, + sym_requirement_seq, + STATE(4777), 1, + sym_lambda_capture_specifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6463), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6942), 2, + sym_true, + sym_false, + STATE(2897), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [170996] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(6948), 1, + anon_sym_COLON, + STATE(2763), 1, + sym_enumerator_list, + STATE(4439), 1, + sym__enum_base_clause, + ACTIONS(4162), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4160), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [171035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6950), 1, + anon_sym_COLON, + STATE(4437), 1, + sym__enum_base_clause, + STATE(4502), 1, + sym_enumerator_list, + ACTIONS(4168), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4166), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171072] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACE, + ACTIONS(6960), 1, + anon_sym_requires, + STATE(1891), 1, + sym_template_type, + STATE(2498), 1, + sym_requirement_seq, + STATE(4764), 1, + sym_lambda_capture_specifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6250), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6958), 2, + sym_true, + sym_false, + STATE(2499), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [171129] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + ACTIONS(6962), 1, + anon_sym_SEMI, + ACTIONS(6964), 1, + anon_sym_EQ, + ACTIONS(6966), 1, + anon_sym_COLON, + STATE(4679), 1, + sym__field_declarator, + STATE(6908), 1, + sym_bitfield_clause, + STATE(6972), 1, + sym_initializer_list, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [171188] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3516), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [171225] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(6948), 1, + anon_sym_COLON, + STATE(2812), 1, + sym_enumerator_list, + STATE(4431), 1, + sym__enum_base_clause, + ACTIONS(4168), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4166), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [171264] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_LT, + STATE(4355), 1, + sym_template_argument_list, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3516), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171301] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(3180), 1, + sym_enumerator_list, + STATE(4433), 1, + sym__enum_base_clause, + ACTIONS(4168), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4166), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [171340] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6425), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6429), 1, + anon_sym_EQ, + ACTIONS(6972), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4746), 1, + sym_ms_declspec_modifier, + STATE(4805), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6427), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3291), 2, + sym__class_name, + sym_qualified_type_identifier, + [171407] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + ACTIONS(6976), 1, + anon_sym_LPAREN2, + ACTIONS(6978), 1, + anon_sym_LBRACE, + ACTIONS(6982), 1, + anon_sym_requires, + STATE(2191), 1, + sym_template_type, + STATE(3110), 1, + sym_requirement_seq, + STATE(4765), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6570), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6980), 2, + sym_true, + sym_false, + STATE(3100), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [171464] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(6984), 1, + anon_sym_SEMI, + ACTIONS(6986), 1, + anon_sym_EQ, + STATE(4628), 1, + sym__field_declarator, + STATE(6994), 1, + sym_bitfield_clause, + STATE(6997), 1, + sym_initializer_list, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [171523] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3475), 1, + sym_enumerator_list, + ACTIONS(4229), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4227), 19, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171556] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3459), 1, + sym_enumerator_list, + ACTIONS(4197), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4195), 19, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171589] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6950), 1, + anon_sym_COLON, + STATE(4430), 1, + sym__enum_base_clause, + STATE(4530), 1, + sym_enumerator_list, + ACTIONS(4162), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4160), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171626] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6990), 1, + anon_sym_LPAREN2, + ACTIONS(6992), 1, + anon_sym_LBRACE, + ACTIONS(6996), 1, + anon_sym_requires, + STATE(2422), 1, + sym_template_type, + STATE(3354), 1, + sym_requirement_seq, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6560), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(6994), 2, + sym_true, + sym_false, + STATE(3456), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [171683] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(3190), 1, + sym_enumerator_list, + STATE(4446), 1, + sym__enum_base_clause, + ACTIONS(4162), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4160), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [171722] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + ACTIONS(7000), 1, + anon_sym_LPAREN2, + ACTIONS(7002), 1, + anon_sym_LBRACE, + ACTIONS(7006), 1, + anon_sym_requires, + STATE(2776), 1, + sym_template_type, + STATE(3765), 1, + sym_requirement_seq, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6542), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7004), 2, + sym_true, + sym_false, + STATE(3960), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [171779] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7008), 1, + anon_sym_SEMI, + ACTIONS(7010), 1, + anon_sym_EQ, + STATE(4675), 1, + sym__field_declarator, + STATE(7054), 1, + sym_initializer_list, + STATE(7056), 1, + sym_bitfield_clause, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [171838] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + ACTIONS(7014), 1, + anon_sym_LPAREN2, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(7020), 1, + anon_sym_requires, + STATE(2152), 1, + sym_template_type, + STATE(3021), 1, + sym_requirement_seq, + STATE(4763), 1, + sym_lambda_capture_specifier, + STATE(5362), 1, + sym__scope_resolution, + STATE(6428), 1, + sym_requires_parameter_list, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7018), 2, + sym_true, + sym_false, + STATE(3007), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [171895] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7022), 1, + anon_sym_const, + ACTIONS(5006), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4424), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7025), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5008), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [171932] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(3516), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [171968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 1, + anon_sym_COLON, + STATE(3484), 1, + sym_enumerator_list, + STATE(4417), 1, + sym__enum_base_clause, + ACTIONS(4168), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4166), 16, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7030), 1, + anon_sym_LPAREN2, + STATE(4525), 1, + sym_preproc_argument_list, + ACTIONS(7032), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7028), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(4416), 1, + sym__enum_base_clause, + ACTIONS(4162), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4160), 16, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172074] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6686), 1, + sym_auto, + ACTIONS(6688), 1, + anon_sym_decltype, + STATE(4498), 1, + sym_decltype_auto, + ACTIONS(4225), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4223), 16, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_try, + anon_sym_requires, + [172109] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4549), 1, + sym_enumerator_list, + ACTIONS(4229), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4227), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6946), 1, + anon_sym_LBRACE, + STATE(2761), 1, + sym_enumerator_list, + ACTIONS(4197), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4195), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172173] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(5297), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [172216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_enumerator_list, + ACTIONS(4197), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4195), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [172249] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7036), 1, + anon_sym_RPAREN, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7046), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4445), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [172292] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7050), 1, + anon_sym_COMMA, + ACTIONS(7052), 1, + anon_sym_RPAREN, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7062), 1, + anon_sym_AMP_AMP, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + STATE(6094), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172378] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4532), 1, + sym_enumerator_list, + ACTIONS(4197), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4195), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172409] = 5, + ACTIONS(7028), 1, + anon_sym_LF, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + sym_comment, + STATE(4683), 1, + sym_preproc_argument_list, + ACTIONS(7032), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6946), 1, + anon_sym_LBRACE, + STATE(2723), 1, + sym_enumerator_list, + ACTIONS(4229), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4227), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172475] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7082), 1, + anon_sym_RPAREN, + ACTIONS(7084), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4435), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [172518] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(5277), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [172561] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(5293), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(4393), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2905), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [172604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7086), 1, + anon_sym_LBRACE, + STATE(4057), 1, + sym_enumerator_list, + STATE(4586), 1, + sym__enum_base_clause, + ACTIONS(4168), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4166), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + ACTIONS(4092), 1, + anon_sym_LBRACE, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [172672] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7050), 1, + anon_sym_COMMA, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7062), 1, + anon_sym_AMP_AMP, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7088), 1, + anon_sym_RPAREN, + STATE(6045), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6968), 1, + anon_sym_LBRACE, + STATE(3206), 1, + sym_enumerator_list, + ACTIONS(4229), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4227), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [172760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7086), 1, + anon_sym_LBRACE, + STATE(4036), 1, + sym_enumerator_list, + STATE(4590), 1, + sym__enum_base_clause, + ACTIONS(4162), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4160), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [172795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4594), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [172823] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + STATE(3311), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7094), 2, + sym_true, + sym_false, + STATE(1916), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [172871] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + STATE(3311), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7098), 2, + sym_true, + sym_false, + STATE(5210), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [172919] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7102), 2, + sym_true, + sym_false, + STATE(3467), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [172967] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7104), 2, + sym_true, + sym_false, + STATE(3344), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173015] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7108), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7106), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173049] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7108), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7106), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [173085] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7108), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7106), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [173125] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + ACTIONS(7110), 1, + sym_identifier, + ACTIONS(7112), 1, + anon_sym_COLON_COLON, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5336), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7114), 2, + sym_true, + sym_false, + STATE(5253), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173173] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + ACTIONS(7110), 1, + sym_identifier, + ACTIONS(7112), 1, + anon_sym_COLON_COLON, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5336), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7104), 2, + sym_true, + sym_false, + STATE(3344), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173221] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7108), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7106), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [173263] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7108), 1, + anon_sym_PIPE, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7106), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [173307] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7116), 1, + anon_sym_LPAREN2, + ACTIONS(7120), 1, + anon_sym_requires, + STATE(3311), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7118), 2, + sym_true, + sym_false, + STATE(5400), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173355] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7108), 1, + anon_sym_PIPE, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7106), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [173401] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7106), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [173447] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7116), 1, + anon_sym_LPAREN2, + ACTIONS(7120), 1, + anon_sym_requires, + STATE(3311), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7122), 2, + sym_true, + sym_false, + STATE(5084), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173495] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7062), 1, + anon_sym_AMP_AMP, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7106), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [173543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7108), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7106), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173571] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7108), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7106), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173603] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7126), 2, + sym_true, + sym_false, + STATE(4976), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7130), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7128), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7134), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7132), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173707] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7094), 2, + sym_true, + sym_false, + STATE(1916), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173755] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7136), 2, + sym_true, + sym_false, + STATE(4977), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173803] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + ACTIONS(7006), 1, + anon_sym_requires, + ACTIONS(7138), 1, + anon_sym_LPAREN2, + STATE(2776), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7140), 2, + sym_true, + sym_false, + STATE(3773), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173851] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7152), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4651), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [173891] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + ACTIONS(7006), 1, + anon_sym_requires, + ACTIONS(7138), 1, + anon_sym_LPAREN2, + STATE(2776), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7156), 2, + sym_true, + sym_false, + STATE(3841), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173939] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + ACTIONS(7158), 1, + sym_identifier, + ACTIONS(7160), 1, + anon_sym_COLON_COLON, + STATE(2956), 1, + sym_template_type, + STATE(4785), 1, + sym_lambda_capture_specifier, + STATE(5383), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7162), 2, + sym_true, + sym_false, + STATE(2961), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173987] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(7164), 1, + sym_identifier, + ACTIONS(7166), 1, + anon_sym_LPAREN2, + ACTIONS(7170), 1, + anon_sym_requires, + STATE(4371), 1, + sym_template_type, + STATE(4782), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7168), 2, + sym_true, + sym_false, + STATE(5227), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174035] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + ACTIONS(6982), 1, + anon_sym_requires, + ACTIONS(7172), 1, + anon_sym_LPAREN2, + STATE(2191), 1, + sym_template_type, + STATE(4765), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7174), 2, + sym_true, + sym_false, + STATE(3124), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174083] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + ACTIONS(6982), 1, + anon_sym_requires, + ACTIONS(7172), 1, + anon_sym_LPAREN2, + STATE(2191), 1, + sym_template_type, + STATE(4765), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7176), 2, + sym_true, + sym_false, + STATE(3123), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7180), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7178), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [174159] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(7116), 1, + anon_sym_LPAREN2, + ACTIONS(7120), 1, + anon_sym_requires, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7182), 2, + sym_true, + sym_false, + STATE(5022), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7186), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7184), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [174235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4324), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174263] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7116), 1, + anon_sym_LPAREN2, + ACTIONS(7120), 1, + anon_sym_requires, + STATE(3311), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7188), 2, + sym_true, + sym_false, + STATE(5355), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7192), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7190), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [174339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4092), 1, + anon_sym_LBRACE, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [174369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4256), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174397] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(6944), 1, + anon_sym_requires, + ACTIONS(7194), 1, + anon_sym_LPAREN2, + STATE(1936), 1, + sym_template_type, + STATE(4777), 1, + sym_lambda_capture_specifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7196), 2, + sym_true, + sym_false, + STATE(2819), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4502), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4506), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174557] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7104), 2, + sym_true, + sym_false, + STATE(3344), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174605] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7200), 2, + sym_true, + sym_false, + STATE(5338), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174653] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7006), 1, + anon_sym_requires, + ACTIONS(7138), 1, + anon_sym_LPAREN2, + ACTIONS(7202), 1, + sym_identifier, + ACTIONS(7204), 1, + anon_sym_COLON_COLON, + STATE(2776), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5345), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7206), 2, + sym_true, + sym_false, + STATE(5309), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174701] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7208), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4688), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [174741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4510), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4516), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4514), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4602), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4598), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4288), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4449), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4284), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4280), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4276), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4320), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175021] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7210), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4619), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4328), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4332), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175117] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7212), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4588), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175157] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7214), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4453), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175197] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7216), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4454), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175237] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7218), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4455), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175277] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7220), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4458), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4336), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175345] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7222), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4459), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4726), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [175413] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7224), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4461), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175453] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7226), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4462), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175493] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7228), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4464), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175533] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7230), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4465), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175573] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7232), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4466), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7236), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7234), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [175641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7240), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7238), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [175669] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7242), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4612), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [175709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7246), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7244), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [175737] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + ACTIONS(7020), 1, + anon_sym_requires, + ACTIONS(7248), 1, + anon_sym_LPAREN2, + STATE(2152), 1, + sym_template_type, + STATE(4763), 1, + sym_lambda_capture_specifier, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7250), 2, + sym_true, + sym_false, + STATE(3020), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [175785] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + ACTIONS(7020), 1, + anon_sym_requires, + ACTIONS(7248), 1, + anon_sym_LPAREN2, + STATE(2152), 1, + sym_template_type, + STATE(4763), 1, + sym_lambda_capture_specifier, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7252), 2, + sym_true, + sym_false, + STATE(2981), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [175833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4484), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175861] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6439), 1, + anon_sym_STAR, + ACTIONS(6441), 1, + anon_sym_AMP_AMP, + ACTIONS(6443), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_LBRACK, + STATE(4155), 1, + sym_parameter_list, + STATE(5117), 1, + sym__abstract_declarator, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5712), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [175903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4478), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4476), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4500), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4498), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4379), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4374), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4372), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4614), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4610), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4574), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4570), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176127] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(7116), 1, + anon_sym_LPAREN2, + ACTIONS(7120), 1, + anon_sym_requires, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7122), 2, + sym_true, + sym_false, + STATE(5084), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [176175] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(7116), 1, + anon_sym_LPAREN2, + ACTIONS(7120), 1, + anon_sym_requires, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7254), 2, + sym_true, + sym_false, + STATE(5002), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [176223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4534), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176251] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7256), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4614), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [176291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4494), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4472), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4464), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4441), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4488), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4482), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4480), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4606), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4244), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4590), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4586), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4582), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4578), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4566), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4560), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4558), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4556), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4554), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176711] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + ACTIONS(7158), 1, + sym_identifier, + ACTIONS(7160), 1, + anon_sym_COLON_COLON, + STATE(2956), 1, + sym_template_type, + STATE(4785), 1, + sym_lambda_capture_specifier, + STATE(5383), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7258), 2, + sym_true, + sym_false, + STATE(2940), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [176759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4550), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176787] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6948), 1, + anon_sym_COLON, + STATE(2643), 1, + sym__enum_base_clause, + STATE(2763), 1, + sym_enumerator_list, + ACTIONS(4162), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4160), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [176821] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6948), 1, + anon_sym_COLON, + STATE(2662), 1, + sym__enum_base_clause, + STATE(2812), 1, + sym_enumerator_list, + ACTIONS(4168), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4166), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [176855] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7260), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4693), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [176895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4546), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4542), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4520), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4518), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4419), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4415), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4411), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4407), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4403), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4399), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177147] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7262), 2, + sym_true, + sym_false, + STATE(5394), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4395), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4391), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177251] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7264), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4650), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4387), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4383), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4316), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177375] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7266), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4660), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4312), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4300), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4445), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177499] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7268), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4522), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177539] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(7164), 1, + sym_identifier, + ACTIONS(7166), 1, + anon_sym_LPAREN2, + ACTIONS(7170), 1, + anon_sym_requires, + STATE(4371), 1, + sym_template_type, + STATE(4782), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7270), 2, + sym_true, + sym_false, + STATE(5290), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177587] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + STATE(3311), 1, + sym_template_type, + STATE(4773), 1, + sym_lambda_capture_specifier, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7272), 2, + sym_true, + sym_false, + STATE(5186), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177635] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(7164), 1, + sym_identifier, + ACTIONS(7166), 1, + anon_sym_LPAREN2, + ACTIONS(7170), 1, + anon_sym_requires, + STATE(4371), 1, + sym_template_type, + STATE(4782), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7274), 2, + sym_true, + sym_false, + STATE(5267), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177683] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7086), 1, + anon_sym_LBRACE, + STATE(4060), 1, + sym_enumerator_list, + ACTIONS(4197), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4195), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [177715] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7006), 1, + anon_sym_requires, + ACTIONS(7138), 1, + anon_sym_LPAREN2, + ACTIONS(7202), 1, + sym_identifier, + ACTIONS(7204), 1, + anon_sym_COLON_COLON, + STATE(2776), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5345), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7276), 2, + sym_true, + sym_false, + STATE(5316), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177763] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7062), 1, + anon_sym_AMP_AMP, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7278), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [177813] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7006), 1, + anon_sym_requires, + ACTIONS(7138), 1, + anon_sym_LPAREN2, + ACTIONS(7202), 1, + sym_identifier, + ACTIONS(7204), 1, + anon_sym_COLON_COLON, + STATE(2776), 1, + sym_template_type, + STATE(4769), 1, + sym_lambda_capture_specifier, + STATE(5345), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7140), 2, + sym_true, + sym_false, + STATE(3773), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177861] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7086), 1, + anon_sym_LBRACE, + STATE(3998), 1, + sym_enumerator_list, + ACTIONS(4229), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4227), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [177893] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7280), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4640), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177933] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(6944), 1, + anon_sym_requires, + ACTIONS(7194), 1, + anon_sym_LPAREN2, + STATE(1936), 1, + sym_template_type, + STATE(4777), 1, + sym_lambda_capture_specifier, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7282), 2, + sym_true, + sym_false, + STATE(2820), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177981] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7284), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4638), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178021] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7286), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4682), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178061] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7288), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4635), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178101] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7290), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4672), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178141] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7292), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4642), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178181] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(7092), 1, + anon_sym_LPAREN2, + ACTIONS(7096), 1, + anon_sym_requires, + ACTIONS(7158), 1, + sym_identifier, + ACTIONS(7160), 1, + anon_sym_COLON_COLON, + STATE(2956), 1, + sym_template_type, + STATE(4785), 1, + sym_lambda_capture_specifier, + STATE(5383), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7094), 2, + sym_true, + sym_false, + STATE(1916), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178229] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7294), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4634), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178269] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + anon_sym_requires, + ACTIONS(7100), 1, + anon_sym_LPAREN2, + ACTIONS(7110), 1, + sym_identifier, + ACTIONS(7112), 1, + anon_sym_COLON_COLON, + STATE(2422), 1, + sym_template_type, + STATE(4775), 1, + sym_lambda_capture_specifier, + STATE(5336), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7296), 2, + sym_true, + sym_false, + STATE(5292), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178317] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(6960), 1, + anon_sym_requires, + ACTIONS(7298), 1, + anon_sym_LPAREN2, + STATE(1891), 1, + sym_template_type, + STATE(4764), 1, + sym_lambda_capture_specifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7300), 2, + sym_true, + sym_false, + STATE(2510), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178365] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(6960), 1, + anon_sym_requires, + ACTIONS(7298), 1, + anon_sym_LPAREN2, + STATE(1891), 1, + sym_template_type, + STATE(4764), 1, + sym_lambda_capture_specifier, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7302), 2, + sym_true, + sym_false, + STATE(2509), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178413] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7304), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4632), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178453] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7034), 1, + sym_identifier, + ACTIONS(7038), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_defined, + ACTIONS(7306), 1, + sym_number_literal, + ACTIONS(7042), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7044), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7048), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4627), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178493] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7308), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4631), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178533] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7310), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4624), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178573] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7312), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4621), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178613] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7314), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4615), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LPAREN2, + ACTIONS(7146), 1, + anon_sym_defined, + ACTIONS(7316), 1, + sym_number_literal, + ACTIONS(7148), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7150), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7154), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4616), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178693] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3994), 1, + sym_field_declaration_list, + STATE(4725), 1, + sym_ms_declspec_modifier, + STATE(4865), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5533), 1, + sym_virtual_specifier, + STATE(6563), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3487), 2, + sym__class_name, + sym_qualified_type_identifier, + [178750] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4706), 1, + sym_ms_declspec_modifier, + STATE(4811), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3548), 2, + sym__class_name, + sym_qualified_type_identifier, + [178807] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7318), 1, + anon_sym_LF, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [178852] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2653), 1, + sym_field_declaration_list, + STATE(4711), 1, + sym_ms_declspec_modifier, + STATE(4827), 1, + sym_attribute_declaration, + STATE(5362), 1, + sym__scope_resolution, + STATE(5678), 1, + sym_virtual_specifier, + STATE(6224), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1915), 2, + sym__class_name, + sym_qualified_type_identifier, + [178909] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7340), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [178954] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7342), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [178999] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7108), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [179030] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2654), 1, + sym_field_declaration_list, + STATE(4717), 1, + sym_ms_declspec_modifier, + STATE(4825), 1, + sym_attribute_declaration, + STATE(5362), 1, + sym__scope_resolution, + STATE(5684), 1, + sym_virtual_specifier, + STATE(6114), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1926), 2, + sym__class_name, + sym_qualified_type_identifier, + [179087] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3171), 1, + sym_field_declaration_list, + STATE(4727), 1, + sym_ms_declspec_modifier, + STATE(4853), 1, + sym_attribute_declaration, + STATE(5401), 1, + sym__scope_resolution, + STATE(5606), 1, + sym_virtual_specifier, + STATE(6443), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2528), 2, + sym__class_name, + sym_qualified_type_identifier, + [179144] = 6, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7108), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179177] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7184), 1, + anon_sym_LF, + ACTIONS(7186), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [179204] = 7, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7108), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [179239] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4741), 1, + sym_ms_declspec_modifier, + STATE(4861), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3574), 2, + sym__class_name, + sym_qualified_type_identifier, + [179296] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2655), 1, + sym_field_declaration_list, + STATE(4743), 1, + sym_ms_declspec_modifier, + STATE(4819), 1, + sym_attribute_declaration, + STATE(5362), 1, + sym__scope_resolution, + STATE(5687), 1, + sym_virtual_specifier, + STATE(6228), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1931), 2, + sym__class_name, + sym_qualified_type_identifier, + [179353] = 8, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7108), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [179390] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7190), 1, + anon_sym_LF, + ACTIONS(7192), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [179417] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4744), 1, + sym_ms_declspec_modifier, + STATE(4879), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3569), 2, + sym__class_name, + sym_qualified_type_identifier, + [179474] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7062), 1, + anon_sym_AMP_AMP, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_RPAREN, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [179523] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7350), 1, + anon_sym_SEMI, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7356), 1, + anon_sym_EQ, + ACTIONS(7358), 1, + anon_sym_try, + STATE(2073), 1, + sym_try_statement, + STATE(2074), 1, + sym_delete_method_clause, + STATE(2076), 1, + sym_default_method_clause, + STATE(2081), 1, + sym_compound_statement, + STATE(4071), 1, + sym_parameter_list, + STATE(5308), 1, + aux_sym_field_declaration_repeat1, + STATE(7150), 1, + sym_bitfield_clause, + STATE(7153), 1, + sym_initializer_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [179582] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4713), 1, + sym_ms_declspec_modifier, + STATE(4887), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3542), 2, + sym__class_name, + sym_qualified_type_identifier, + [179639] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4719), 1, + sym_ms_declspec_modifier, + STATE(4803), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3300), 2, + sym__class_name, + sym_qualified_type_identifier, + [179696] = 9, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7108), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179735] = 10, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7108), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179776] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4713), 1, + sym_ms_declspec_modifier, + STATE(4887), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3575), 2, + sym__class_name, + sym_qualified_type_identifier, + [179833] = 11, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7108), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179876] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179921] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4744), 1, + sym_ms_declspec_modifier, + STATE(4879), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3579), 2, + sym__class_name, + sym_qualified_type_identifier, + [179978] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4741), 1, + sym_ms_declspec_modifier, + STATE(4861), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3580), 2, + sym__class_name, + sym_qualified_type_identifier, + [180035] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7108), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180062] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4712), 1, + sym_ms_declspec_modifier, + STATE(4797), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3302), 2, + sym__class_name, + sym_qualified_type_identifier, + [180119] = 4, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7106), 1, + anon_sym_LF, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7108), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180148] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7178), 1, + anon_sym_LF, + ACTIONS(7180), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180175] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7360), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180220] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3170), 1, + sym_field_declaration_list, + STATE(4733), 1, + sym_ms_declspec_modifier, + STATE(4862), 1, + sym_attribute_declaration, + STATE(5401), 1, + sym__scope_resolution, + STATE(5604), 1, + sym_virtual_specifier, + STATE(6444), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2529), 2, + sym__class_name, + sym_qualified_type_identifier, + [180277] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4746), 1, + sym_ms_declspec_modifier, + STATE(4805), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3291), 2, + sym__class_name, + sym_qualified_type_identifier, + [180334] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4713), 1, + sym_ms_declspec_modifier, + STATE(4887), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3300), 2, + sym__class_name, + sym_qualified_type_identifier, + [180391] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4744), 1, + sym_ms_declspec_modifier, + STATE(4879), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3302), 2, + sym__class_name, + sym_qualified_type_identifier, + [180448] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2862), 1, + sym_field_declaration_list, + STATE(4724), 1, + sym_ms_declspec_modifier, + STATE(4859), 1, + sym_attribute_declaration, + STATE(5389), 1, + sym__scope_resolution, + STATE(5716), 1, + sym_virtual_specifier, + STATE(6508), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2125), 2, + sym__class_name, + sym_qualified_type_identifier, + [180505] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4741), 1, + sym_ms_declspec_modifier, + STATE(4861), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3291), 2, + sym__class_name, + sym_qualified_type_identifier, + [180562] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7128), 1, + anon_sym_LF, + ACTIONS(7130), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180589] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7362), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180634] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7364), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180679] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2863), 1, + sym_field_declaration_list, + STATE(4736), 1, + sym_ms_declspec_modifier, + STATE(4863), 1, + sym_attribute_declaration, + STATE(5389), 1, + sym__scope_resolution, + STATE(5527), 1, + sym_virtual_specifier, + STATE(6488), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2122), 2, + sym__class_name, + sym_qualified_type_identifier, + [180736] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4713), 1, + sym_ms_declspec_modifier, + STATE(4887), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3541), 2, + sym__class_name, + sym_qualified_type_identifier, + [180793] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3995), 1, + sym_field_declaration_list, + STATE(4739), 1, + sym_ms_declspec_modifier, + STATE(4877), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5537), 1, + sym_virtual_specifier, + STATE(6489), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3490), 2, + sym__class_name, + sym_qualified_type_identifier, + [180850] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3996), 1, + sym_field_declaration_list, + STATE(4732), 1, + sym_ms_declspec_modifier, + STATE(4793), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5538), 1, + sym_virtual_specifier, + STATE(6565), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3498), 2, + sym__class_name, + sym_qualified_type_identifier, + [180907] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7132), 1, + anon_sym_LF, + ACTIONS(7134), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180934] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4744), 1, + sym_ms_declspec_modifier, + STATE(4879), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3561), 2, + sym__class_name, + sym_qualified_type_identifier, + [180991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7366), 1, + anon_sym_LPAREN2, + STATE(3052), 1, + sym_argument_list, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [181022] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3172), 1, + sym_field_declaration_list, + STATE(4723), 1, + sym_ms_declspec_modifier, + STATE(4852), 1, + sym_attribute_declaration, + STATE(5401), 1, + sym__scope_resolution, + STATE(5608), 1, + sym_virtual_specifier, + STATE(6440), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2525), 2, + sym__class_name, + sym_qualified_type_identifier, + [181079] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7369), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [181124] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2840), 1, + sym_field_declaration_list, + STATE(4703), 1, + sym_ms_declspec_modifier, + STATE(4867), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5558), 1, + sym_virtual_specifier, + STATE(6232), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1973), 2, + sym__class_name, + sym_qualified_type_identifier, + [181181] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2864), 1, + sym_field_declaration_list, + STATE(4738), 1, + sym_ms_declspec_modifier, + STATE(4868), 1, + sym_attribute_declaration, + STATE(5389), 1, + sym__scope_resolution, + STATE(5550), 1, + sym_virtual_specifier, + STATE(6474), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2117), 2, + sym__class_name, + sym_qualified_type_identifier, + [181238] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4741), 1, + sym_ms_declspec_modifier, + STATE(4861), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3562), 2, + sym__class_name, + sym_qualified_type_identifier, + [181295] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4497), 1, + sym_field_declaration_list, + STATE(4708), 1, + sym_ms_declspec_modifier, + STATE(4840), 1, + sym_attribute_declaration, + STATE(5354), 1, + sym__scope_resolution, + STATE(5560), 1, + sym_virtual_specifier, + STATE(6162), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4338), 2, + sym__class_name, + sym_qualified_type_identifier, + [181352] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2862), 1, + sym_field_declaration_list, + STATE(4740), 1, + sym_ms_declspec_modifier, + STATE(4845), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5716), 1, + sym_virtual_specifier, + STATE(6508), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2125), 2, + sym__class_name, + sym_qualified_type_identifier, + [181409] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2864), 1, + sym_field_declaration_list, + STATE(4716), 1, + sym_ms_declspec_modifier, + STATE(4824), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5550), 1, + sym_virtual_specifier, + STATE(6474), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2117), 2, + sym__class_name, + sym_qualified_type_identifier, + [181466] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4714), 1, + sym_ms_declspec_modifier, + STATE(4804), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3550), 2, + sym__class_name, + sym_qualified_type_identifier, + [181523] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4496), 1, + sym_field_declaration_list, + STATE(4715), 1, + sym_ms_declspec_modifier, + STATE(4849), 1, + sym_attribute_declaration, + STATE(5354), 1, + sym__scope_resolution, + STATE(5561), 1, + sym_virtual_specifier, + STATE(6163), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4336), 2, + sym__class_name, + sym_qualified_type_identifier, + [181580] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2715), 1, + sym_field_declaration_list, + STATE(4748), 1, + sym_ms_declspec_modifier, + STATE(4871), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5557), 1, + sym_virtual_specifier, + STATE(6230), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1975), 2, + sym__class_name, + sym_qualified_type_identifier, + [181637] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4710), 1, + sym_ms_declspec_modifier, + STATE(4794), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3548), 2, + sym__class_name, + sym_qualified_type_identifier, + [181694] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4709), 1, + sym_ms_declspec_modifier, + STATE(4798), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3545), 2, + sym__class_name, + sym_qualified_type_identifier, + [181751] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7234), 1, + anon_sym_LF, + ACTIONS(7236), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [181778] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4491), 1, + sym_field_declaration_list, + STATE(4734), 1, + sym_ms_declspec_modifier, + STATE(4857), 1, + sym_attribute_declaration, + STATE(5354), 1, + sym__scope_resolution, + STATE(5562), 1, + sym_virtual_specifier, + STATE(6165), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4326), 2, + sym__class_name, + sym_qualified_type_identifier, + [181835] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7240), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [181862] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7371), 1, + anon_sym_SEMI, + ACTIONS(7373), 1, + anon_sym_LBRACE, + ACTIONS(7375), 1, + anon_sym_EQ, + ACTIONS(7377), 1, + anon_sym_try, + STATE(2277), 1, + sym_compound_statement, + STATE(2279), 1, + sym_default_method_clause, + STATE(2282), 1, + sym_delete_method_clause, + STATE(2285), 1, + sym_try_statement, + STATE(4071), 1, + sym_parameter_list, + STATE(5333), 1, + aux_sym_field_declaration_repeat1, + STATE(6639), 1, + sym_bitfield_clause, + STATE(6647), 1, + sym_initializer_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [181921] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2811), 1, + sym_field_declaration_list, + STATE(4751), 1, + sym_ms_declspec_modifier, + STATE(4872), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5554), 1, + sym_virtual_specifier, + STATE(6229), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1977), 2, + sym__class_name, + sym_qualified_type_identifier, + [181978] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2863), 1, + sym_field_declaration_list, + STATE(4747), 1, + sym_ms_declspec_modifier, + STATE(4834), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5527), 1, + sym_virtual_specifier, + STATE(6488), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2122), 2, + sym__class_name, + sym_qualified_type_identifier, + [182035] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4737), 1, + sym_ms_declspec_modifier, + STATE(4796), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4964), 2, + sym__class_name, + sym_qualified_type_identifier, + [182092] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7381), 1, + anon_sym_SEMI, + ACTIONS(7383), 1, + anon_sym_LBRACE, + ACTIONS(7385), 1, + anon_sym_EQ, + ACTIONS(7387), 1, + anon_sym_try, + STATE(2206), 1, + sym_default_method_clause, + STATE(2391), 1, + sym_compound_statement, + STATE(2393), 1, + sym_delete_method_clause, + STATE(2394), 1, + sym_try_statement, + STATE(4071), 1, + sym_parameter_list, + STATE(5326), 1, + aux_sym_field_declaration_repeat1, + STATE(6916), 1, + sym_initializer_list, + STATE(6918), 1, + sym_bitfield_clause, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [182151] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3532), 1, + sym_field_declaration_list, + STATE(4750), 1, + sym_ms_declspec_modifier, + STATE(4881), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5693), 1, + sym_virtual_specifier, + STATE(6505), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4966), 2, + sym__class_name, + sym_qualified_type_identifier, + [182208] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4721), 1, + sym_ms_declspec_modifier, + STATE(4856), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4968), 2, + sym__class_name, + sym_qualified_type_identifier, + [182265] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7058), 1, + anon_sym_SLASH, + ACTIONS(7060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7062), 1, + anon_sym_AMP_AMP, + ACTIONS(7064), 1, + anon_sym_PIPE, + ACTIONS(7066), 1, + anon_sym_CARET, + ACTIONS(7068), 1, + anon_sym_AMP, + ACTIONS(7389), 1, + anon_sym_RPAREN, + ACTIONS(7054), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7056), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7070), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7072), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7074), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7076), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [182314] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7244), 1, + anon_sym_LF, + ACTIONS(7246), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [182341] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3172), 1, + sym_field_declaration_list, + STATE(4753), 1, + sym_ms_declspec_modifier, + STATE(4807), 1, + sym_attribute_declaration, + STATE(5420), 1, + sym__scope_resolution, + STATE(5608), 1, + sym_virtual_specifier, + STATE(6440), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2525), 2, + sym__class_name, + sym_qualified_type_identifier, + [182398] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3994), 1, + sym_field_declaration_list, + STATE(4722), 1, + sym_ms_declspec_modifier, + STATE(4850), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5533), 1, + sym_virtual_specifier, + STATE(6563), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3487), 2, + sym__class_name, + sym_qualified_type_identifier, + [182455] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2236), 1, + sym_field_declaration_list, + STATE(4730), 1, + sym_ms_declspec_modifier, + STATE(4792), 1, + sym_attribute_declaration, + STATE(5349), 1, + sym__scope_resolution, + STATE(5773), 1, + sym_virtual_specifier, + STATE(6320), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1872), 2, + sym__class_name, + sym_qualified_type_identifier, + [182512] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3171), 1, + sym_field_declaration_list, + STATE(4705), 1, + sym_ms_declspec_modifier, + STATE(4802), 1, + sym_attribute_declaration, + STATE(5420), 1, + sym__scope_resolution, + STATE(5606), 1, + sym_virtual_specifier, + STATE(6443), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2528), 2, + sym__class_name, + sym_qualified_type_identifier, + [182569] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7393), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [182614] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3995), 1, + sym_field_declaration_list, + STATE(4718), 1, + sym_ms_declspec_modifier, + STATE(4842), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5537), 1, + sym_virtual_specifier, + STATE(6489), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3490), 2, + sym__class_name, + sym_qualified_type_identifier, + [182671] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3996), 1, + sym_field_declaration_list, + STATE(4707), 1, + sym_ms_declspec_modifier, + STATE(4838), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5538), 1, + sym_virtual_specifier, + STATE(6565), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3498), 2, + sym__class_name, + sym_qualified_type_identifier, + [182728] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2237), 1, + sym_field_declaration_list, + STATE(4728), 1, + sym_ms_declspec_modifier, + STATE(4810), 1, + sym_attribute_declaration, + STATE(5349), 1, + sym__scope_resolution, + STATE(5775), 1, + sym_virtual_specifier, + STATE(6319), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1866), 2, + sym__class_name, + sym_qualified_type_identifier, + [182785] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2238), 1, + sym_field_declaration_list, + STATE(4735), 1, + sym_ms_declspec_modifier, + STATE(4821), 1, + sym_attribute_declaration, + STATE(5349), 1, + sym__scope_resolution, + STATE(5777), 1, + sym_virtual_specifier, + STATE(6317), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1855), 2, + sym__class_name, + sym_qualified_type_identifier, + [182842] = 12, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(7324), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7326), 1, + anon_sym_AMP_AMP, + ACTIONS(7328), 1, + anon_sym_PIPE, + ACTIONS(7330), 1, + anon_sym_CARET, + ACTIONS(7332), 1, + anon_sym_AMP, + ACTIONS(7395), 1, + anon_sym_LF, + ACTIONS(7320), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7334), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7322), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7336), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [182887] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3465), 1, + sym_field_declaration_list, + STATE(4742), 1, + sym_ms_declspec_modifier, + STATE(4820), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5624), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3545), 2, + sym__class_name, + sym_qualified_type_identifier, + [182944] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3170), 1, + sym_field_declaration_list, + STATE(4704), 1, + sym_ms_declspec_modifier, + STATE(4800), 1, + sym_attribute_declaration, + STATE(5420), 1, + sym__scope_resolution, + STATE(5604), 1, + sym_virtual_specifier, + STATE(6444), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2529), 2, + sym__class_name, + sym_qualified_type_identifier, + [183001] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_AMP, + STATE(4208), 1, + sym_parameter_list, + STATE(5198), 1, + sym__abstract_declarator, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5712), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [183042] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2115), 1, + sym_field_declaration_list, + STATE(4754), 1, + sym_ms_declspec_modifier, + STATE(4809), 1, + sym_attribute_declaration, + STATE(5371), 1, + sym__scope_resolution, + STATE(5747), 1, + sym_virtual_specifier, + STATE(6537), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1852), 2, + sym__class_name, + sym_qualified_type_identifier, + [183099] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3533), 1, + sym_field_declaration_list, + STATE(4749), 1, + sym_ms_declspec_modifier, + STATE(4801), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5729), 1, + sym_virtual_specifier, + STATE(6466), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3550), 2, + sym__class_name, + sym_qualified_type_identifier, + [183156] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2113), 1, + sym_field_declaration_list, + STATE(4756), 1, + sym_ms_declspec_modifier, + STATE(4795), 1, + sym_attribute_declaration, + STATE(5371), 1, + sym__scope_resolution, + STATE(5749), 1, + sym_virtual_specifier, + STATE(6445), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1850), 2, + sym__class_name, + sym_qualified_type_identifier, + [183213] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4217), 1, + anon_sym___declspec, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2112), 1, + sym_field_declaration_list, + STATE(4745), 1, + sym_ms_declspec_modifier, + STATE(4806), 1, + sym_attribute_declaration, + STATE(5371), 1, + sym__scope_resolution, + STATE(5752), 1, + sym_virtual_specifier, + STATE(6442), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1849), 2, + sym__class_name, + sym_qualified_type_identifier, + [183270] = 3, + ACTIONS(4726), 1, + anon_sym_LF, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(4728), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [183297] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6652), 1, + anon_sym_STAR, + ACTIONS(6654), 1, + anon_sym_AMP_AMP, + ACTIONS(6656), 1, + anon_sym_AMP, + STATE(4217), 1, + sym_parameter_list, + STATE(5239), 1, + sym__abstract_declarator, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5712), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [183337] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2918), 1, + sym_field_declaration_list, + STATE(4855), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5619), 1, + sym_virtual_specifier, + STATE(6303), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1959), 2, + sym__class_name, + sym_qualified_type_identifier, + [183388] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3182), 1, + sym_field_declaration_list, + STATE(4813), 1, + sym_attribute_declaration, + STATE(5420), 1, + sym__scope_resolution, + STATE(5644), 1, + sym_virtual_specifier, + STATE(6410), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2507), 2, + sym__class_name, + sym_qualified_type_identifier, + [183439] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3184), 1, + sym_field_declaration_list, + STATE(4814), 1, + sym_attribute_declaration, + STATE(5420), 1, + sym__scope_resolution, + STATE(5648), 1, + sym_virtual_specifier, + STATE(6408), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2506), 2, + sym__class_name, + sym_qualified_type_identifier, + [183490] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(4828), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3547), 2, + sym__class_name, + sym_qualified_type_identifier, + [183541] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4048), 1, + sym_field_declaration_list, + STATE(4886), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5807), 1, + sym_virtual_specifier, + STATE(6533), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + [183592] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4508), 1, + sym_field_declaration_list, + STATE(4833), 1, + sym_attribute_declaration, + STATE(5354), 1, + sym__scope_resolution, + STATE(5528), 1, + sym_virtual_specifier, + STATE(6152), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4343), 2, + sym__class_name, + sym_qualified_type_identifier, + [183643] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(4875), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3551), 2, + sym__class_name, + sym_qualified_type_identifier, + [183694] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(4873), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3547), 2, + sym__class_name, + sym_qualified_type_identifier, + [183745] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2639), 1, + sym_field_declaration_list, + STATE(4846), 1, + sym_attribute_declaration, + STATE(5362), 1, + sym__scope_resolution, + STATE(5651), 1, + sym_virtual_specifier, + STATE(6213), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1939), 2, + sym__class_name, + sym_qualified_type_identifier, + [183796] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(4870), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3285), 2, + sym__class_name, + sym_qualified_type_identifier, + [183847] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(4799), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3294), 2, + sym__class_name, + sym_qualified_type_identifier, + [183898] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(4869), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3543), 2, + sym__class_name, + sym_qualified_type_identifier, + [183949] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4482), 1, + sym_field_declaration_list, + STATE(4836), 1, + sym_attribute_declaration, + STATE(5354), 1, + sym__scope_resolution, + STATE(5530), 1, + sym_virtual_specifier, + STATE(6155), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4312), 2, + sym__class_name, + sym_qualified_type_identifier, + [184000] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2809), 1, + sym_field_declaration_list, + STATE(4882), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5620), 1, + sym_virtual_specifier, + STATE(6405), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2070), 2, + sym__class_name, + sym_qualified_type_identifier, + [184051] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2641), 1, + sym_field_declaration_list, + STATE(4841), 1, + sym_attribute_declaration, + STATE(5362), 1, + sym__scope_resolution, + STATE(5660), 1, + sym_virtual_specifier, + STATE(6215), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1938), 2, + sym__class_name, + sym_qualified_type_identifier, + [184102] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4021), 1, + sym_field_declaration_list, + STATE(4888), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5802), 1, + sym_virtual_specifier, + STATE(6531), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3481), 2, + sym__class_name, + sym_qualified_type_identifier, + [184153] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(4874), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3294), 2, + sym__class_name, + sym_qualified_type_identifier, + [184204] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(5158), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [184245] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(4885), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4956), 2, + sym__class_name, + sym_qualified_type_identifier, + [184296] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4009), 1, + sym_field_declaration_list, + STATE(4818), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5776), 1, + sym_virtual_specifier, + STATE(6523), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3461), 2, + sym__class_name, + sym_qualified_type_identifier, + [184347] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3186), 1, + sym_field_declaration_list, + STATE(4839), 1, + sym_attribute_declaration, + STATE(5401), 1, + sym__scope_resolution, + STATE(5652), 1, + sym_virtual_specifier, + STATE(6406), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2505), 2, + sym__class_name, + sym_qualified_type_identifier, + [184398] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(4835), 1, + sym_attribute_declaration, + STATE(5389), 1, + sym__scope_resolution, + STATE(5735), 1, + sym_virtual_specifier, + STATE(6460), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2106), 2, + sym__class_name, + sym_qualified_type_identifier, + [184449] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4009), 1, + sym_field_declaration_list, + STATE(4851), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5776), 1, + sym_virtual_specifier, + STATE(6523), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3461), 2, + sym__class_name, + sym_qualified_type_identifier, + [184500] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4263), 1, + sym_parameter_list, + STATE(5322), 1, + sym__abstract_declarator, + ACTIONS(5712), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [184539] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3184), 1, + sym_field_declaration_list, + STATE(4847), 1, + sym_attribute_declaration, + STATE(5401), 1, + sym__scope_resolution, + STATE(5648), 1, + sym_virtual_specifier, + STATE(6408), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2506), 2, + sym__class_name, + sym_qualified_type_identifier, + [184590] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_declaration, + STATE(5349), 1, + sym__scope_resolution, + STATE(5810), 1, + sym_virtual_specifier, + STATE(6298), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1863), 2, + sym__class_name, + sym_qualified_type_identifier, + [184641] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6200), 1, + sym_identifier, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6204), 1, + anon_sym_STAR, + ACTIONS(6206), 1, + anon_sym_AMP_AMP, + ACTIONS(6208), 1, + anon_sym_AMP, + STATE(5082), 1, + sym__field_declarator, + STATE(7093), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [184682] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2404), 1, + sym_field_declaration_list, + STATE(4823), 1, + sym_attribute_declaration, + STATE(5349), 1, + sym__scope_resolution, + STATE(5806), 1, + sym_virtual_specifier, + STATE(6300), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1858), 2, + sym__class_name, + sym_qualified_type_identifier, + [184733] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(5416), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [184774] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4048), 1, + sym_field_declaration_list, + STATE(4876), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5807), 1, + sym_virtual_specifier, + STATE(6533), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + [184825] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3182), 1, + sym_field_declaration_list, + STATE(4848), 1, + sym_attribute_declaration, + STATE(5401), 1, + sym__scope_resolution, + STATE(5644), 1, + sym_virtual_specifier, + STATE(6410), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2507), 2, + sym__class_name, + sym_qualified_type_identifier, + [184876] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4504), 1, + sym_field_declaration_list, + STATE(4837), 1, + sym_attribute_declaration, + STATE(5354), 1, + sym__scope_resolution, + STATE(5543), 1, + sym_virtual_specifier, + STATE(6158), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4349), 2, + sym__class_name, + sym_qualified_type_identifier, + [184927] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2428), 1, + sym_field_declaration_list, + STATE(4830), 1, + sym_attribute_declaration, + STATE(5349), 1, + sym__scope_resolution, + STATE(5549), 1, + sym_virtual_specifier, + STATE(6296), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1874), 2, + sym__class_name, + sym_qualified_type_identifier, + [184978] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2806), 1, + sym_field_declaration_list, + STATE(4843), 1, + sym_attribute_declaration, + STATE(5389), 1, + sym__scope_resolution, + STATE(5705), 1, + sym_virtual_specifier, + STATE(6464), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2105), 2, + sym__class_name, + sym_qualified_type_identifier, + [185029] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(4858), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4947), 2, + sym__class_name, + sym_qualified_type_identifier, + [185080] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2809), 1, + sym_field_declaration_list, + STATE(4844), 1, + sym_attribute_declaration, + STATE(5389), 1, + sym__scope_resolution, + STATE(5620), 1, + sym_virtual_specifier, + STATE(6405), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2070), 2, + sym__class_name, + sym_qualified_type_identifier, + [185131] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4021), 1, + sym_field_declaration_list, + STATE(4864), 1, + sym_attribute_declaration, + STATE(5435), 1, + sym__scope_resolution, + STATE(5802), 1, + sym_virtual_specifier, + STATE(6531), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3481), 2, + sym__class_name, + sym_qualified_type_identifier, + [185182] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(4884), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5735), 1, + sym_virtual_specifier, + STATE(6460), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2106), 2, + sym__class_name, + sym_qualified_type_identifier, + [185233] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(4880), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3288), 2, + sym__class_name, + sym_qualified_type_identifier, + [185284] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(4832), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3551), 2, + sym__class_name, + sym_qualified_type_identifier, + [185335] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2644), 1, + sym_field_declaration_list, + STATE(4831), 1, + sym_attribute_declaration, + STATE(5362), 1, + sym__scope_resolution, + STATE(5668), 1, + sym_virtual_specifier, + STATE(6217), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1933), 2, + sym__class_name, + sym_qualified_type_identifier, + [185386] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(4854), 1, + sym_attribute_declaration, + STATE(5396), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3285), 2, + sym__class_name, + sym_qualified_type_identifier, + [185437] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2002), 1, + sym_field_declaration_list, + STATE(4816), 1, + sym_attribute_declaration, + STATE(5371), 1, + sym__scope_resolution, + STATE(5690), 1, + sym_virtual_specifier, + STATE(6495), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1843), 2, + sym__class_name, + sym_qualified_type_identifier, + [185488] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(4866), 1, + sym_attribute_declaration, + STATE(5385), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3288), 2, + sym__class_name, + sym_qualified_type_identifier, + [185539] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2806), 1, + sym_field_declaration_list, + STATE(4883), 1, + sym_attribute_declaration, + STATE(5445), 1, + sym__scope_resolution, + STATE(5705), 1, + sym_virtual_specifier, + STATE(6464), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2105), 2, + sym__class_name, + sym_qualified_type_identifier, + [185590] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2913), 1, + sym_field_declaration_list, + STATE(4791), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5591), 1, + sym_virtual_specifier, + STATE(6291), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1958), 2, + sym__class_name, + sym_qualified_type_identifier, + [185641] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(4826), 1, + sym_attribute_declaration, + STATE(5381), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3543), 2, + sym__class_name, + sym_qualified_type_identifier, + [185692] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(4878), 1, + sym_attribute_declaration, + STATE(5414), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4955), 2, + sym__class_name, + sym_qualified_type_identifier, + [185743] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2924), 1, + sym_field_declaration_list, + STATE(4860), 1, + sym_attribute_declaration, + STATE(5352), 1, + sym__scope_resolution, + STATE(5584), 1, + sym_virtual_specifier, + STATE(6327), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1968), 2, + sym__class_name, + sym_qualified_type_identifier, + [185794] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6232), 1, + anon_sym_LPAREN2, + STATE(2866), 1, + sym_argument_list, + ACTIONS(4203), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4201), 13, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + [185823] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3186), 1, + sym_field_declaration_list, + STATE(4815), 1, + sym_attribute_declaration, + STATE(5420), 1, + sym__scope_resolution, + STATE(5652), 1, + sym_virtual_specifier, + STATE(6406), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2505), 2, + sym__class_name, + sym_qualified_type_identifier, + [185874] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2020), 1, + sym_field_declaration_list, + STATE(4808), 1, + sym_attribute_declaration, + STATE(5371), 1, + sym__scope_resolution, + STATE(5677), 1, + sym_virtual_specifier, + STATE(6516), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1840), 2, + sym__class_name, + sym_qualified_type_identifier, + [185925] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6202), 1, + anon_sym_LPAREN2, + ACTIONS(6220), 1, + sym_identifier, + ACTIONS(6222), 1, + anon_sym_STAR, + ACTIONS(6224), 1, + anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_AMP, + STATE(5410), 1, + sym__field_declarator, + STATE(6912), 1, + sym_ms_based_modifier, + STATE(5173), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [185966] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2015), 1, + sym_field_declaration_list, + STATE(4817), 1, + sym_attribute_declaration, + STATE(5371), 1, + sym__scope_resolution, + STATE(5681), 1, + sym_virtual_specifier, + STATE(6514), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1845), 2, + sym__class_name, + sym_qualified_type_identifier, + [186017] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6781), 1, + anon_sym_STAR, + ACTIONS(6783), 1, + anon_sym_AMP_AMP, + ACTIONS(6785), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(5442), 1, + sym__abstract_declarator, + ACTIONS(5712), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186055] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7401), 1, + anon_sym_SEMI, + ACTIONS(7403), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7409), 1, + anon_sym_try, + STATE(1049), 1, + sym_compound_statement, + STATE(1050), 1, + sym_try_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(5819), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [186103] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7413), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_parameter_list, + STATE(4767), 1, + sym_template_parameter_list, + STATE(5010), 1, + sym_compound_statement, + STATE(5671), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186149] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7415), 1, + anon_sym_SEMI, + ACTIONS(7417), 1, + anon_sym_LBRACE, + ACTIONS(7419), 1, + anon_sym_try, + STATE(1017), 1, + sym_try_statement, + STATE(1020), 1, + sym_compound_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(6099), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [186197] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7421), 1, + anon_sym_SEMI, + ACTIONS(7423), 1, + anon_sym_LBRACE, + ACTIONS(7425), 1, + anon_sym_try, + STATE(984), 1, + sym_compound_statement, + STATE(986), 1, + sym_try_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(5817), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [186245] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7427), 1, + anon_sym_LBRACE, + ACTIONS(7429), 1, + anon_sym_requires, + STATE(2756), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4899), 1, + sym_requires_clause, + STATE(5625), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186291] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7431), 1, + anon_sym_LBRACE, + STATE(3012), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4786), 1, + sym_template_parameter_list, + STATE(5628), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186337] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7433), 1, + anon_sym_LBRACE, + STATE(2530), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4787), 1, + sym_template_parameter_list, + STATE(5574), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186383] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3104), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4772), 1, + sym_template_parameter_list, + STATE(5555), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186429] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(1905), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4896), 1, + sym_requires_clause, + STATE(5794), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186475] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_LBRACE, + ACTIONS(7429), 1, + anon_sym_requires, + STATE(4395), 1, + sym_parameter_list, + STATE(4928), 1, + sym_requires_clause, + STATE(5072), 1, + sym_compound_statement, + STATE(5639), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186521] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_STAR, + ACTIONS(6789), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 1, + anon_sym_AMP, + STATE(4345), 1, + sym_parameter_list, + STATE(5339), 1, + sym__abstract_declarator, + ACTIONS(5712), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186559] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7439), 1, + anon_sym_LBRACE, + STATE(3802), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4790), 1, + sym_template_parameter_list, + STATE(5594), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186605] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7383), 1, + anon_sym_LBRACE, + ACTIONS(7387), 1, + anon_sym_try, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7441), 1, + anon_sym_SEMI, + STATE(2351), 1, + sym_try_statement, + STATE(2353), 1, + sym_compound_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(5959), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [186653] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6746), 1, + anon_sym_STAR, + ACTIONS(6748), 1, + anon_sym_AMP_AMP, + ACTIONS(6750), 1, + anon_sym_AMP, + STATE(4339), 1, + sym_parameter_list, + STATE(5431), 1, + sym__abstract_declarator, + ACTIONS(5712), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186691] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3116), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4892), 1, + sym_requires_clause, + STATE(5743), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186737] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + STATE(1912), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4779), 1, + sym_template_parameter_list, + STATE(5552), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186783] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7445), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4774), 1, + sym__scope_resolution, + STATE(5708), 1, + sym_operator_cast, + STATE(5733), 1, + sym_qualified_operator_cast_identifier, + [186835] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7447), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4776), 1, + sym_template_parameter_list, + STATE(5683), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186881] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7447), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4938), 1, + sym_requires_clause, + STATE(5736), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186927] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7427), 1, + anon_sym_LBRACE, + STATE(2813), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4762), 1, + sym_template_parameter_list, + STATE(5726), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186973] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(1609), 1, + anon_sym_COLON_COLON, + ACTIONS(7449), 1, + sym_identifier, + ACTIONS(7451), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(3432), 1, + sym_qualified_type_identifier, + STATE(4778), 1, + sym__scope_resolution, + STATE(5708), 1, + sym_operator_cast, + STATE(5733), 1, + sym_qualified_operator_cast_identifier, + [187025] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + STATE(1905), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4910), 1, + sym_requires_clause, + STATE(5665), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187071] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4350), 1, + sym_parameter_list, + STATE(5402), 1, + sym__abstract_declarator, + ACTIONS(5712), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187109] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7453), 1, + sym_identifier, + ACTIONS(7455), 1, + anon_sym_TILDE, + ACTIONS(7457), 1, + anon_sym_COLON_COLON, + ACTIONS(7459), 1, + anon_sym_template, + ACTIONS(7461), 1, + anon_sym_operator, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4781), 1, + sym__scope_resolution, + STATE(5708), 1, + sym_operator_cast, + STATE(5733), 1, + sym_qualified_operator_cast_identifier, + [187161] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7463), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_parameter_list, + STATE(4783), 1, + sym_template_parameter_list, + STATE(5226), 1, + sym_compound_statement, + STATE(5727), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187207] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7463), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_parameter_list, + STATE(4918), 1, + sym_requires_clause, + STATE(5255), 1, + sym_compound_statement, + STATE(5778), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187253] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7373), 1, + anon_sym_LBRACE, + ACTIONS(7377), 1, + anon_sym_try, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7465), 1, + anon_sym_SEMI, + STATE(2258), 1, + sym_compound_statement, + STATE(2259), 1, + sym_try_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(5938), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [187301] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_LT, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(1912), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4766), 1, + sym_template_parameter_list, + STATE(5792), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187347] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7431), 1, + anon_sym_LBRACE, + STATE(3093), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4908), 1, + sym_requires_clause, + STATE(5680), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187393] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7433), 1, + anon_sym_LBRACE, + STATE(2532), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4919), 1, + sym_requires_clause, + STATE(5675), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187439] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7467), 1, + anon_sym_SEMI, + ACTIONS(7469), 1, + anon_sym_LBRACE, + ACTIONS(7471), 1, + anon_sym_try, + STATE(495), 1, + sym_compound_statement, + STATE(496), 1, + sym_try_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(5950), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [187487] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7358), 1, + anon_sym_try, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7473), 1, + anon_sym_SEMI, + STATE(2062), 1, + sym_try_statement, + STATE(2063), 1, + sym_compound_statement, + STATE(3828), 1, + sym_parameter_list, + STATE(5830), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [187535] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7429), 1, + anon_sym_requires, + ACTIONS(7439), 1, + anon_sym_LBRACE, + STATE(3739), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(4935), 1, + sym_requires_clause, + STATE(5685), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187581] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2900), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5709), 1, + sym_virtual_specifier, + STATE(6336), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1974), 2, + sym__class_name, + sym_qualified_type_identifier, + [187626] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2404), 1, + sym_field_declaration_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(5806), 1, + sym_virtual_specifier, + STATE(6300), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1858), 2, + sym__class_name, + sym_qualified_type_identifier, + [187671] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4048), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5807), 1, + sym_virtual_specifier, + STATE(6533), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + [187716] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3547), 2, + sym__class_name, + sym_qualified_type_identifier, + [187761] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2015), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(5681), 1, + sym_virtual_specifier, + STATE(6514), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1845), 2, + sym__class_name, + sym_qualified_type_identifier, + [187806] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4947), 2, + sym__class_name, + sym_qualified_type_identifier, + [187851] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3285), 2, + sym__class_name, + sym_qualified_type_identifier, + [187896] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3551), 2, + sym__class_name, + sym_qualified_type_identifier, + [187941] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3524), 1, + sym_field_declaration_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(5750), 1, + sym_virtual_specifier, + STATE(6326), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3292), 2, + sym__class_name, + sym_qualified_type_identifier, + [187986] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3182), 1, + sym_field_declaration_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(5644), 1, + sym_virtual_specifier, + STATE(6410), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2507), 2, + sym__class_name, + sym_qualified_type_identifier, + [188031] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3543), 2, + sym__class_name, + sym_qualified_type_identifier, + [188076] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3184), 1, + sym_field_declaration_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(5648), 1, + sym_virtual_specifier, + STATE(6408), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2506), 2, + sym__class_name, + sym_qualified_type_identifier, + [188121] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3294), 2, + sym__class_name, + sym_qualified_type_identifier, + [188166] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3543), 2, + sym__class_name, + sym_qualified_type_identifier, + [188211] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3288), 2, + sym__class_name, + sym_qualified_type_identifier, + [188256] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2002), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(5690), 1, + sym_virtual_specifier, + STATE(6495), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1843), 2, + sym__class_name, + sym_qualified_type_identifier, + [188301] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3186), 1, + sym_field_declaration_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(5652), 1, + sym_virtual_specifier, + STATE(6406), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2505), 2, + sym__class_name, + sym_qualified_type_identifier, + [188346] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2087), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(5592), 1, + sym_virtual_specifier, + STATE(6584), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1842), 2, + sym__class_name, + sym_qualified_type_identifier, + [188391] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2020), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(5677), 1, + sym_virtual_specifier, + STATE(6516), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1840), 2, + sym__class_name, + sym_qualified_type_identifier, + [188436] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2411), 1, + sym_field_declaration_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(5810), 1, + sym_virtual_specifier, + STATE(6298), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1863), 2, + sym__class_name, + sym_qualified_type_identifier, + [188481] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3547), 2, + sym__class_name, + sym_qualified_type_identifier, + [188526] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6437), 1, + anon_sym_LPAREN2, + ACTIONS(6445), 1, + anon_sym_LBRACK, + ACTIONS(6801), 1, + anon_sym_STAR, + ACTIONS(6803), 1, + anon_sym_AMP_AMP, + ACTIONS(6805), 1, + anon_sym_AMP, + STATE(4373), 1, + sym_parameter_list, + STATE(5463), 1, + sym__abstract_declarator, + ACTIONS(5712), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5038), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [188563] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3195), 1, + sym_field_declaration_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(5694), 1, + sym_virtual_specifier, + STATE(6380), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2475), 2, + sym__class_name, + sym_qualified_type_identifier, + [188608] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3198), 1, + sym_field_declaration_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(5699), 1, + sym_virtual_specifier, + STATE(6373), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2520), 2, + sym__class_name, + sym_qualified_type_identifier, + [188653] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3201), 1, + sym_field_declaration_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(5704), 1, + sym_virtual_specifier, + STATE(6370), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2481), 2, + sym__class_name, + sym_qualified_type_identifier, + [188698] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2156), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(5586), 1, + sym_virtual_specifier, + STATE(6568), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1839), 2, + sym__class_name, + sym_qualified_type_identifier, + [188743] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + STATE(1891), 1, + sym_template_type, + STATE(2128), 1, + sym_field_declaration_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(5597), 1, + sym_virtual_specifier, + STATE(6575), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1848), 2, + sym__class_name, + sym_qualified_type_identifier, + [188788] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4053), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5744), 1, + sym_virtual_specifier, + STATE(6497), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3451), 2, + sym__class_name, + sym_qualified_type_identifier, + [188833] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2644), 1, + sym_field_declaration_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(5668), 1, + sym_virtual_specifier, + STATE(6217), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1933), 2, + sym__class_name, + sym_qualified_type_identifier, + [188878] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3551), 2, + sym__class_name, + sym_qualified_type_identifier, + [188923] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2428), 1, + sym_field_declaration_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(5549), 1, + sym_virtual_specifier, + STATE(6296), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1874), 2, + sym__class_name, + sym_qualified_type_identifier, + [188968] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4213), 1, + anon_sym_COLON_COLON, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(4822), 1, + sym__scope_resolution, + STATE(5708), 1, + sym_operator_cast, + STATE(5733), 1, + sym_qualified_operator_cast_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [189015] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2226), 1, + sym_field_declaration_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(5772), 1, + sym_virtual_specifier, + STATE(6277), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1859), 2, + sym__class_name, + sym_qualified_type_identifier, + [189060] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2809), 1, + sym_field_declaration_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(5620), 1, + sym_virtual_specifier, + STATE(6405), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2070), 2, + sym__class_name, + sym_qualified_type_identifier, + [189105] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2641), 1, + sym_field_declaration_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(5660), 1, + sym_virtual_specifier, + STATE(6215), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1938), 2, + sym__class_name, + sym_qualified_type_identifier, + [189150] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3476), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5779), 1, + sym_virtual_specifier, + STATE(6275), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3570), 2, + sym__class_name, + sym_qualified_type_identifier, + [189195] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2639), 1, + sym_field_declaration_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(5651), 1, + sym_virtual_specifier, + STATE(6213), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1939), 2, + sym__class_name, + sym_qualified_type_identifier, + [189240] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3503), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5803), 1, + sym_virtual_specifier, + STATE(6381), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3576), 2, + sym__class_name, + sym_qualified_type_identifier, + [189285] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2223), 1, + sym_field_declaration_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(5762), 1, + sym_virtual_specifier, + STATE(6272), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1857), 2, + sym__class_name, + sym_qualified_type_identifier, + [189330] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4035), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + STATE(1936), 1, + sym_template_type, + STATE(2220), 1, + sym_field_declaration_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(5751), 1, + sym_virtual_specifier, + STATE(6268), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1876), 2, + sym__class_name, + sym_qualified_type_identifier, + [189375] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2631), 1, + sym_field_declaration_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(5634), 1, + sym_virtual_specifier, + STATE(6204), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1944), 2, + sym__class_name, + sym_qualified_type_identifier, + [189420] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3524), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5750), 1, + sym_virtual_specifier, + STATE(6326), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3577), 2, + sym__class_name, + sym_qualified_type_identifier, + [189465] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4544), 1, + sym_field_declaration_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(5632), 1, + sym_virtual_specifier, + STATE(6124), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4321), 2, + sym__class_name, + sym_qualified_type_identifier, + [189510] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2806), 1, + sym_field_declaration_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(5705), 1, + sym_virtual_specifier, + STATE(6464), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2105), 2, + sym__class_name, + sym_qualified_type_identifier, + [189555] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2739), 1, + sym_field_declaration_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(5571), 1, + sym_virtual_specifier, + STATE(6249), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2114), 2, + sym__class_name, + sym_qualified_type_identifier, + [189600] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4540), 1, + sym_field_declaration_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(5712), 1, + sym_virtual_specifier, + STATE(6116), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4325), 2, + sym__class_name, + sym_qualified_type_identifier, + [189645] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4535), 1, + sym_field_declaration_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(5774), 1, + sym_virtual_specifier, + STATE(6131), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4329), 2, + sym__class_name, + sym_qualified_type_identifier, + [189690] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4048), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5807), 1, + sym_virtual_specifier, + STATE(6533), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, + sym__class_name, + sym_qualified_type_identifier, + [189735] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3201), 1, + sym_field_declaration_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(5704), 1, + sym_virtual_specifier, + STATE(6370), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2481), 2, + sym__class_name, + sym_qualified_type_identifier, + [189780] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4508), 1, + sym_field_declaration_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(5528), 1, + sym_virtual_specifier, + STATE(6152), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4343), 2, + sym__class_name, + sym_qualified_type_identifier, + [189825] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2627), 1, + sym_field_declaration_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(5627), 1, + sym_virtual_specifier, + STATE(6198), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1941), 2, + sym__class_name, + sym_qualified_type_identifier, + [189870] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4021), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5802), 1, + sym_virtual_specifier, + STATE(6531), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3481), 2, + sym__class_name, + sym_qualified_type_identifier, + [189915] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2753), 1, + sym_field_declaration_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(5580), 1, + sym_virtual_specifier, + STATE(6279), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2116), 2, + sym__class_name, + sym_qualified_type_identifier, + [189960] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2758), 1, + sym_field_declaration_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(5582), 1, + sym_virtual_specifier, + STATE(6307), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2120), 2, + sym__class_name, + sym_qualified_type_identifier, + [190005] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(5735), 1, + sym_virtual_specifier, + STATE(6460), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2106), 2, + sym__class_name, + sym_qualified_type_identifier, + [190050] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + STATE(2152), 1, + sym_template_type, + STATE(2623), 1, + sym_field_declaration_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(5617), 1, + sym_virtual_specifier, + STATE(6195), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1932), 2, + sym__class_name, + sym_qualified_type_identifier, + [190095] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3198), 1, + sym_field_declaration_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(5699), 1, + sym_virtual_specifier, + STATE(6373), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2520), 2, + sym__class_name, + sym_qualified_type_identifier, + [190140] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3195), 1, + sym_field_declaration_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(5694), 1, + sym_virtual_specifier, + STATE(6380), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2475), 2, + sym__class_name, + sym_qualified_type_identifier, + [190185] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4482), 1, + sym_field_declaration_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(5530), 1, + sym_virtual_specifier, + STATE(6155), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4312), 2, + sym__class_name, + sym_qualified_type_identifier, + [190230] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4009), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5776), 1, + sym_virtual_specifier, + STATE(6523), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3461), 2, + sym__class_name, + sym_qualified_type_identifier, + [190275] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4053), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5744), 1, + sym_virtual_specifier, + STATE(6497), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3451), 2, + sym__class_name, + sym_qualified_type_identifier, + [190320] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3186), 1, + sym_field_declaration_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(5652), 1, + sym_virtual_specifier, + STATE(6406), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2505), 2, + sym__class_name, + sym_qualified_type_identifier, + [190365] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3184), 1, + sym_field_declaration_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(5648), 1, + sym_virtual_specifier, + STATE(6408), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2506), 2, + sym__class_name, + sym_qualified_type_identifier, + [190410] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3503), 1, + sym_field_declaration_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(5803), 1, + sym_virtual_specifier, + STATE(6381), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3305), 2, + sym__class_name, + sym_qualified_type_identifier, + [190455] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2895), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5711), 1, + sym_virtual_specifier, + STATE(6343), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1948), 2, + sym__class_name, + sym_qualified_type_identifier, + [190500] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4956), 2, + sym__class_name, + sym_qualified_type_identifier, + [190545] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + ACTIONS(7164), 1, + sym_identifier, + STATE(4371), 1, + sym_template_type, + STATE(4504), 1, + sym_field_declaration_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(5543), 1, + sym_virtual_specifier, + STATE(6158), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4349), 2, + sym__class_name, + sym_qualified_type_identifier, + [190590] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3524), 1, + sym_field_declaration_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(5750), 1, + sym_virtual_specifier, + STATE(6326), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4952), 2, + sym__class_name, + sym_qualified_type_identifier, + [190635] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(5735), 1, + sym_virtual_specifier, + STATE(6460), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2106), 2, + sym__class_name, + sym_qualified_type_identifier, + [190680] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2922), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5697), 1, + sym_virtual_specifier, + STATE(6330), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1976), 2, + sym__class_name, + sym_qualified_type_identifier, + [190725] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3517), 1, + sym_field_declaration_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(5547), 1, + sym_virtual_specifier, + STATE(6475), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3288), 2, + sym__class_name, + sym_qualified_type_identifier, + [190770] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4836), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3182), 1, + sym_field_declaration_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(5644), 1, + sym_virtual_specifier, + STATE(6410), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2507), 2, + sym__class_name, + sym_qualified_type_identifier, + [190815] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2806), 1, + sym_field_declaration_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(5705), 1, + sym_virtual_specifier, + STATE(6464), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2105), 2, + sym__class_name, + sym_qualified_type_identifier, + [190860] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4038), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5796), 1, + sym_virtual_specifier, + STATE(6500), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3453), 2, + sym__class_name, + sym_qualified_type_identifier, + [190905] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4009), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5776), 1, + sym_virtual_specifier, + STATE(6523), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3461), 2, + sym__class_name, + sym_qualified_type_identifier, + [190950] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3476), 1, + sym_field_declaration_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(5779), 1, + sym_virtual_specifier, + STATE(6275), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3286), 2, + sym__class_name, + sym_qualified_type_identifier, + [190995] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2918), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5619), 1, + sym_virtual_specifier, + STATE(6303), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1959), 2, + sym__class_name, + sym_qualified_type_identifier, + [191040] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2809), 1, + sym_field_declaration_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(5620), 1, + sym_virtual_specifier, + STATE(6405), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2070), 2, + sym__class_name, + sym_qualified_type_identifier, + [191085] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3476), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5779), 1, + sym_virtual_specifier, + STATE(6275), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3570), 2, + sym__class_name, + sym_qualified_type_identifier, + [191130] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3503), 1, + sym_field_declaration_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(5803), 1, + sym_virtual_specifier, + STATE(6381), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3305), 2, + sym__class_name, + sym_qualified_type_identifier, + [191175] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2913), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5591), 1, + sym_virtual_specifier, + STATE(6291), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1958), 2, + sym__class_name, + sym_qualified_type_identifier, + [191220] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4199), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + STATE(2191), 1, + sym_template_type, + STATE(2924), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5584), 1, + sym_virtual_specifier, + STATE(6327), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(1968), 2, + sym__class_name, + sym_qualified_type_identifier, + [191265] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3503), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5803), 1, + sym_virtual_specifier, + STATE(6381), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3576), 2, + sym__class_name, + sym_qualified_type_identifier, + [191310] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3524), 1, + sym_field_declaration_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(5750), 1, + sym_virtual_specifier, + STATE(6326), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3292), 2, + sym__class_name, + sym_qualified_type_identifier, + [191355] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3524), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5750), 1, + sym_virtual_specifier, + STATE(6326), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3577), 2, + sym__class_name, + sym_qualified_type_identifier, + [191400] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4045), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5596), 1, + sym_virtual_specifier, + STATE(6503), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3454), 2, + sym__class_name, + sym_qualified_type_identifier, + [191445] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4021), 1, + sym_field_declaration_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(5802), 1, + sym_virtual_specifier, + STATE(6531), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3481), 2, + sym__class_name, + sym_qualified_type_identifier, + [191490] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3503), 1, + sym_field_declaration_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(5803), 1, + sym_virtual_specifier, + STATE(6381), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4951), 2, + sym__class_name, + sym_qualified_type_identifier, + [191535] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3285), 2, + sym__class_name, + sym_qualified_type_identifier, + [191580] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3476), 1, + sym_field_declaration_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(5779), 1, + sym_virtual_specifier, + STATE(6275), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3286), 2, + sym__class_name, + sym_qualified_type_identifier, + [191625] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3431), 1, + sym_field_declaration_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(5717), 1, + sym_virtual_specifier, + STATE(6593), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4955), 2, + sym__class_name, + sym_qualified_type_identifier, + [191670] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2758), 1, + sym_field_declaration_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(5582), 1, + sym_virtual_specifier, + STATE(6307), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2120), 2, + sym__class_name, + sym_qualified_type_identifier, + [191715] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2753), 1, + sym_field_declaration_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(5580), 1, + sym_virtual_specifier, + STATE(6279), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2116), 2, + sym__class_name, + sym_qualified_type_identifier, + [191760] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2739), 1, + sym_field_declaration_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(5571), 1, + sym_virtual_specifier, + STATE(6249), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(2114), 2, + sym__class_name, + sym_qualified_type_identifier, + [191805] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3476), 1, + sym_field_declaration_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(5779), 1, + sym_virtual_specifier, + STATE(6275), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(4950), 2, + sym__class_name, + sym_qualified_type_identifier, + [191850] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4045), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5596), 1, + sym_virtual_specifier, + STATE(6503), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3454), 2, + sym__class_name, + sym_qualified_type_identifier, + [191895] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3438), 1, + sym_field_declaration_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_virtual_specifier, + STATE(6555), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3294), 2, + sym__class_name, + sym_qualified_type_identifier, + [191940] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5435), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4038), 1, + sym_field_declaration_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(5796), 1, + sym_virtual_specifier, + STATE(6500), 1, + sym_base_class_clause, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + STATE(3453), 2, + sym__class_name, + sym_qualified_type_identifier, + [191985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7479), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [192011] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5274), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192049] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7483), 1, + anon_sym_TILDE, + ACTIONS(7485), 1, + anon_sym_COLON_COLON, + ACTIONS(7487), 1, + anon_sym_template, + ACTIONS(7489), 1, + anon_sym_operator, + STATE(2534), 1, + sym_template_function, + STATE(2535), 1, + sym_destructor_name, + STATE(2550), 1, + sym_dependent_identifier, + STATE(2552), 1, + sym_qualified_identifier, + STATE(2578), 1, + sym_operator_name, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4891), 1, + sym__scope_resolution, + [192095] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3126), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5585), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192135] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5279), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192173] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_TILDE, + ACTIONS(7489), 1, + anon_sym_operator, + ACTIONS(7491), 1, + sym_identifier, + ACTIONS(7493), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 1, + anon_sym_template, + STATE(2534), 1, + sym_template_function, + STATE(2535), 1, + sym_destructor_name, + STATE(2550), 1, + sym_dependent_identifier, + STATE(2552), 1, + sym_qualified_identifier, + STATE(2578), 1, + sym_operator_name, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4894), 1, + sym__scope_resolution, + [192219] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5281), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192257] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(1908), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5738), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [192323] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7501), 1, + anon_sym_COLON, + STATE(3812), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [192365] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7427), 1, + anon_sym_LBRACE, + STATE(2834), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5520), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192405] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7503), 1, + anon_sym_COLON, + STATE(3812), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [192447] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5278), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192485] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5275), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7505), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [192549] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7455), 1, + anon_sym_TILDE, + ACTIONS(7507), 1, + sym_identifier, + ACTIONS(7509), 1, + anon_sym_COLON_COLON, + ACTIONS(7511), 1, + anon_sym_template, + ACTIONS(7513), 1, + anon_sym_operator, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4904), 1, + sym__scope_resolution, + [192595] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5241), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192633] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7515), 1, + sym_identifier, + ACTIONS(7517), 1, + anon_sym_TILDE, + ACTIONS(7519), 1, + anon_sym_COLON_COLON, + ACTIONS(7521), 1, + anon_sym_template, + ACTIONS(7523), 1, + anon_sym_operator, + STATE(2172), 1, + sym_qualified_type_identifier, + STATE(2307), 1, + sym_dependent_type_identifier, + STATE(2311), 1, + sym_template_type, + STATE(2673), 1, + sym_template_function, + STATE(2674), 1, + sym_destructor_name, + STATE(2677), 1, + sym_dependent_identifier, + STATE(2678), 1, + sym_qualified_identifier, + STATE(2680), 1, + sym_operator_name, + STATE(4906), 1, + sym__scope_resolution, + [192679] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5235), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192717] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_LBRACE, + STATE(2982), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5719), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192757] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5249), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192795] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(1908), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5647), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192835] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7517), 1, + anon_sym_TILDE, + ACTIONS(7523), 1, + anon_sym_operator, + ACTIONS(7525), 1, + sym_identifier, + ACTIONS(7527), 1, + anon_sym_COLON_COLON, + ACTIONS(7529), 1, + anon_sym_template, + STATE(2673), 1, + sym_template_function, + STATE(2674), 1, + sym_destructor_name, + STATE(2677), 1, + sym_dependent_identifier, + STATE(2678), 1, + sym_qualified_identifier, + STATE(2680), 1, + sym_operator_name, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4911), 1, + sym__scope_resolution, + [192881] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5252), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192919] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7531), 1, + sym_identifier, + ACTIONS(7533), 1, + anon_sym_TILDE, + ACTIONS(7535), 1, + anon_sym_COLON_COLON, + ACTIONS(7537), 1, + anon_sym_template, + ACTIONS(7539), 1, + anon_sym_operator, + STATE(3002), 1, + sym_operator_name, + STATE(3006), 1, + sym_dependent_identifier, + STATE(3009), 1, + sym_destructor_name, + STATE(3010), 1, + sym_template_function, + STATE(3034), 1, + sym_qualified_identifier, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4913), 1, + sym__scope_resolution, + [192965] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5242), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193003] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5260), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193041] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5269), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193079] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7541), 1, + anon_sym_COLON, + STATE(3812), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [193121] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7463), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_parameter_list, + STATE(5261), 1, + sym_compound_statement, + STATE(5813), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193161] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7433), 1, + anon_sym_LBRACE, + STATE(2494), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5741), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193201] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5265), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(5033), 1, + sym_template_argument_list, + ACTIONS(6419), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3885), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [193267] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7533), 1, + anon_sym_TILDE, + ACTIONS(7539), 1, + anon_sym_operator, + ACTIONS(7543), 1, + sym_identifier, + ACTIONS(7545), 1, + anon_sym_COLON_COLON, + ACTIONS(7547), 1, + anon_sym_template, + STATE(2826), 1, + sym_dependent_type_identifier, + STATE(2827), 1, + sym_template_type, + STATE(2957), 1, + sym_qualified_type_identifier, + STATE(3002), 1, + sym_operator_name, + STATE(3006), 1, + sym_dependent_identifier, + STATE(3009), 1, + sym_destructor_name, + STATE(3010), 1, + sym_template_function, + STATE(3034), 1, + sym_qualified_identifier, + STATE(4922), 1, + sym__scope_resolution, + [193313] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3112), 1, + anon_sym_COLON_COLON, + ACTIONS(7549), 1, + sym_identifier, + ACTIONS(7551), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4923), 1, + sym__scope_resolution, + [193359] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7553), 1, + sym_identifier, + ACTIONS(7555), 1, + anon_sym_TILDE, + ACTIONS(7557), 1, + anon_sym_COLON_COLON, + ACTIONS(7559), 1, + anon_sym_template, + ACTIONS(7561), 1, + anon_sym_operator, + STATE(2719), 1, + sym_operator_name, + STATE(2726), 1, + sym_qualified_identifier, + STATE(2730), 1, + sym_dependent_identifier, + STATE(2732), 1, + sym_destructor_name, + STATE(2735), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4924), 1, + sym__scope_resolution, + [193405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7563), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [193431] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5216), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193469] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7555), 1, + anon_sym_TILDE, + ACTIONS(7561), 1, + anon_sym_operator, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7569), 1, + anon_sym_template, + STATE(2172), 1, + sym_qualified_type_identifier, + STATE(2307), 1, + sym_dependent_type_identifier, + STATE(2311), 1, + sym_template_type, + STATE(2719), 1, + sym_operator_name, + STATE(2726), 1, + sym_qualified_identifier, + STATE(2730), 1, + sym_dependent_identifier, + STATE(2732), 1, + sym_destructor_name, + STATE(2735), 1, + sym_template_function, + STATE(4927), 1, + sym__scope_resolution, + [193515] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_parameter_list, + STATE(5020), 1, + sym_compound_statement, + STATE(5616), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193555] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5282), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193593] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_TILDE, + ACTIONS(7489), 1, + anon_sym_operator, + ACTIONS(7571), 1, + sym_identifier, + ACTIONS(7573), 1, + anon_sym_COLON_COLON, + ACTIONS(7575), 1, + anon_sym_template, + STATE(2534), 1, + sym_template_function, + STATE(2535), 1, + sym_destructor_name, + STATE(2550), 1, + sym_dependent_identifier, + STATE(2552), 1, + sym_qualified_identifier, + STATE(2578), 1, + sym_operator_name, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4930), 1, + sym__scope_resolution, + [193639] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(6837), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_AMP_AMP, + ACTIONS(6841), 1, + anon_sym_AMP, + STATE(4395), 1, + sym_parameter_list, + STATE(5503), 1, + sym__abstract_declarator, + ACTIONS(5712), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193675] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5285), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193713] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(3431), 1, + anon_sym_COLON_COLON, + ACTIONS(7577), 1, + sym_identifier, + ACTIONS(7579), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4933), 1, + sym__scope_resolution, + [193759] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7581), 1, + anon_sym_COLON, + STATE(3812), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [193801] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7439), 1, + anon_sym_LBRACE, + STATE(3654), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5526), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7583), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [193867] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [193893] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(3829), 1, + anon_sym_STAR, + ACTIONS(3831), 1, + anon_sym_AMP_AMP, + ACTIONS(3833), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + ACTIONS(7447), 1, + anon_sym_LBRACE, + STATE(3353), 1, + sym_compound_statement, + STATE(4395), 1, + sym_parameter_list, + STATE(5545), 1, + sym_abstract_function_declarator, + STATE(5927), 1, + sym__abstract_declarator, + STATE(5097), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193933] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7555), 1, + anon_sym_TILDE, + ACTIONS(7561), 1, + anon_sym_operator, + ACTIONS(7587), 1, + sym_identifier, + ACTIONS(7589), 1, + anon_sym_COLON_COLON, + ACTIONS(7591), 1, + anon_sym_template, + STATE(2719), 1, + sym_operator_name, + STATE(2726), 1, + sym_qualified_identifier, + STATE(2730), 1, + sym_dependent_identifier, + STATE(2732), 1, + sym_destructor_name, + STATE(2735), 1, + sym_template_function, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(4939), 1, + sym__scope_resolution, + [193979] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7593), 1, + anon_sym_RPAREN, + STATE(2561), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [194005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(5033), 1, + sym_template_argument_list, + ACTIONS(3686), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3691), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [194033] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5246), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [194071] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7595), 1, + anon_sym_COLON, + STATE(3812), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [194113] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7597), 1, + anon_sym_COLON, + STATE(3812), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [194155] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5420), 1, + sym_auto, + ACTIONS(5422), 1, + anon_sym_decltype, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(3455), 1, + sym_decltype_auto, + STATE(5222), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [194193] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(7599), 1, + sym_identifier, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5401), 1, + sym__scope_resolution, + STATE(3191), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194226] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3428), 1, + sym_field_declaration_list, + STATE(5765), 1, + sym_virtual_specifier, + STATE(6323), 1, + sym_base_class_clause, + ACTIONS(3982), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3984), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194259] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(7601), 1, + sym_identifier, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5389), 1, + sym__scope_resolution, + STATE(2762), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194292] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7603), 1, + anon_sym_SEMI, + ACTIONS(7605), 1, + anon_sym_LBRACE, + ACTIONS(7607), 1, + anon_sym_EQ, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7611), 1, + anon_sym_try, + STATE(2039), 1, + sym_compound_statement, + STATE(6427), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2102), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194329] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3495), 1, + sym_field_declaration_list, + STATE(5593), 1, + sym_virtual_specifier, + STATE(6580), 1, + sym_base_class_clause, + ACTIONS(3972), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3974), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194362] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_field_declaration_list, + STATE(5618), 1, + sym_virtual_specifier, + STATE(6564), 1, + sym_base_class_clause, + ACTIONS(4007), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4009), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194395] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym_field_declaration_list, + STATE(5621), 1, + sym_virtual_specifier, + STATE(6550), 1, + sym_base_class_clause, + ACTIONS(3986), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3988), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194428] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7613), 1, + anon_sym_SEMI, + ACTIONS(7615), 1, + anon_sym_EQ, + ACTIONS(7617), 1, + anon_sym_try, + STATE(500), 1, + sym_compound_statement, + STATE(6325), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(501), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194465] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6706), 1, + sym_concatenated_string, + STATE(4897), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [194490] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3482), 1, + sym_field_declaration_list, + STATE(5789), 1, + sym_virtual_specifier, + STATE(6285), 1, + sym_base_class_clause, + ACTIONS(4000), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4002), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194523] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3472), 1, + sym_field_declaration_list, + STATE(5769), 1, + sym_virtual_specifier, + STATE(6274), 1, + sym_base_class_clause, + ACTIONS(3990), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(3992), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194556] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7605), 1, + anon_sym_LBRACE, + ACTIONS(7607), 1, + anon_sym_EQ, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7611), 1, + anon_sym_try, + ACTIONS(7619), 1, + anon_sym_SEMI, + STATE(2042), 1, + sym_compound_statement, + STATE(6385), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2025), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194593] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(7601), 1, + sym_identifier, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5420), 1, + sym__scope_resolution, + STATE(3191), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194626] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(7621), 1, + sym_identifier, + STATE(1909), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5445), 1, + sym__scope_resolution, + STATE(2762), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194659] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7415), 1, + anon_sym_SEMI, + STATE(3828), 1, + sym_parameter_list, + STATE(6099), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [194698] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7623), 1, + anon_sym_SEMI, + ACTIONS(7625), 1, + anon_sym_EQ, + ACTIONS(7627), 1, + anon_sym_try, + STATE(991), 1, + sym_compound_statement, + STATE(6364), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(992), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194735] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(5381), 1, + anon_sym_COLON_COLON, + ACTIONS(7629), 1, + sym_identifier, + ACTIONS(7631), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(4962), 1, + sym__scope_resolution, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [194776] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6628), 1, + sym_concatenated_string, + STATE(4889), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [194801] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3439), 1, + sym_field_declaration_list, + STATE(5540), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(4019), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4021), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194834] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(7633), 1, + sym_identifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5385), 1, + sym__scope_resolution, + STATE(3535), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194867] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3433), 1, + sym_field_declaration_list, + STATE(5782), 1, + sym_virtual_specifier, + STATE(6544), 1, + sym_base_class_clause, + ACTIONS(4015), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4017), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194900] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7625), 1, + anon_sym_EQ, + ACTIONS(7627), 1, + anon_sym_try, + ACTIONS(7635), 1, + anon_sym_SEMI, + STATE(941), 1, + sym_compound_statement, + STATE(6585), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(942), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194937] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3430), 1, + sym_field_declaration_list, + STATE(5734), 1, + sym_virtual_specifier, + STATE(6494), 1, + sym_base_class_clause, + ACTIONS(4011), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5437), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4013), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [194970] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(7601), 1, + sym_identifier, + STATE(4279), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5354), 1, + sym__scope_resolution, + STATE(4531), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(5556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195003] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7637), 1, + anon_sym_SEMI, + ACTIONS(7639), 1, + anon_sym_LBRACE, + ACTIONS(7641), 1, + anon_sym_EQ, + ACTIONS(7643), 1, + anon_sym_try, + STATE(2325), 1, + sym_compound_statement, + STATE(6467), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2323), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195040] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7499), 1, + anon_sym_SEMI, + ACTIONS(7645), 1, + anon_sym_EQ, + STATE(3828), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5972), 1, + sym_initializer_list, + STATE(6403), 1, + sym_argument_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [195081] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7639), 1, + anon_sym_LBRACE, + ACTIONS(7641), 1, + anon_sym_EQ, + ACTIONS(7643), 1, + anon_sym_try, + ACTIONS(7647), 1, + anon_sym_SEMI, + STATE(2399), 1, + sym_compound_statement, + STATE(6546), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2384), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195118] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4708), 1, + anon_sym_COLON_COLON, + ACTIONS(7649), 1, + sym_identifier, + ACTIONS(7651), 1, + anon_sym_template, + STATE(4973), 1, + sym__scope_resolution, + STATE(5089), 1, + sym_operator_name, + STATE(5090), 1, + sym_qualified_identifier, + STATE(5091), 1, + sym_dependent_identifier, + STATE(5093), 1, + sym_destructor_name, + STATE(5096), 1, + sym_template_function, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [195159] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7401), 1, + anon_sym_SEMI, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + STATE(3828), 1, + sym_parameter_list, + STATE(5819), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [195198] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7467), 1, + anon_sym_SEMI, + STATE(3828), 1, + sym_parameter_list, + STATE(5950), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [195237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_LBRACK, + ACTIONS(7653), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [195260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_LBRACK, + ACTIONS(7653), 1, + anon_sym_AMP_AMP, + ACTIONS(7655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [195285] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(7657), 1, + sym_identifier, + STATE(1906), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5352), 1, + sym__scope_resolution, + STATE(2910), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195318] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_SEMI, + STATE(3828), 1, + sym_parameter_list, + STATE(5949), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [195357] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7659), 1, + anon_sym_SEMI, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_try, + STATE(973), 1, + sym_compound_statement, + STATE(6506), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(989), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195394] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7615), 1, + anon_sym_EQ, + ACTIONS(7617), 1, + anon_sym_try, + ACTIONS(7665), 1, + anon_sym_SEMI, + STATE(505), 1, + sym_compound_statement, + STATE(6252), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(504), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195431] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7667), 1, + anon_sym_SEMI, + ACTIONS(7669), 1, + anon_sym_LBRACE, + ACTIONS(7671), 1, + anon_sym_EQ, + ACTIONS(7673), 1, + anon_sym_try, + STATE(2409), 1, + sym_compound_statement, + STATE(6308), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2410), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195468] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6828), 1, + sym_concatenated_string, + STATE(4925), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [195493] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(7679), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(4984), 1, + sym__scope_resolution, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [195534] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6803), 1, + sym_concatenated_string, + STATE(4936), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [195559] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7421), 1, + anon_sym_SEMI, + STATE(3828), 1, + sym_parameter_list, + STATE(5817), 1, + aux_sym_declaration_repeat1, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [195598] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7669), 1, + anon_sym_LBRACE, + ACTIONS(7671), 1, + anon_sym_EQ, + ACTIONS(7673), 1, + anon_sym_try, + ACTIONS(7681), 1, + anon_sym_SEMI, + STATE(2348), 1, + sym_compound_statement, + STATE(6282), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2345), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195635] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7683), 1, + sym_identifier, + STATE(1885), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5362), 1, + sym__scope_resolution, + STATE(2635), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6622), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195668] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7685), 1, + anon_sym_SEMI, + ACTIONS(7687), 1, + anon_sym_EQ, + ACTIONS(7689), 1, + anon_sym_try, + STATE(926), 1, + sym_compound_statement, + STATE(6526), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(923), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195705] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7633), 1, + sym_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5396), 1, + sym__scope_resolution, + STATE(3535), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195738] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6853), 1, + sym_concatenated_string, + STATE(4903), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [195763] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1601), 1, + anon_sym_TILDE, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(7475), 1, + sym_identifier, + ACTIONS(7477), 1, + anon_sym_template, + STATE(2196), 1, + sym_operator_name, + STATE(2199), 1, + sym_qualified_identifier, + STATE(2201), 1, + sym_dependent_identifier, + STATE(2202), 1, + sym_destructor_name, + STATE(2203), 1, + sym_template_function, + STATE(4992), 1, + sym__scope_resolution, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [195804] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6771), 1, + sym_concatenated_string, + STATE(4940), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [195829] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_try, + ACTIONS(7691), 1, + anon_sym_SEMI, + STATE(932), 1, + sym_compound_statement, + STATE(6541), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(934), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195866] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(7693), 1, + sym_identifier, + STATE(1825), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5371), 1, + sym__scope_resolution, + STATE(2109), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6513), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195899] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(7695), 1, + sym_identifier, + STATE(1844), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5349), 1, + sym__scope_resolution, + STATE(2241), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6539), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195932] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6788), 1, + sym_concatenated_string, + STATE(4937), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(137), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [195957] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7633), 1, + sym_identifier, + STATE(3289), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5396), 1, + sym__scope_resolution, + STATE(3535), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195990] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(7633), 1, + sym_identifier, + STATE(3505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5385), 1, + sym__scope_resolution, + STATE(3535), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [196023] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7687), 1, + anon_sym_EQ, + ACTIONS(7689), 1, + anon_sym_try, + ACTIONS(7697), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_compound_statement, + STATE(6157), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(940), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [196060] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7625), 1, + anon_sym_EQ, + ACTIONS(7627), 1, + anon_sym_try, + STATE(991), 1, + sym_compound_statement, + STATE(6364), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(992), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [196094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_LBRACK, + ACTIONS(7699), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + anon_sym_LBRACK, + ACTIONS(4137), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + anon_sym_LBRACK, + ACTIONS(4137), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196156] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2865), 1, + sym_enumerator_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7701), 2, + anon_sym_class, + anon_sym_struct, + STATE(4560), 2, + sym__class_name, + sym_qualified_type_identifier, + [196192] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + ACTIONS(7703), 1, + anon_sym_LBRACE, + STATE(2152), 1, + sym_template_type, + STATE(2656), 1, + sym_enumerator_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7705), 2, + anon_sym_class, + anon_sym_struct, + STATE(2186), 2, + sym__class_name, + sym_qualified_type_identifier, + [196228] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4071), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7707), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [196256] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4071), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7709), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [196284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, + anon_sym_LBRACK, + ACTIONS(4145), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 1, + anon_sym_LBRACK, + ACTIONS(4141), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, + anon_sym_LBRACK, + ACTIONS(4101), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + anon_sym_LBRACK, + ACTIONS(4191), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7713), 1, + anon_sym_LBRACK, + ACTIONS(7711), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196384] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7625), 1, + anon_sym_EQ, + ACTIONS(7627), 1, + anon_sym_try, + STATE(941), 1, + sym_compound_statement, + STATE(6585), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(942), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [196418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 1, + anon_sym_LBRACK, + ACTIONS(4172), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196438] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7399), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_EQ, + STATE(3828), 1, + sym_parameter_list, + ACTIONS(7715), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6403), 2, + sym_argument_list, + sym_initializer_list, + [196472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_LBRACK, + ACTIONS(7717), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196492] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_try, + STATE(973), 1, + sym_compound_statement, + STATE(6506), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(989), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [196526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4174), 1, + anon_sym_LBRACK, + ACTIONS(4176), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 1, + anon_sym_LBRACK, + ACTIONS(4119), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym_LBRACK, + ACTIONS(7721), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_LBRACK, + ACTIONS(7699), 1, + anon_sym_AMP_AMP, + ACTIONS(7725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7729), 1, + anon_sym_LBRACK, + ACTIONS(7727), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196630] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(7731), 1, + anon_sym_LBRACE, + STATE(1936), 1, + sym_template_type, + STATE(2234), 1, + sym_enumerator_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7733), 2, + anon_sym_class, + anon_sym_struct, + STATE(1987), 2, + sym__class_name, + sym_qualified_type_identifier, + [196666] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(7164), 1, + sym_identifier, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(4371), 1, + sym_template_type, + STATE(4490), 1, + sym_enumerator_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7737), 2, + anon_sym_class, + anon_sym_struct, + STATE(4406), 2, + sym__class_name, + sym_qualified_type_identifier, + [196702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, + anon_sym_LBRACK, + ACTIONS(4183), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196722] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_LPAREN2, + ACTIONS(6676), 1, + anon_sym_STAR, + ACTIONS(6678), 1, + anon_sym_AMP_AMP, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_LBRACK, + STATE(4263), 1, + sym_parameter_list, + STATE(5377), 1, + sym__abstract_declarator, + STATE(5097), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196754] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7687), 1, + anon_sym_EQ, + ACTIONS(7689), 1, + anon_sym_try, + STATE(926), 1, + sym_compound_statement, + STATE(6526), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(923), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [196788] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4071), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7739), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [196816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(6122), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [196840] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(7741), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym_template_type, + STATE(2111), 1, + sym_enumerator_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7743), 2, + anon_sym_class, + anon_sym_struct, + STATE(2576), 2, + sym__class_name, + sym_qualified_type_identifier, + [196876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 1, + anon_sym_LBRACK, + ACTIONS(4115), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 1, + anon_sym_COLON_COLON, + ACTIONS(3773), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3778), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [196918] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3168), 1, + sym_enumerator_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7745), 2, + anon_sym_class, + anon_sym_struct, + STATE(3362), 2, + sym__class_name, + sym_qualified_type_identifier, + [196954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 1, + anon_sym_LBRACK, + ACTIONS(7747), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4730), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [196976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + anon_sym_LBRACK, + ACTIONS(4137), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + ACTIONS(6704), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 1, + anon_sym_LBRACK, + ACTIONS(7749), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(7755), 1, + anon_sym_LBRACK, + STATE(5080), 1, + sym_requires_clause, + ACTIONS(7753), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197064] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6467), 1, + anon_sym_LBRACK, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6465), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197088] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(7086), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4014), 1, + sym_enumerator_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7757), 2, + anon_sym_class, + anon_sym_struct, + STATE(3685), 2, + sym__class_name, + sym_qualified_type_identifier, + [197124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7761), 1, + anon_sym_LBRACK, + ACTIONS(7759), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7768), 1, + anon_sym_LBRACK, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7763), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197168] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + ACTIONS(7770), 1, + anon_sym_LBRACE, + STATE(2191), 1, + sym_template_type, + STATE(2798), 1, + sym_enumerator_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7772), 2, + anon_sym_class, + anon_sym_struct, + STATE(2340), 2, + sym__class_name, + sym_qualified_type_identifier, + [197204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_LBRACK, + ACTIONS(4158), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [197224] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7615), 1, + anon_sym_EQ, + ACTIONS(7617), 1, + anon_sym_try, + STATE(500), 1, + sym_compound_statement, + STATE(6325), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(501), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [197258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7776), 1, + anon_sym_LBRACK, + ACTIONS(7774), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197278] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2865), 1, + sym_enumerator_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7778), 2, + anon_sym_class, + anon_sym_struct, + STATE(3448), 2, + sym__class_name, + sym_qualified_type_identifier, + [197314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + anon_sym_LBRACK, + ACTIONS(2335), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [197334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7782), 1, + anon_sym_LBRACK, + ACTIONS(7780), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197354] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7784), 2, + anon_sym_class, + anon_sym_struct, + STATE(3471), 2, + sym__class_name, + sym_qualified_type_identifier, + [197390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_LBRACK, + ACTIONS(7786), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197410] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7615), 1, + anon_sym_EQ, + ACTIONS(7617), 1, + anon_sym_try, + STATE(505), 1, + sym_compound_statement, + STATE(6252), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(504), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [197444] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7790), 2, + anon_sym_class, + anon_sym_struct, + STATE(3926), 2, + sym__class_name, + sym_qualified_type_identifier, + [197480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + ACTIONS(3534), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [197504] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2865), 1, + sym_enumerator_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7792), 2, + anon_sym_class, + anon_sym_struct, + STATE(4410), 2, + sym__class_name, + sym_qualified_type_identifier, + [197540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7755), 1, + anon_sym_LBRACK, + ACTIONS(7753), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + ACTIONS(3684), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [197584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6702), 1, + anon_sym_LBRACK, + ACTIONS(6700), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7796), 1, + anon_sym_LBRACK, + ACTIONS(7794), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197624] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7798), 2, + anon_sym_class, + anon_sym_struct, + STATE(4361), 2, + sym__class_name, + sym_qualified_type_identifier, + [197660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + ACTIONS(6700), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197684] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(7741), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym_template_type, + STATE(2111), 1, + sym_enumerator_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7800), 2, + anon_sym_class, + anon_sym_struct, + STATE(1924), 2, + sym__class_name, + sym_qualified_type_identifier, + [197720] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7802), 2, + anon_sym_class, + anon_sym_struct, + STATE(4117), 2, + sym__class_name, + sym_qualified_type_identifier, + [197756] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7804), 2, + anon_sym_class, + anon_sym_struct, + STATE(4359), 2, + sym__class_name, + sym_qualified_type_identifier, + [197792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_LBRACK, + ACTIONS(2327), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [197812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 1, + anon_sym_LBRACK, + ACTIONS(7806), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(7812), 1, + anon_sym_LBRACK, + STATE(5116), 1, + sym_requires_clause, + ACTIONS(7810), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197856] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2865), 1, + sym_enumerator_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7814), 2, + anon_sym_class, + anon_sym_struct, + STATE(3276), 2, + sym__class_name, + sym_qualified_type_identifier, + [197892] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7816), 2, + anon_sym_class, + anon_sym_struct, + STATE(4426), 2, + sym__class_name, + sym_qualified_type_identifier, + [197928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 1, + anon_sym_LBRACK, + ACTIONS(7818), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 1, + anon_sym_LBRACK, + ACTIONS(4105), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [197968] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7086), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4014), 1, + sym_enumerator_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7822), 2, + anon_sym_class, + anon_sym_struct, + STATE(4443), 2, + sym__class_name, + sym_qualified_type_identifier, + [198004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6706), 1, + anon_sym_LBRACK, + ACTIONS(6704), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7826), 1, + anon_sym_LBRACK, + ACTIONS(7824), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198044] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3168), 1, + sym_enumerator_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7828), 2, + anon_sym_class, + anon_sym_struct, + STATE(4412), 2, + sym__class_name, + sym_qualified_type_identifier, + [198080] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3516), 1, + sym_enumerator_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + ACTIONS(7830), 2, + anon_sym_class, + anon_sym_struct, + STATE(5195), 2, + sym__class_name, + sym_qualified_type_identifier, + [198116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7834), 1, + anon_sym_LBRACK, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7832), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [198140] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4071), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7836), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 1, + anon_sym_LBRACK, + ACTIONS(7838), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198188] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7687), 1, + anon_sym_EQ, + ACTIONS(7689), 1, + anon_sym_try, + STATE(944), 1, + sym_compound_statement, + STATE(6157), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(940), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [198222] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4071), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7842), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198250] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_COLON, + ACTIONS(7661), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_try, + STATE(932), 1, + sym_compound_statement, + STATE(6541), 1, + sym_field_initializer_list, + ACTIONS(3885), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(934), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [198284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 1, + anon_sym_LBRACK, + ACTIONS(4151), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [198304] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6216), 1, + anon_sym_requires, + ACTIONS(7761), 1, + anon_sym_LBRACK, + STATE(5071), 1, + sym_requires_clause, + ACTIONS(7759), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [198328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(7812), 1, + anon_sym_LBRACK, + STATE(5116), 1, + sym_requires_clause, + ACTIONS(7810), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 1, + anon_sym_LBRACK, + ACTIONS(4650), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198370] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3812), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7844), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [198397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(3691), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(3691), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(3691), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6467), 1, + anon_sym_LBRACK, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6465), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(3691), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198496] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(7848), 1, + anon_sym_LBRACK, + STATE(5206), 1, + sym_requires_clause, + ACTIONS(7846), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198519] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3828), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7850), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [198546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(3691), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7749), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(3534), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + anon_sym_requires, + [198605] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7852), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [198628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7858), 1, + anon_sym_LBRACK, + ACTIONS(7856), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198647] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(6000), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(7860), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [198678] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3828), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7862), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [198705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7866), 1, + anon_sym_LBRACK, + ACTIONS(7864), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + ACTIONS(3684), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + anon_sym_requires, + [198747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(7868), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6140), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(6122), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7780), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198806] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3828), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7844), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [198833] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3812), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7872), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [198860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(7874), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198896] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3828), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7878), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [198923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6122), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6465), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [198961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3812), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7878), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [198988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7882), 1, + anon_sym_LBRACK, + ACTIONS(7880), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199007] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7884), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [199030] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3828), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7872), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [199057] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5721), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(7886), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [199088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7890), 1, + anon_sym_LBRACK, + STATE(5129), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7888), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199111] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(5300), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [199140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(7761), 1, + anon_sym_LBRACK, + STATE(5071), 1, + sym_requires_clause, + ACTIONS(7759), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(7755), 1, + anon_sym_LBRACK, + STATE(5080), 1, + sym_requires_clause, + ACTIONS(7753), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7727), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7892), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [199243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7894), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [199266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7711), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199283] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7768), 1, + anon_sym_LBRACK, + ACTIONS(7896), 1, + anon_sym_LBRACK_LBRACK, + STATE(5129), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7763), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7824), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7899), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 1, + anon_sym_LBRACK, + ACTIONS(4730), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7838), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199378] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7903), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [199401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7812), 1, + anon_sym_LBRACK, + ACTIONS(7810), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_LBRACK, + ACTIONS(5000), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7774), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7759), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 1, + anon_sym_LBRACK, + ACTIONS(4629), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199492] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3812), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7850), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [199519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6463), 1, + anon_sym_LBRACK, + STATE(5178), 1, + sym_requires_clause, + ACTIONS(6461), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199542] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7905), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [199565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7786), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7909), 1, + anon_sym_LBRACK, + ACTIONS(7907), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7818), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7717), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7721), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199669] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(5413), 1, + sym__type_declarator, + STATE(7102), 1, + sym_ms_based_modifier, + STATE(5471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [199698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4149), 1, + sym_parameter_list, + ACTIONS(7911), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [199721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + ACTIONS(6704), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + anon_sym_LBRACK, + ACTIONS(3885), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7915), 1, + anon_sym_LBRACK, + ACTIONS(7913), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [199782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7806), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + ACTIONS(6700), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6704), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199839] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3812), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7862), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [199866] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + STATE(4071), 1, + sym_parameter_list, + STATE(5120), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7917), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [199893] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7921), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LBRACK, + STATE(5175), 1, + sym_template_argument_list, + ACTIONS(7919), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199916] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4366), 2, + sym__class_name, + sym_qualified_type_identifier, + [199948] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4022), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7850), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [199974] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4022), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7844), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [200000] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4115), 2, + sym__class_name, + sym_qualified_type_identifier, + [200032] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(7164), 1, + sym_identifier, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(4371), 1, + sym_template_type, + STATE(4581), 1, + sym_enumerator_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4418), 2, + sym__class_name, + sym_qualified_type_identifier, + [200064] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2703), 1, + sym_enumerator_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4559), 2, + sym__class_name, + sym_qualified_type_identifier, + [200096] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3911), 2, + sym__class_name, + sym_qualified_type_identifier, + [200128] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4022), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7878), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [200154] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4022), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7872), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [200180] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4362), 2, + sym__class_name, + sym_qualified_type_identifier, + [200212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7927), 1, + anon_sym_LBRACK, + ACTIONS(7925), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7894), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [200252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7931), 1, + anon_sym_LBRACK, + ACTIONS(7929), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7935), 1, + anon_sym_LBRACK, + ACTIONS(7933), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + anon_sym_LBRACK, + ACTIONS(7937), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 1, + anon_sym_LBRACK, + ACTIONS(5013), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200324] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7377), 1, + anon_sym_try, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(2333), 1, + sym_try_statement, + STATE(2365), 1, + sym_compound_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [200356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7941), 1, + anon_sym_COLON, + STATE(3520), 1, + sym_enumerator_list, + STATE(3523), 1, + sym__enum_base_clause, + ACTIONS(4160), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4162), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [200382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 1, + anon_sym_LBRACK, + ACTIONS(7846), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200400] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(7391), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3179), 1, + sym_enumerator_list, + STATE(5420), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4420), 2, + sym__class_name, + sym_qualified_type_identifier, + [200432] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4022), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [200458] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2703), 1, + sym_enumerator_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3280), 2, + sym__class_name, + sym_qualified_type_identifier, + [200490] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(7086), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4049), 1, + sym_enumerator_list, + STATE(5381), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3723), 2, + sym__class_name, + sym_qualified_type_identifier, + [200522] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5385), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3462), 2, + sym__class_name, + sym_qualified_type_identifier, + [200554] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4428), 2, + sym__class_name, + sym_qualified_type_identifier, + [200586] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(7086), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(4049), 1, + sym_enumerator_list, + STATE(5435), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4447), 2, + sym__class_name, + sym_qualified_type_identifier, + [200618] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_LBRACK, + ACTIONS(7943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7945), 1, + anon_sym_AMP_AMP, + ACTIONS(4895), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [200640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7903), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [200662] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7471), 1, + anon_sym_try, + STATE(519), 1, + sym_compound_statement, + STATE(523), 1, + sym_try_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [200694] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(7198), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2703), 1, + sym_enumerator_list, + STATE(5389), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(4405), 2, + sym__class_name, + sym_qualified_type_identifier, + [200726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7949), 1, + anon_sym_LBRACK, + ACTIONS(7947), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7834), 1, + anon_sym_LBRACK, + STATE(5129), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7832), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [200766] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7358), 1, + anon_sym_try, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(2084), 1, + sym_compound_statement, + STATE(2086), 1, + sym_try_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [200798] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(7741), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym_template_type, + STATE(2078), 1, + sym_enumerator_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(1922), 2, + sym__class_name, + sym_qualified_type_identifier, + [200830] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7892), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [200852] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7941), 1, + anon_sym_COLON, + STATE(3480), 1, + sym__enum_base_clause, + STATE(3484), 1, + sym_enumerator_list, + ACTIONS(4166), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4168), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [200878] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(7012), 1, + sym_identifier, + ACTIONS(7703), 1, + anon_sym_LBRACE, + STATE(2152), 1, + sym_template_type, + STATE(2647), 1, + sym_enumerator_list, + STATE(5362), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(2183), 2, + sym__class_name, + sym_qualified_type_identifier, + [200910] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(6974), 1, + sym_identifier, + ACTIONS(7770), 1, + anon_sym_LBRACE, + STATE(2191), 1, + sym_template_type, + STATE(2906), 1, + sym_enumerator_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(2387), 2, + sym__class_name, + sym_qualified_type_identifier, + [200942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7884), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [200964] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7425), 1, + anon_sym_try, + STATE(1026), 1, + sym_compound_statement, + STATE(1027), 1, + sym_try_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [200996] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6936), 1, + sym_identifier, + ACTIONS(7731), 1, + anon_sym_LBRACE, + STATE(1936), 1, + sym_template_type, + STATE(2386), 1, + sym_enumerator_list, + STATE(5349), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(1964), 2, + sym__class_name, + sym_qualified_type_identifier, + [201028] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7419), 1, + anon_sym_try, + STATE(963), 1, + sym_try_statement, + STATE(964), 1, + sym_compound_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7905), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201082] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7409), 1, + anon_sym_try, + STATE(952), 1, + sym_compound_statement, + STATE(953), 1, + sym_try_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6463), 1, + anon_sym_LBRACK, + ACTIONS(6461), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [201132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7852), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7953), 1, + anon_sym_LBRACK, + ACTIONS(7951), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [201172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4193), 1, + sym_parameter_list, + ACTIONS(7911), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201194] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(7090), 1, + sym_identifier, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + STATE(3311), 1, + sym_template_type, + STATE(3485), 1, + sym_enumerator_list, + STATE(5414), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5177), 2, + sym__class_name, + sym_qualified_type_identifier, + [201226] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7387), 1, + anon_sym_try, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(2267), 1, + sym_compound_statement, + STATE(2268), 1, + sym_try_statement, + STATE(4095), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_LBRACK, + ACTIONS(7945), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [201278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7957), 1, + anon_sym_LBRACK, + ACTIONS(7955), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [201296] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(6952), 1, + sym_identifier, + ACTIONS(7741), 1, + anon_sym_LBRACE, + STATE(1891), 1, + sym_template_type, + STATE(2078), 1, + sym_enumerator_list, + STATE(5371), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(2537), 2, + sym__class_name, + sym_qualified_type_identifier, + [201328] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(6946), 1, + anon_sym_LBRACE, + ACTIONS(6988), 1, + sym_identifier, + STATE(2422), 1, + sym_template_type, + STATE(2703), 1, + sym_enumerator_list, + STATE(5445), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3443), 2, + sym__class_name, + sym_qualified_type_identifier, + [201360] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LBRACE, + ACTIONS(6998), 1, + sym_identifier, + STATE(2776), 1, + sym_template_type, + STATE(3179), 1, + sym_enumerator_list, + STATE(5401), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3350), 2, + sym__class_name, + sym_qualified_type_identifier, + [201392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 1, + anon_sym_LBRACK, + ACTIONS(3746), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [201409] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7961), 1, + anon_sym_SEMI, + ACTIONS(7963), 1, + anon_sym_LBRACK, + STATE(5465), 1, + sym_parameter_list, + STATE(5873), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6465), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [201459] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(7965), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6704), 1, + sym_qualified_identifier, + ACTIONS(7967), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [201486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201501] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7903), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201522] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7894), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201543] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(7969), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5919), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201572] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7971), 1, + anon_sym_EQ, + STATE(3828), 1, + sym_parameter_list, + STATE(6934), 1, + sym_initializer_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7973), 1, + sym_identifier, + ACTIONS(7977), 1, + sym_system_lib_string, + STATE(7124), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7975), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [201622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(4895), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201671] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7892), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201707] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(7073), 1, + sym_qualified_identifier, + ACTIONS(7985), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [201734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7911), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201755] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7989), 1, + anon_sym_AMP, + ACTIONS(7991), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(7987), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [201774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7993), 1, + sym_identifier, + ACTIONS(7995), 1, + anon_sym_COLON_COLON, + STATE(5271), 1, + sym__scope_resolution, + STATE(5951), 1, + sym_field_initializer, + STATE(5641), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [201801] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(7812), 1, + anon_sym_LBRACK, + STATE(5116), 1, + sym_requires_clause, + ACTIONS(7810), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [201822] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(7997), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6018), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201851] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7852), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201872] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7905), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201893] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7993), 1, + sym_identifier, + ACTIONS(7995), 1, + anon_sym_COLON_COLON, + STATE(5271), 1, + sym__scope_resolution, + STATE(6413), 1, + sym_field_initializer, + STATE(5641), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [201920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4213), 1, + sym_parameter_list, + ACTIONS(7884), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [201941] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7963), 1, + anon_sym_LBRACK, + STATE(5465), 1, + sym_parameter_list, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7999), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [201966] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8001), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6093), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201995] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8003), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6059), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + ACTIONS(6704), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [202045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + ACTIONS(6700), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [202066] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(7761), 1, + anon_sym_LBRACK, + STATE(5071), 1, + sym_requires_clause, + ACTIONS(7759), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [202087] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8005), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5880), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202116] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(7755), 1, + anon_sym_LBRACK, + STATE(5080), 1, + sym_requires_clause, + ACTIONS(7753), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [202137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4172), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202152] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8007), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6087), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202211] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8009), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5993), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8011), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [202257] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8015), 1, + anon_sym_EQ, + STATE(4022), 1, + sym_parameter_list, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4158), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4176), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8017), 1, + sym_identifier, + ACTIONS(8019), 1, + sym_system_lib_string, + STATE(6966), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7975), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [202350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202365] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8021), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6073), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202409] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8023), 1, + anon_sym_EQ, + STATE(4022), 1, + sym_parameter_list, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(6122), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [202457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202472] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8025), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5916), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202501] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8027), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6767), 1, + sym_qualified_identifier, + ACTIONS(8029), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [202528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202543] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8031), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6674), 1, + sym_qualified_identifier, + ACTIONS(8033), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [202570] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8035), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5990), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202599] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(2175), 1, + sym_template_argument_list, + ACTIONS(3686), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3691), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [202622] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7995), 1, + anon_sym_COLON_COLON, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + anon_sym_template, + STATE(5271), 1, + sym__scope_resolution, + STATE(6545), 1, + sym_template_method, + STATE(6547), 1, + sym_dependent_field_identifier, + STATE(6548), 1, + sym_qualified_field_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [202651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8041), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6815), 1, + sym_qualified_identifier, + ACTIONS(8043), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [202678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [202693] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8045), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5965), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202722] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8047), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5893), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8049), 1, + sym_identifier, + ACTIONS(8051), 1, + sym_system_lib_string, + STATE(6823), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7975), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [202772] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7963), 1, + anon_sym_LBRACK, + STATE(5465), 1, + sym_parameter_list, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8053), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [202797] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8055), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6100), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202826] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8057), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5866), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202855] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8059), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(7009), 1, + sym_qualified_identifier, + ACTIONS(8061), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [202882] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8063), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6037), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202911] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8065), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(6095), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8067), 1, + sym_identifier, + ACTIONS(8069), 1, + sym_system_lib_string, + STATE(6928), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(7975), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [202961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 1, + anon_sym_LBRACK, + ACTIONS(3760), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [202978] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8071), 1, + anon_sym_SEMI, + STATE(5465), 1, + sym_parameter_list, + STATE(5842), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(2175), 1, + sym_template_argument_list, + ACTIONS(6419), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3885), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [203030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 1, + anon_sym_LBRACK, + ACTIONS(3742), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [203047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 1, + anon_sym_LBRACK, + ACTIONS(3752), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [203079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7981), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 8, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3736), 1, + anon_sym_LBRACK, + ACTIONS(3738), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [203113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8011), 1, + anon_sym_AMP_AMP, + ACTIONS(8073), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [203132] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7963), 1, + anon_sym_LBRACK, + STATE(5465), 1, + sym_parameter_list, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8075), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [203157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3795), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [203189] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8077), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6694), 1, + sym_qualified_identifier, + ACTIONS(8079), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [203216] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7963), 1, + anon_sym_LBRACK, + STATE(5465), 1, + sym_parameter_list, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8081), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [203241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3762), 1, + anon_sym_LBRACK, + ACTIONS(3764), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [203258] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5748), 2, + sym__class_name, + sym_qualified_type_identifier, + [203284] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7963), 1, + anon_sym_LBRACK, + STATE(5465), 1, + sym_parameter_list, + ACTIONS(8083), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203308] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4095), 1, + sym_parameter_list, + ACTIONS(7872), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203332] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4095), 1, + sym_parameter_list, + ACTIONS(7878), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4095), 1, + sym_parameter_list, + ACTIONS(7844), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203380] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + ACTIONS(7872), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203404] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4095), 1, + sym_parameter_list, + ACTIONS(7850), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203428] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4095), 1, + sym_parameter_list, + ACTIONS(7862), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8087), 1, + anon_sym_LBRACK, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8085), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + [203472] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(8089), 1, + anon_sym_SEMI, + ACTIONS(8091), 1, + anon_sym_EQ, + STATE(5447), 1, + aux_sym_field_declaration_repeat1, + STATE(7217), 1, + sym_initializer_list, + STATE(7218), 1, + sym_bitfield_clause, + [203500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8093), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8095), 1, + anon_sym_AMP_AMP, + ACTIONS(4895), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + anon_sym_requires, + [203518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + ACTIONS(6704), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [203536] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(8097), 1, + sym_identifier, + ACTIONS(8099), 1, + anon_sym_COLON_COLON, + STATE(3220), 1, + sym_template_type, + STATE(5390), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(3216), 2, + sym__class_name, + sym_qualified_type_identifier, + [203562] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3686), 1, + anon_sym_LBRACK, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(5033), 1, + sym_template_argument_list, + ACTIONS(3691), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [203584] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + ACTIONS(7878), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7911), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5146), 1, + sym_requires_clause, + ACTIONS(7759), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [203646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8095), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, + anon_sym_GT2, + anon_sym_requires, + [203662] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_identifier, + STATE(3311), 1, + sym_template_type, + STATE(5396), 1, + sym__scope_resolution, + STATE(6970), 1, + sym_dependent_type_identifier, + STATE(5832), 2, + sym__class_name, + sym_qualified_type_identifier, + [203688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + ACTIONS(6700), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [203706] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + ACTIONS(7850), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5133), 1, + sym_requires_clause, + ACTIONS(7753), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [203748] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + ACTIONS(7862), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7884), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203792] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_LBRACK, + STATE(5033), 1, + sym_template_argument_list, + ACTIONS(3885), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [203814] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + ACTIONS(7844), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + ACTIONS(6704), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [203856] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(8105), 1, + anon_sym_SEMI, + ACTIONS(8107), 1, + anon_sym_EQ, + STATE(5447), 1, + aux_sym_field_declaration_repeat1, + STATE(6881), 1, + sym_initializer_list, + STATE(6883), 1, + sym_bitfield_clause, + [203884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + ACTIONS(6700), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [203902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6830), 1, + anon_sym_requires, + STATE(5133), 1, + sym_requires_clause, + ACTIONS(7753), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [203920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7892), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7894), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6908), 1, + anon_sym_requires, + STATE(5146), 1, + sym_requires_clause, + ACTIONS(7759), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [203978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7905), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [203998] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(6966), 1, + anon_sym_COLON, + ACTIONS(7346), 1, + anon_sym_COMMA, + ACTIONS(8109), 1, + anon_sym_SEMI, + ACTIONS(8111), 1, + anon_sym_EQ, + STATE(5447), 1, + aux_sym_field_declaration_repeat1, + STATE(6915), 1, + sym_bitfield_clause, + STATE(6917), 1, + sym_initializer_list, + [204026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7852), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [204046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(7903), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [204066] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7112), 1, + anon_sym_COLON_COLON, + ACTIONS(8113), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_template, + STATE(2172), 1, + sym_qualified_type_identifier, + STATE(2307), 1, + sym_dependent_type_identifier, + STATE(2311), 1, + sym_template_type, + STATE(5336), 1, + sym__scope_resolution, + [204091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7911), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [204110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_AMP, + ACTIONS(8117), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_LBRACK, + [204127] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7884), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [204146] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7905), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [204165] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8123), 1, + anon_sym_delete, + ACTIONS(8125), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [204184] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8127), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7852), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [204226] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8129), 1, + anon_sym_RPAREN, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204249] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7204), 1, + anon_sym_COLON_COLON, + ACTIONS(8131), 1, + sym_identifier, + ACTIONS(8133), 1, + anon_sym_template, + STATE(1954), 1, + sym_dependent_type_identifier, + STATE(1972), 1, + sym_template_type, + STATE(2165), 1, + sym_qualified_type_identifier, + STATE(5345), 1, + sym__scope_resolution, + [204274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7852), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7911), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7911), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [204331] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(8135), 1, + sym_identifier, + ACTIONS(8137), 1, + anon_sym_template, + STATE(1942), 1, + sym_template_type, + STATE(1943), 1, + sym_dependent_type_identifier, + STATE(1965), 1, + sym_qualified_type_identifier, + STATE(5349), 1, + sym__scope_resolution, + [204356] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7892), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [204375] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7892), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204394] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6598), 1, + anon_sym_COLON_COLON, + ACTIONS(8139), 1, + sym_identifier, + ACTIONS(8141), 1, + anon_sym_template, + STATE(2168), 1, + sym_template_type, + STATE(2169), 1, + sym_dependent_type_identifier, + STATE(2392), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + [204419] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8143), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6950), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [204442] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5554), 1, + anon_sym_COLON_COLON, + ACTIONS(8145), 1, + sym_identifier, + ACTIONS(8147), 1, + anon_sym_template, + STATE(4364), 1, + sym_dependent_type_identifier, + STATE(4370), 1, + sym_template_type, + STATE(4388), 1, + sym_qualified_type_identifier, + STATE(5354), 1, + sym__scope_resolution, + [204467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_LBRACK, + ACTIONS(8149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8151), 1, + anon_sym_AMP_AMP, + ACTIONS(4895), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [204486] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8153), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6782), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [204509] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7862), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7894), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [204551] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7850), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204574] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7844), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204597] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(6106), 1, + sym_template_argument_list, + STATE(6105), 2, + sym_argument_list, + sym_initializer_list, + [204620] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6620), 1, + anon_sym_COLON_COLON, + ACTIONS(8155), 1, + sym_identifier, + ACTIONS(8157), 1, + anon_sym_template, + STATE(1954), 1, + sym_dependent_type_identifier, + STATE(1972), 1, + sym_template_type, + STATE(2165), 1, + sym_qualified_type_identifier, + STATE(5362), 1, + sym__scope_resolution, + [204645] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7878), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8159), 1, + anon_sym_delete, + ACTIONS(8161), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [204687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8163), 1, + anon_sym_delete, + ACTIONS(8165), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [204706] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(7872), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204729] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8167), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8169), 1, + anon_sym_delete, + ACTIONS(8171), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [204771] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8173), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6821), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [204794] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8175), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204817] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, + ACTIONS(8177), 1, + sym_identifier, + ACTIONS(8179), 1, + anon_sym_template, + STATE(1887), 1, + sym_template_type, + STATE(1889), 1, + sym_dependent_type_identifier, + STATE(1903), 1, + sym_qualified_type_identifier, + STATE(5371), 1, + sym__scope_resolution, + [204842] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8181), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(7028), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [204865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8183), 1, + anon_sym_delete, + ACTIONS(8185), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [204884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7905), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204903] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7903), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [204922] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8187), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4265), 1, + sym_parameter_list, + ACTIONS(8189), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [204964] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204987] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8193), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205010] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205033] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4658), 1, + anon_sym_COLON_COLON, + ACTIONS(8197), 1, + sym_identifier, + ACTIONS(8199), 1, + anon_sym_template, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(3432), 1, + sym_qualified_type_identifier, + STATE(5381), 1, + sym__scope_resolution, + [205058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 1, + anon_sym_AMP, + ACTIONS(5238), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [205073] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_COLON_COLON, + ACTIONS(8201), 1, + sym_identifier, + ACTIONS(8203), 1, + anon_sym_template, + STATE(2958), 1, + sym_qualified_type_identifier, + STATE(2966), 1, + sym_dependent_type_identifier, + STATE(2972), 1, + sym_template_type, + STATE(5383), 1, + sym__scope_resolution, + [205098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + anon_sym_AMP, + ACTIONS(5257), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [205113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_COLON_COLON, + ACTIONS(8197), 1, + sym_identifier, + ACTIONS(8199), 1, + anon_sym_template, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(5385), 1, + sym__scope_resolution, + [205138] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8205), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(7105), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205161] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8207), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7852), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [205203] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + anon_sym_COLON_COLON, + ACTIONS(8209), 1, + sym_identifier, + ACTIONS(8211), 1, + anon_sym_template, + STATE(2172), 1, + sym_qualified_type_identifier, + STATE(2307), 1, + sym_dependent_type_identifier, + STATE(2311), 1, + sym_template_type, + STATE(5389), 1, + sym__scope_resolution, + [205228] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8099), 1, + anon_sym_COLON_COLON, + ACTIONS(8213), 1, + sym_identifier, + ACTIONS(8215), 1, + anon_sym_template, + STATE(3215), 1, + sym_dependent_type_identifier, + STATE(3218), 1, + sym_qualified_type_identifier, + STATE(3229), 1, + sym_template_type, + STATE(5390), 1, + sym__scope_resolution, + [205253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8219), 1, + anon_sym_AMP, + ACTIONS(8217), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8223), 1, + anon_sym_AMP, + ACTIONS(8221), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205283] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8225), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_AMP, + ACTIONS(8117), 1, + anon_sym_AMP_AMP, + ACTIONS(8227), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4895), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205325] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8229), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6840), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205348] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2865), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3297), 1, + sym_qualified_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(5396), 1, + sym__scope_resolution, + [205373] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7903), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [205392] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8233), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6995), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 1, + anon_sym_AMP, + ACTIONS(5246), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_requires, + [205430] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + anon_sym_LBRACK, + ACTIONS(8151), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 5, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [205447] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6491), 1, + anon_sym_COLON_COLON, + ACTIONS(8235), 1, + sym_identifier, + ACTIONS(8237), 1, + anon_sym_template, + STATE(2826), 1, + sym_dependent_type_identifier, + STATE(2827), 1, + sym_template_type, + STATE(2957), 1, + sym_qualified_type_identifier, + STATE(5401), 1, + sym__scope_resolution, + [205472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7884), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [205491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8241), 1, + anon_sym_AMP, + ACTIONS(8239), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205506] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8243), 1, + anon_sym_delete, + ACTIONS(8245), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205525] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7905), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [205544] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8247), 1, + anon_sym_delete, + ACTIONS(8249), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205563] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8251), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8253), 1, + anon_sym_delete, + ACTIONS(8255), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205605] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7892), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [205624] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, + anon_sym_RPAREN, + STATE(4225), 1, + sym_parameter_list, + STATE(5470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205647] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7836), 1, + anon_sym_RPAREN, + STATE(4225), 1, + sym_parameter_list, + STATE(5470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205670] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8259), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6720), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205693] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7963), 1, + anon_sym_LBRACK, + ACTIONS(8261), 1, + anon_sym_RPAREN, + STATE(5465), 1, + sym_parameter_list, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205716] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7379), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(2172), 1, + sym_qualified_type_identifier, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(5414), 1, + sym__scope_resolution, + [205741] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8263), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6739), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205764] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7842), 1, + anon_sym_RPAREN, + STATE(4225), 1, + sym_parameter_list, + STATE(5470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205787] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8265), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6891), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(7894), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [205829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7989), 1, + anon_sym_AMP, + ACTIONS(7987), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205844] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5584), 1, + anon_sym_COLON_COLON, + ACTIONS(8237), 1, + anon_sym_template, + ACTIONS(8267), 1, + sym_identifier, + STATE(2826), 1, + sym_dependent_type_identifier, + STATE(2827), 1, + sym_template_type, + STATE(2957), 1, + sym_qualified_type_identifier, + STATE(5420), 1, + sym__scope_resolution, + [205869] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8269), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_parameter_list, + STATE(5191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205892] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8271), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5133), 1, + sym_requires_clause, + ACTIONS(7753), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [205932] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7677), 1, + anon_sym_COLON_COLON, + ACTIONS(8273), 1, + sym_identifier, + STATE(4984), 1, + sym__scope_resolution, + STATE(6664), 1, + sym_qualified_identifier, + STATE(6970), 2, + sym_template_type, + sym_dependent_type_identifier, + [205955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7892), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [205974] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7911), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [205993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7852), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7905), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206031] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5146), 1, + sym_requires_clause, + ACTIONS(7759), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [206048] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8275), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7884), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206090] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7903), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_AMP, + ACTIONS(3373), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [206124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + ACTIONS(6700), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [206141] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5524), 1, + anon_sym_COLON_COLON, + ACTIONS(8231), 1, + sym_identifier, + STATE(3282), 1, + sym_dependent_type_identifier, + STATE(3301), 1, + sym_template_type, + STATE(3432), 1, + sym_qualified_type_identifier, + STATE(5435), 1, + sym__scope_resolution, + [206166] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_requires, + STATE(5138), 1, + sym_requires_clause, + ACTIONS(6704), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [206183] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8277), 1, + anon_sym_delete, + ACTIONS(8279), 1, + anon_sym_new, + ACTIONS(8121), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8119), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [206202] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7894), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [206221] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4353), 1, + sym_parameter_list, + ACTIONS(7894), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7903), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [206259] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7709), 1, + anon_sym_RPAREN, + STATE(4225), 1, + sym_parameter_list, + STATE(5470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206282] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4334), 1, + sym_parameter_list, + ACTIONS(7884), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [206301] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7739), 1, + anon_sym_RPAREN, + STATE(4225), 1, + sym_parameter_list, + STATE(5470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206324] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7354), 1, + anon_sym_LBRACK, + ACTIONS(7707), 1, + anon_sym_RPAREN, + STATE(4225), 1, + sym_parameter_list, + STATE(5470), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206347] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6477), 1, + anon_sym_COLON_COLON, + ACTIONS(8211), 1, + anon_sym_template, + ACTIONS(8281), 1, + sym_identifier, + STATE(2172), 1, + sym_qualified_type_identifier, + STATE(2307), 1, + sym_dependent_type_identifier, + STATE(2311), 1, + sym_template_type, + STATE(5445), 1, + sym__scope_resolution, + [206372] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, + anon_sym_SEMI, + STATE(4108), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_COMMA, + STATE(5447), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(8288), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [206411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(7471), 1, + anon_sym_try, + ACTIONS(8290), 1, + anon_sym_SEMI, + ACTIONS(8292), 1, + anon_sym_EQ, + STATE(498), 2, + sym_compound_statement, + sym_try_statement, + [206431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8296), 1, + anon_sym_LBRACK, + ACTIONS(8294), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [206445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_TILDE, + ACTIONS(8298), 1, + sym_identifier, + ACTIONS(8300), 1, + anon_sym_template, + STATE(2517), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [206463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8304), 1, + anon_sym_LBRACK, + ACTIONS(8302), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [206477] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(7425), 1, + anon_sym_try, + ACTIONS(8306), 1, + anon_sym_SEMI, + ACTIONS(8308), 1, + anon_sym_EQ, + STATE(954), 2, + sym_compound_statement, + sym_try_statement, + [206497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_LBRACK, + ACTIONS(6648), 1, + anon_sym_requires, + STATE(5114), 1, + sym_requires_clause, + ACTIONS(6122), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [206515] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7387), 1, + anon_sym_try, + ACTIONS(7669), 1, + anon_sym_LBRACE, + ACTIONS(8310), 1, + anon_sym_SEMI, + ACTIONS(8312), 1, + anon_sym_EQ, + STATE(2305), 2, + sym_compound_statement, + sym_try_statement, + [206535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, + anon_sym_LBRACK, + ACTIONS(6648), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6465), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [206553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7409), 1, + anon_sym_try, + ACTIONS(8314), 1, + anon_sym_SEMI, + ACTIONS(8316), 1, + anon_sym_EQ, + STATE(935), 2, + sym_compound_statement, + sym_try_statement, + [206573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, + anon_sym_try, + ACTIONS(7639), 1, + anon_sym_LBRACE, + ACTIONS(8318), 1, + anon_sym_SEMI, + ACTIONS(8320), 1, + anon_sym_EQ, + STATE(2275), 2, + sym_compound_statement, + sym_try_statement, + [206593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(7812), 1, + anon_sym_LBRACK, + STATE(5116), 1, + sym_requires_clause, + ACTIONS(7810), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [206611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7387), 1, + anon_sym_try, + ACTIONS(7669), 1, + anon_sym_LBRACE, + ACTIONS(8322), 1, + anon_sym_SEMI, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(2426), 2, + sym_compound_statement, + sym_try_statement, + [206631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7894), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7903), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, + anon_sym_try, + ACTIONS(7639), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_SEMI, + ACTIONS(8328), 1, + anon_sym_EQ, + STATE(2375), 2, + sym_compound_statement, + sym_try_statement, + [206687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7884), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206705] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7905), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8332), 1, + anon_sym_LBRACK, + ACTIONS(8330), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [206737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7852), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7911), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7854), 1, + anon_sym_LBRACK, + STATE(4360), 1, + sym_parameter_list, + ACTIONS(7892), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8334), 1, + anon_sym_LBRACK, + ACTIONS(8337), 1, + anon_sym_EQ, + ACTIONS(8339), 1, + anon_sym_DOT, + STATE(5469), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [206809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7890), 1, + anon_sym_LBRACK, + ACTIONS(7888), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8344), 1, + anon_sym_LBRACK, + ACTIONS(8342), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [206841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7409), 1, + anon_sym_try, + ACTIONS(8346), 1, + anon_sym_SEMI, + ACTIONS(8348), 1, + anon_sym_EQ, + STATE(906), 2, + sym_compound_statement, + sym_try_statement, + [206861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8352), 1, + anon_sym_LBRACK, + ACTIONS(8350), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [206875] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8356), 1, + anon_sym_LBRACK, + ACTIONS(8354), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [206889] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + anon_sym_LBRACK, + STATE(3812), 1, + sym_parameter_list, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(7923), 1, + anon_sym_LBRACK, + STATE(5175), 1, + sym_template_argument_list, + ACTIONS(7919), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [206927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_TILDE, + ACTIONS(8358), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_template, + STATE(2517), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [206945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6463), 1, + anon_sym_LBRACK, + ACTIONS(6592), 1, + anon_sym_requires, + STATE(5178), 1, + sym_requires_clause, + ACTIONS(6461), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [206963] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6592), 1, + anon_sym_requires, + ACTIONS(7848), 1, + anon_sym_LBRACK, + STATE(5206), 1, + sym_requires_clause, + ACTIONS(7846), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [206981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7358), 1, + anon_sym_try, + ACTIONS(7605), 1, + anon_sym_LBRACE, + ACTIONS(8362), 1, + anon_sym_SEMI, + ACTIONS(8364), 1, + anon_sym_EQ, + STATE(2019), 2, + sym_compound_statement, + sym_try_statement, + [207001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(6706), 1, + anon_sym_LBRACK, + STATE(5042), 1, + sym_requires_clause, + ACTIONS(6704), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [207019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(6702), 1, + anon_sym_LBRACK, + STATE(5057), 1, + sym_requires_clause, + ACTIONS(6700), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [207037] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(7419), 1, + anon_sym_try, + ACTIONS(8366), 1, + anon_sym_SEMI, + ACTIONS(8368), 1, + anon_sym_EQ, + STATE(1012), 2, + sym_compound_statement, + sym_try_statement, + [207057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(7761), 1, + anon_sym_LBRACK, + STATE(5071), 1, + sym_requires_clause, + ACTIONS(7759), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [207075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_requires, + ACTIONS(7755), 1, + anon_sym_LBRACK, + STATE(5080), 1, + sym_requires_clause, + ACTIONS(7753), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [207093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7358), 1, + anon_sym_try, + ACTIONS(7605), 1, + anon_sym_LBRACE, + ACTIONS(8370), 1, + anon_sym_SEMI, + ACTIONS(8372), 1, + anon_sym_EQ, + STATE(2162), 2, + sym_compound_statement, + sym_try_statement, + [207113] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + ACTIONS(7419), 1, + anon_sym_try, + ACTIONS(8374), 1, + anon_sym_SEMI, + ACTIONS(8376), 1, + anon_sym_EQ, + STATE(1059), 2, + sym_compound_statement, + sym_try_statement, + [207133] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(7425), 1, + anon_sym_try, + ACTIONS(8378), 1, + anon_sym_SEMI, + ACTIONS(8380), 1, + anon_sym_EQ, + STATE(994), 2, + sym_compound_statement, + sym_try_statement, + [207153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8382), 1, + anon_sym_LBRACK, + ACTIONS(8384), 1, + anon_sym_EQ, + ACTIONS(8386), 1, + anon_sym_DOT, + STATE(5469), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [207171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7555), 1, + anon_sym_TILDE, + ACTIONS(8388), 1, + sym_identifier, + ACTIONS(8390), 1, + anon_sym_template, + STATE(2780), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [207189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8394), 1, + anon_sym_LBRACK, + ACTIONS(8392), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [207203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7533), 1, + anon_sym_TILDE, + ACTIONS(8396), 1, + sym_identifier, + ACTIONS(8398), 1, + anon_sym_template, + STATE(3025), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [207221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8402), 1, + anon_sym_LBRACK, + ACTIONS(8400), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [207235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(7471), 1, + anon_sym_try, + ACTIONS(8404), 1, + anon_sym_SEMI, + ACTIONS(8406), 1, + anon_sym_EQ, + STATE(506), 2, + sym_compound_statement, + sym_try_statement, + [207255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8408), 1, + anon_sym_SEMI, + ACTIONS(8410), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207274] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8412), 1, + anon_sym_SEMI, + ACTIONS(8414), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7905), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + ACTIONS(8418), 1, + anon_sym_COLON_COLON, + STATE(6314), 1, + sym_argument_list, + ACTIONS(8416), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [207327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7852), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8420), 1, + anon_sym_SEMI, + ACTIONS(8422), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7911), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7892), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7884), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8424), 1, + anon_sym_SEMI, + ACTIONS(8426), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207433] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6425), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6429), 1, + anon_sym_EQ, + ACTIONS(8428), 1, + sym_identifier, + ACTIONS(6427), 2, + anon_sym_COMMA, + anon_sym_GT2, + [207450] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(8430), 2, + anon_sym_COMMA, + anon_sym_GT2, + [207467] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8432), 1, + anon_sym_SEMI, + ACTIONS(8434), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7903), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + ACTIONS(7894), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + sym_auto, + ACTIONS(6457), 1, + anon_sym_decltype, + STATE(3455), 1, + sym_decltype_auto, + ACTIONS(8436), 2, + anon_sym_COMMA, + anon_sym_GT2, + [207537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8440), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8438), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [207550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8442), 2, + anon_sym_class, + anon_sym_typename, + STATE(6461), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [207563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4318), 1, + sym_parameter_list, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_GT2, + [207580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(6106), 1, + sym_template_argument_list, + ACTIONS(8444), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [207597] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8446), 1, + anon_sym_SEMI, + ACTIONS(8448), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207616] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8450), 1, + anon_sym_SEMI, + ACTIONS(8452), 1, + anon_sym_EQ, + STATE(3299), 1, + sym_template_argument_list, + [207635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(8013), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [207652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8456), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8454), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [207665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_field_declaration_list, + STATE(6369), 1, + sym_base_class_clause, + [207681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7427), 1, + anon_sym_LBRACE, + STATE(2882), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [207695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3524), 1, + sym_field_declaration_list, + STATE(6326), 1, + sym_base_class_clause, + [207711] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8458), 1, + anon_sym_DQUOTE, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [207727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(5944), 1, + sym_compound_statement, + STATE(6595), 1, + sym_field_initializer_list, + [207743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4545), 1, + sym_field_declaration_list, + STATE(6136), 1, + sym_base_class_clause, + [207759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8466), 1, + anon_sym_GT2, + STATE(6053), 1, + aux_sym_template_argument_list_repeat1, + [207775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 1, + anon_sym_LBRACE, + STATE(3670), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [207789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2806), 1, + sym_field_declaration_list, + STATE(6464), 1, + sym_base_class_clause, + [207805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4544), 1, + sym_field_declaration_list, + STATE(6124), 1, + sym_base_class_clause, + [207821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4542), 1, + sym_field_declaration_list, + STATE(6119), 1, + sym_base_class_clause, + [207837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4540), 1, + sym_field_declaration_list, + STATE(6116), 1, + sym_base_class_clause, + [207853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4028), 1, + sym_field_declaration_list, + STATE(6473), 1, + sym_base_class_clause, + [207869] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8468), 1, + anon_sym_DQUOTE, + ACTIONS(8470), 1, + aux_sym_string_literal_token1, + ACTIONS(8473), 1, + sym_escape_sequence, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [207885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4009), 1, + sym_field_declaration_list, + STATE(6523), 1, + sym_base_class_clause, + [207901] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4536), 1, + sym_field_declaration_list, + STATE(6121), 1, + sym_base_class_clause, + [207917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(3990), 1, + sym_field_declaration_list, + STATE(6472), 1, + sym_base_class_clause, + [207933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6992), 1, + anon_sym_LBRACE, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + STATE(3354), 1, + sym_requirement_seq, + STATE(6560), 1, + sym_requires_parameter_list, + [207949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4021), 1, + sym_field_declaration_list, + STATE(6531), 1, + sym_base_class_clause, + [207965] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4048), 1, + sym_field_declaration_list, + STATE(6533), 1, + sym_base_class_clause, + [207981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4055), 1, + sym_field_declaration_list, + STATE(6471), 1, + sym_base_class_clause, + [207997] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3537), 1, + sym_field_declaration_list, + STATE(6265), 1, + sym_base_class_clause, + [208013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8480), 1, + anon_sym_COMMA, + ACTIONS(8482), 1, + anon_sym_RBRACE, + STATE(6110), 1, + sym_enumerator, + [208029] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + ACTIONS(8486), 1, + anon_sym_EQ, + STATE(1043), 1, + sym_declaration_list, + [208045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4535), 1, + sym_field_declaration_list, + STATE(6131), 1, + sym_base_class_clause, + [208061] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8488), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [208077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_LBRACE, + STATE(3367), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208091] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8490), 1, + anon_sym_LF, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8494), 1, + sym_preproc_arg, + STATE(6539), 1, + sym_preproc_params, + [208107] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3476), 1, + sym_field_declaration_list, + STATE(6275), 1, + sym_base_class_clause, + [208123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1084), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [208139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2220), 1, + sym_field_declaration_list, + STATE(6268), 1, + sym_base_class_clause, + [208155] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2809), 1, + sym_field_declaration_list, + STATE(6405), 1, + sym_base_class_clause, + [208171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8498), 1, + anon_sym_COMMA, + ACTIONS(8500), 1, + anon_sym_RBRACE, + STATE(6004), 1, + sym_enumerator, + [208187] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1904), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208201] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8502), 1, + anon_sym_DQUOTE, + ACTIONS(8504), 1, + aux_sym_string_literal_token1, + ACTIONS(8506), 1, + sym_escape_sequence, + STATE(5522), 1, + aux_sym_string_literal_repeat1, + [208217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2924), 1, + sym_field_declaration_list, + STATE(6327), 1, + sym_base_class_clause, + [208233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3115), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208247] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + ACTIONS(8508), 1, + anon_sym_LBRACE, + STATE(5273), 1, + sym_requirement_seq, + STATE(6161), 1, + sym_requires_parameter_list, + [208263] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2913), 1, + sym_field_declaration_list, + STATE(6291), 1, + sym_base_class_clause, + [208279] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2918), 1, + sym_field_declaration_list, + STATE(6303), 1, + sym_base_class_clause, + [208295] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8510), 1, + anon_sym_COMMA, + ACTIONS(8512), 1, + anon_sym_RBRACE, + STATE(5958), 1, + sym_enumerator, + [208311] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4508), 1, + sym_field_declaration_list, + STATE(6152), 1, + sym_base_class_clause, + [208327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4482), 1, + sym_field_declaration_list, + STATE(6155), 1, + sym_base_class_clause, + [208343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4504), 1, + sym_field_declaration_list, + STATE(6158), 1, + sym_base_class_clause, + [208359] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8514), 1, + anon_sym_COMMA, + ACTIONS(8516), 1, + anon_sym_RBRACE, + STATE(6048), 1, + sym_enumerator, + [208375] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8518), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [208391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + ACTIONS(8520), 1, + anon_sym_EQ, + STATE(490), 1, + sym_declaration_list, + [208407] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8522), 1, + anon_sym_GT2, + STATE(6006), 1, + aux_sym_template_argument_list_repeat1, + [208423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3691), 1, + anon_sym_SEMI, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(1827), 1, + sym_template_argument_list, + [208439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2051), 1, + sym_field_declaration_list, + STATE(6615), 1, + sym_base_class_clause, + [208455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2056), 1, + sym_field_declaration_list, + STATE(6614), 1, + sym_base_class_clause, + [208471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2065), 1, + sym_field_declaration_list, + STATE(6612), 1, + sym_base_class_clause, + [208487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2711), 1, + sym_field_declaration_list, + STATE(6166), 1, + sym_base_class_clause, + [208503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6956), 1, + anon_sym_LBRACE, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + STATE(2498), 1, + sym_requirement_seq, + STATE(6250), 1, + sym_requires_parameter_list, + [208519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8524), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [208535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LBRACE, + STATE(2533), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208549] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_field_declaration_list, + STATE(6164), 1, + sym_base_class_clause, + [208565] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8526), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [208581] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8528), 1, + anon_sym_LF, + ACTIONS(8530), 1, + sym_preproc_arg, + STATE(6609), 1, + sym_preproc_params, + [208597] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8532), 1, + anon_sym_DQUOTE, + ACTIONS(8534), 1, + aux_sym_string_literal_token1, + ACTIONS(8536), 1, + sym_escape_sequence, + STATE(5613), 1, + aux_sym_string_literal_repeat1, + [208613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8538), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [208629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2716), 1, + sym_field_declaration_list, + STATE(6172), 1, + sym_base_class_clause, + [208645] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_base_class_clause, + [208661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_field_declaration_list, + STATE(6184), 1, + sym_base_class_clause, + [208677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2596), 1, + sym_field_declaration_list, + STATE(6174), 1, + sym_base_class_clause, + [208693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2922), 1, + sym_field_declaration_list, + STATE(6330), 1, + sym_base_class_clause, + [208709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3132), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2146), 1, + sym_field_declaration_list, + STATE(6604), 1, + sym_base_class_clause, + [208739] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8540), 1, + anon_sym_LF, + ACTIONS(8542), 1, + sym_preproc_arg, + STATE(6420), 1, + sym_preproc_params, + [208755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8544), 1, + anon_sym_GT2, + STATE(5921), 1, + aux_sym_template_argument_list_repeat1, + [208771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_field_declaration_list, + STATE(6332), 1, + sym_base_class_clause, + [208787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1082), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [208803] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2900), 1, + sym_field_declaration_list, + STATE(6336), 1, + sym_base_class_clause, + [208819] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2131), 1, + sym_field_declaration_list, + STATE(6611), 1, + sym_base_class_clause, + [208835] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3493), 1, + sym_field_declaration_list, + STATE(6362), 1, + sym_base_class_clause, + [208851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 1, + anon_sym_LBRACE, + STATE(3749), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208865] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2133), 1, + sym_field_declaration_list, + STATE(6608), 1, + sym_base_class_clause, + [208881] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4001), 1, + sym_field_declaration_list, + STATE(6485), 1, + sym_base_class_clause, + [208897] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2139), 1, + sym_field_declaration_list, + STATE(6607), 1, + sym_base_class_clause, + [208913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(5969), 1, + sym_compound_statement, + STATE(6558), 1, + sym_field_initializer_list, + [208929] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2599), 1, + sym_field_declaration_list, + STATE(6176), 1, + sym_base_class_clause, + [208945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4558), 1, + sym_field_declaration_list, + STATE(6135), 1, + sym_base_class_clause, + [208961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8546), 1, + anon_sym_COMMA, + ACTIONS(8548), 1, + anon_sym_RBRACE, + STATE(5962), 1, + sym_enumerator, + [208977] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2142), 1, + sym_field_declaration_list, + STATE(6605), 1, + sym_base_class_clause, + [208993] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_LBRACE, + ACTIONS(8550), 1, + sym_identifier, + STATE(486), 1, + sym_declaration_list, + STATE(6021), 1, + sym_namespace_definition_name, + [209009] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_field_declaration_list, + STATE(6410), 1, + sym_base_class_clause, + [209025] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4000), 1, + sym_field_declaration_list, + STATE(6487), 1, + sym_base_class_clause, + [209041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3184), 1, + sym_field_declaration_list, + STATE(6408), 1, + sym_base_class_clause, + [209057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6940), 1, + anon_sym_LBRACE, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + STATE(2839), 1, + sym_requirement_seq, + STATE(6463), 1, + sym_requires_parameter_list, + [209073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3186), 1, + sym_field_declaration_list, + STATE(6406), 1, + sym_base_class_clause, + [209089] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1086), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [209105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(6603), 1, + sym_argument_list, + ACTIONS(8552), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [209119] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2148), 1, + sym_field_declaration_list, + STATE(6600), 1, + sym_base_class_clause, + [209135] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + ACTIONS(8556), 1, + aux_sym_string_literal_token1, + ACTIONS(8558), 1, + sym_escape_sequence, + STATE(5576), 1, + aux_sym_string_literal_repeat1, + [209151] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8560), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [209167] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8562), 1, + anon_sym_GT2, + STATE(5987), 1, + aux_sym_template_argument_list_repeat1, + [209183] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2602), 1, + sym_field_declaration_list, + STATE(6177), 1, + sym_base_class_clause, + [209199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, + anon_sym_LBRACE, + STATE(5032), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_field_declaration_list, + STATE(6178), 1, + sym_base_class_clause, + [209229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3440), 1, + sym_field_declaration_list, + STATE(6352), 1, + sym_base_class_clause, + [209245] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2895), 1, + sym_field_declaration_list, + STATE(6343), 1, + sym_base_class_clause, + [209261] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_field_declaration_list, + STATE(6307), 1, + sym_base_class_clause, + [209277] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3447), 1, + sym_field_declaration_list, + STATE(6302), 1, + sym_base_class_clause, + [209293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2800), 1, + sym_field_declaration_list, + STATE(6346), 1, + sym_base_class_clause, + [209309] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + ACTIONS(8564), 1, + anon_sym_LBRACE, + STATE(1935), 1, + sym_requirement_seq, + STATE(6311), 1, + sym_requires_parameter_list, + [209325] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3438), 1, + sym_field_declaration_list, + STATE(6555), 1, + sym_base_class_clause, + [209341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7427), 1, + anon_sym_LBRACE, + STATE(2833), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_field_declaration_list, + STATE(6180), 1, + sym_base_class_clause, + [209371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_field_declaration_list, + STATE(6181), 1, + sym_base_class_clause, + [209387] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym_LBRACE, + STATE(3011), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(8566), 1, + sym_identifier, + STATE(1009), 1, + sym_declaration_list, + STATE(6043), 1, + sym_namespace_definition_name, + [209417] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2612), 1, + sym_field_declaration_list, + STATE(6186), 1, + sym_base_class_clause, + [209433] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + ACTIONS(8568), 1, + anon_sym_EQ, + STATE(980), 1, + sym_declaration_list, + [209449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4562), 1, + sym_field_declaration_list, + STATE(6138), 1, + sym_base_class_clause, + [209465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2722), 1, + sym_field_declaration_list, + STATE(6193), 1, + sym_base_class_clause, + [209481] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_field_declaration_list, + STATE(6187), 1, + sym_base_class_clause, + [209497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8570), 1, + anon_sym_GT2, + STATE(5961), 1, + aux_sym_template_argument_list_repeat1, + [209513] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_field_declaration_list, + STATE(6190), 1, + sym_base_class_clause, + [209529] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8572), 1, + anon_sym_GT2, + STATE(5887), 1, + aux_sym_template_argument_list_repeat1, + [209545] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8574), 1, + anon_sym_LF, + ACTIONS(8576), 1, + sym_preproc_arg, + STATE(6259), 1, + sym_preproc_params, + [209561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, + anon_sym_LBRACE, + STATE(5009), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8578), 1, + sym_identifier, + ACTIONS(8580), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [209587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(6091), 2, + sym_argument_list, + sym_initializer_list, + [209601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8582), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [209617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8584), 1, + anon_sym_GT2, + STATE(5985), 1, + aux_sym_template_argument_list_repeat1, + [209633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3195), 1, + sym_field_declaration_list, + STATE(6380), 1, + sym_base_class_clause, + [209649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8586), 1, + anon_sym_GT2, + STATE(6084), 1, + aux_sym_template_argument_list_repeat1, + [209665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3196), 1, + sym_field_declaration_list, + STATE(6378), 1, + sym_base_class_clause, + [209681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1907), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_field_declaration_list, + STATE(6373), 1, + sym_base_class_clause, + [209711] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2622), 1, + sym_field_declaration_list, + STATE(6194), 1, + sym_base_class_clause, + [209727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_field_declaration_list, + STATE(6372), 1, + sym_base_class_clause, + [209743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2623), 1, + sym_field_declaration_list, + STATE(6195), 1, + sym_base_class_clause, + [209759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3201), 1, + sym_field_declaration_list, + STATE(6370), 1, + sym_base_class_clause, + [209775] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8588), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [209791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4010), 1, + sym_field_declaration_list, + STATE(6484), 1, + sym_base_class_clause, + [209807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1085), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [209823] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4567), 1, + sym_field_declaration_list, + STATE(6140), 1, + sym_base_class_clause, + [209839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4570), 1, + sym_field_declaration_list, + STATE(6141), 1, + sym_base_class_clause, + [209855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_field_declaration_list, + STATE(6197), 1, + sym_base_class_clause, + [209871] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8590), 1, + anon_sym_GT2, + STATE(5929), 1, + aux_sym_template_argument_list_repeat1, + [209887] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2627), 1, + sym_field_declaration_list, + STATE(6198), 1, + sym_base_class_clause, + [209903] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8592), 1, + anon_sym_GT2, + STATE(5899), 1, + aux_sym_template_argument_list_repeat1, + [209919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4575), 1, + sym_field_declaration_list, + STATE(6142), 1, + sym_base_class_clause, + [209935] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8594), 1, + anon_sym_GT2, + STATE(6009), 1, + aux_sym_template_argument_list_repeat1, + [209951] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_field_declaration_list, + STATE(6203), 1, + sym_base_class_clause, + [209967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1913), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + ACTIONS(8596), 1, + anon_sym_RPAREN, + STATE(4348), 1, + sym_parameter_list, + [209997] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8598), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [210013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_field_declaration_list, + STATE(6204), 1, + sym_base_class_clause, + [210029] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2077), 1, + sym_field_declaration_list, + STATE(6591), 1, + sym_base_class_clause, + [210045] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_DQUOTE, + ACTIONS(8602), 1, + aux_sym_string_literal_token1, + ACTIONS(8604), 1, + sym_escape_sequence, + STATE(5673), 1, + aux_sym_string_literal_repeat1, + [210061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, + anon_sym_LBRACE, + STATE(5011), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + STATE(3021), 1, + sym_requirement_seq, + STATE(6428), 1, + sym_requires_parameter_list, + [210091] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8606), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [210107] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8608), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [210123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LBRACE, + STATE(2495), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210137] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6978), 1, + anon_sym_LBRACE, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + STATE(3110), 1, + sym_requirement_seq, + STATE(6570), 1, + sym_requires_parameter_list, + [210153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2087), 1, + sym_field_declaration_list, + STATE(6584), 1, + sym_base_class_clause, + [210169] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_field_declaration_list, + STATE(6213), 1, + sym_base_class_clause, + [210185] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2107), 1, + sym_field_declaration_list, + STATE(6578), 1, + sym_base_class_clause, + [210201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym_LBRACE, + STATE(3039), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210215] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2128), 1, + sym_field_declaration_list, + STATE(6575), 1, + sym_base_class_clause, + [210231] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2141), 1, + sym_field_declaration_list, + STATE(6573), 1, + sym_base_class_clause, + [210247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_LBRACE, + STATE(3325), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210261] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_field_declaration_list, + STATE(6215), 1, + sym_base_class_clause, + [210277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 1, + anon_sym_LBRACE, + STATE(3742), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(6097), 1, + sym_compound_statement, + STATE(6465), 1, + sym_field_initializer_list, + [210307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_field_declaration_list, + STATE(6217), 1, + sym_base_class_clause, + [210323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8610), 1, + anon_sym_COMMA, + ACTIONS(8612), 1, + anon_sym_RBRACE, + STATE(5937), 1, + sym_enumerator, + [210339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2746), 1, + sym_field_declaration_list, + STATE(6143), 1, + sym_base_class_clause, + [210355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2156), 1, + sym_field_declaration_list, + STATE(6568), 1, + sym_base_class_clause, + [210371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3207), 1, + sym_field_declaration_list, + STATE(6359), 1, + sym_base_class_clause, + [210387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2884), 1, + sym_field_declaration_list, + STATE(6368), 1, + sym_base_class_clause, + [210403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3431), 1, + sym_field_declaration_list, + STATE(6593), 1, + sym_base_class_clause, + [210419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3208), 1, + sym_field_declaration_list, + STATE(6357), 1, + sym_base_class_clause, + [210435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8614), 1, + anon_sym_GT2, + STATE(5890), 1, + aux_sym_template_argument_list_repeat1, + [210451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3211), 1, + sym_field_declaration_list, + STATE(6356), 1, + sym_base_class_clause, + [210467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2883), 1, + sym_field_declaration_list, + STATE(6375), 1, + sym_base_class_clause, + [210483] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8616), 1, + anon_sym_DQUOTE, + ACTIONS(8618), 1, + aux_sym_string_literal_token1, + ACTIONS(8620), 1, + sym_escape_sequence, + STATE(5674), 1, + aux_sym_string_literal_repeat1, + [210499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3212), 1, + sym_field_declaration_list, + STATE(6354), 1, + sym_base_class_clause, + [210515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2757), 1, + sym_field_declaration_list, + STATE(6286), 1, + sym_base_class_clause, + [210531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3214), 1, + sym_field_declaration_list, + STATE(6350), 1, + sym_base_class_clause, + [210547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(3284), 1, + sym_template_type, + STATE(5512), 1, + sym_template_parameter_list, + [210563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2874), 1, + sym_field_declaration_list, + STATE(6379), 1, + sym_base_class_clause, + [210579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym_field_declaration_list, + STATE(6345), 1, + sym_base_class_clause, + [210595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_field_declaration_list, + STATE(6279), 1, + sym_base_class_clause, + [210611] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1083), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [210627] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8622), 1, + anon_sym_LF, + ACTIONS(8624), 1, + sym_preproc_arg, + STATE(6309), 1, + sym_preproc_params, + [210643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8626), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [210653] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym_field_declaration_list, + STATE(6382), 1, + sym_base_class_clause, + [210669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2860), 1, + sym_field_declaration_list, + STATE(6384), 1, + sym_base_class_clause, + [210685] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2858), 1, + sym_field_declaration_list, + STATE(6389), 1, + sym_base_class_clause, + [210701] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4554), 1, + sym_field_declaration_list, + STATE(6133), 1, + sym_base_class_clause, + [210717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8628), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [210733] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8630), 1, + anon_sym_DQUOTE, + ACTIONS(8632), 1, + aux_sym_string_literal_token1, + ACTIONS(8634), 1, + sym_escape_sequence, + STATE(5564), 1, + aux_sym_string_literal_repeat1, + [210749] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2316), 1, + sym_field_declaration_list, + STATE(6236), 1, + sym_base_class_clause, + [210765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2803), 1, + sym_field_declaration_list, + STATE(6460), 1, + sym_base_class_clause, + [210781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_field_declaration_list, + STATE(6381), 1, + sym_base_class_clause, + [210797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8636), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [210813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym_LBRACE, + STATE(3031), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2208), 1, + sym_field_declaration_list, + STATE(6237), 1, + sym_base_class_clause, + [210843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8638), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(8642), 1, + anon_sym_LBRACE, + STATE(5857), 1, + aux_sym_base_class_clause_repeat1, + [210859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2799), 1, + sym_field_declaration_list, + STATE(6125), 1, + sym_base_class_clause, + [210875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8644), 1, + anon_sym_GT2, + STATE(6070), 1, + aux_sym_template_argument_list_repeat1, + [210891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3166), 1, + sym_field_declaration_list, + STATE(6342), 1, + sym_base_class_clause, + [210907] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_field_declaration_list, + STATE(6238), 1, + sym_base_class_clause, + [210923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7427), 1, + anon_sym_LBRACE, + STATE(2754), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7463), 1, + anon_sym_LBRACE, + STATE(5251), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210951] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_field_declaration_list, + STATE(6341), 1, + sym_base_class_clause, + [210967] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3517), 1, + sym_field_declaration_list, + STATE(6475), 1, + sym_base_class_clause, + [210983] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8646), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [210999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2752), 1, + sym_field_declaration_list, + STATE(6263), 1, + sym_base_class_clause, + [211015] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3160), 1, + sym_field_declaration_list, + STATE(6337), 1, + sym_base_class_clause, + [211031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8626), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [211041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3477), 1, + sym_field_declaration_list, + STATE(6281), 1, + sym_base_class_clause, + [211057] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2739), 1, + sym_field_declaration_list, + STATE(6249), 1, + sym_base_class_clause, + [211073] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_LBRACE, + STATE(3357), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4448), 1, + sym_field_declaration_list, + STATE(6123), 1, + sym_base_class_clause, + [211103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(1907), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3841), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + ACTIONS(8648), 1, + anon_sym_EQ, + STATE(1039), 1, + sym_declaration_list, + [211133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LBRACE, + ACTIONS(8650), 1, + sym_identifier, + STATE(937), 1, + sym_declaration_list, + STATE(6063), 1, + sym_namespace_definition_name, + [211149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_LBRACE, + STATE(2471), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211163] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8652), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [211179] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_LBRACE, + STATE(3125), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4016), 1, + sym_field_declaration_list, + STATE(6479), 1, + sym_base_class_clause, + [211209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2738), 1, + sym_field_declaration_list, + STATE(6235), 1, + sym_base_class_clause, + [211225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(5923), 1, + sym_compound_statement, + STATE(6437), 1, + sym_field_initializer_list, + [211241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2020), 1, + sym_field_declaration_list, + STATE(6516), 1, + sym_base_class_clause, + [211257] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(8654), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8656), 1, + anon_sym_LBRACE, + STATE(5989), 1, + aux_sym_base_class_clause_repeat1, + [211273] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2015), 1, + sym_field_declaration_list, + STATE(6514), 1, + sym_base_class_clause, + [211289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3511), 1, + sym_field_declaration_list, + STATE(6549), 1, + sym_base_class_clause, + [211305] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2276), 1, + sym_field_declaration_list, + STATE(6239), 1, + sym_base_class_clause, + [211321] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + ACTIONS(3978), 1, + anon_sym_COLON, + STATE(2002), 1, + sym_field_declaration_list, + STATE(6495), 1, + sym_base_class_clause, + [211337] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1088), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [211353] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8658), 1, + anon_sym_COMMA, + ACTIONS(8660), 1, + anon_sym_RBRACE, + STATE(5913), 1, + sym_enumerator, + [211369] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_field_declaration_list, + STATE(6338), 1, + sym_base_class_clause, + [211385] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8662), 1, + anon_sym_DQUOTE, + ACTIONS(8664), 1, + aux_sym_string_literal_token1, + ACTIONS(8666), 1, + sym_escape_sequence, + STATE(5780), 1, + aux_sym_string_literal_repeat1, + [211401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8668), 1, + anon_sym_COMMA, + ACTIONS(8670), 1, + anon_sym_RBRACE, + STATE(5981), 1, + sym_enumerator, + [211417] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym_field_declaration_list, + STATE(6496), 1, + sym_base_class_clause, + [211433] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2205), 1, + sym_field_declaration_list, + STATE(6242), 1, + sym_base_class_clause, + [211449] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8672), 1, + anon_sym_LF, + ACTIONS(8674), 1, + sym_preproc_arg, + STATE(6305), 1, + sym_preproc_params, + [211465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_LT, + ACTIONS(8496), 1, + sym_identifier, + STATE(1087), 1, + sym_template_parameter_list, + STATE(3284), 1, + sym_template_type, + [211481] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2304), 1, + sym_field_declaration_list, + STATE(6244), 1, + sym_base_class_clause, + [211497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8676), 1, + anon_sym_SEMI, + ACTIONS(8678), 1, + anon_sym_DASH_GT, + ACTIONS(8680), 1, + anon_sym_noexcept, + STATE(6962), 1, + sym_trailing_return_type, + [211513] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8682), 1, + anon_sym_GT2, + STATE(6031), 1, + aux_sym_template_argument_list_repeat1, + [211529] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3507), 1, + sym_field_declaration_list, + STATE(6556), 1, + sym_base_class_clause, + [211545] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(5834), 1, + sym_compound_statement, + STATE(6424), 1, + sym_field_initializer_list, + [211561] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8684), 1, + anon_sym_GT2, + STATE(6108), 1, + aux_sym_template_argument_list_repeat1, + [211577] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2306), 1, + sym_field_declaration_list, + STATE(6248), 1, + sym_base_class_clause, + [211593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3489), 1, + sym_field_declaration_list, + STATE(6587), 1, + sym_base_class_clause, + [211609] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8686), 1, + anon_sym_COMMA, + ACTIONS(8688), 1, + anon_sym_RBRACE, + STATE(5818), 1, + sym_enumerator, + [211625] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8492), 1, + anon_sym_LPAREN, + ACTIONS(8690), 1, + anon_sym_LF, + ACTIONS(8692), 1, + sym_preproc_arg, + STATE(6476), 1, + sym_preproc_params, + [211641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2332), 1, + sym_field_declaration_list, + STATE(6253), 1, + sym_base_class_clause, + [211657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6300), 1, + sym_base_class_clause, + [211673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4550), 1, + sym_field_declaration_list, + STATE(6127), 1, + sym_base_class_clause, + [211689] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2411), 1, + sym_field_declaration_list, + STATE(6298), 1, + sym_base_class_clause, + [211705] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym_field_declaration_list, + STATE(6497), 1, + sym_base_class_clause, + [211721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2428), 1, + sym_field_declaration_list, + STATE(6296), 1, + sym_base_class_clause, + [211737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7463), 1, + anon_sym_LBRACE, + STATE(5259), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3494), 1, + sym_field_declaration_list, + STATE(6576), 1, + sym_base_class_clause, + [211767] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8460), 1, + aux_sym_string_literal_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8694), 1, + anon_sym_DQUOTE, + STATE(5532), 1, + aux_sym_string_literal_repeat1, + [211783] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2336), 1, + sym_field_declaration_list, + STATE(6257), 1, + sym_base_class_clause, + [211799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3509), 1, + sym_field_declaration_list, + STATE(6318), 1, + sym_base_class_clause, + [211815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4042), 1, + sym_field_declaration_list, + STATE(6499), 1, + sym_base_class_clause, + [211831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4015), 1, + sym_field_declaration_list, + STATE(6481), 1, + sym_base_class_clause, + [211847] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3841), 1, + anon_sym_LBRACE, + ACTIONS(8696), 1, + sym_identifier, + STATE(945), 1, + sym_declaration_list, + STATE(5872), 1, + sym_namespace_definition_name, + [211863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2853), 1, + sym_field_declaration_list, + STATE(6396), 1, + sym_base_class_clause, + [211879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + ACTIONS(8698), 1, + anon_sym_LBRACE, + STATE(5026), 1, + sym_requirement_seq, + STATE(6221), 1, + sym_requires_parameter_list, + [211895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_field_declaration_list, + STATE(6397), 1, + sym_base_class_clause, + [211911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3499), 1, + sym_field_declaration_list, + STATE(6571), 1, + sym_base_class_clause, + [211927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_LBRACE, + ACTIONS(8476), 1, + anon_sym_LPAREN2, + STATE(3765), 1, + sym_requirement_seq, + STATE(6542), 1, + sym_requires_parameter_list, + [211943] = 5, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8700), 1, + anon_sym_DQUOTE, + ACTIONS(8702), 1, + aux_sym_string_literal_token1, + ACTIONS(8704), 1, + sym_escape_sequence, + STATE(5742), 1, + aux_sym_string_literal_repeat1, + [211959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(1904), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8706), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [211989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(1913), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [212003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(6002), 1, + sym_compound_statement, + STATE(6287), 1, + sym_field_initializer_list, + [212019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4011), 1, + sym_field_declaration_list, + STATE(6482), 1, + sym_base_class_clause, + [212035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_field_declaration_list, + STATE(6399), 1, + sym_base_class_clause, + [212051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7609), 1, + anon_sym_COLON, + STATE(5824), 1, + sym_compound_statement, + STATE(6353), 1, + sym_field_initializer_list, + [212067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4553), 1, + sym_field_declaration_list, + STATE(6130), 1, + sym_base_class_clause, + [212083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(5448), 1, + anon_sym_LT, + ACTIONS(8708), 1, + anon_sym_SEMI, + STATE(3299), 1, + sym_template_argument_list, + [212099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2217), 1, + sym_field_declaration_list, + STATE(6266), 1, + sym_base_class_clause, + [212115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4038), 1, + sym_field_declaration_list, + STATE(6500), 1, + sym_base_class_clause, + [212131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3501), 1, + sym_field_declaration_list, + STATE(6559), 1, + sym_base_class_clause, + [212147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8710), 1, + anon_sym_GT2, + STATE(5864), 1, + aux_sym_template_argument_list_repeat1, + [212163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4050), 1, + sym_field_declaration_list, + STATE(6502), 1, + sym_base_class_clause, + [212179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2226), 1, + sym_field_declaration_list, + STATE(6277), 1, + sym_base_class_clause, + [212195] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4045), 1, + sym_field_declaration_list, + STATE(6503), 1, + sym_base_class_clause, + [212211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_field_declaration_list, + STATE(6276), 1, + sym_base_class_clause, + [212227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + ACTIONS(8712), 1, + anon_sym_RPAREN, + STATE(4348), 1, + sym_parameter_list, + [212243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2223), 1, + sym_field_declaration_list, + STATE(6272), 1, + sym_base_class_clause, + [212259] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2743), 1, + sym_field_declaration_list, + STATE(6139), 1, + sym_base_class_clause, + [212275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_COLON, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2222), 1, + sym_field_declaration_list, + STATE(6270), 1, + sym_base_class_clause, + [212291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7463), 1, + anon_sym_LBRACE, + STATE(5264), 1, + sym_compound_statement, + ACTIONS(7749), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [212305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(8714), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [212318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8716), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [212331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, + anon_sym_RPAREN, + STATE(5844), 1, + aux_sym_argument_list_repeat1, + [212344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8718), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [212357] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8720), 1, + anon_sym_COMMA, + ACTIONS(8722), 1, + anon_sym_RBRACE, + STATE(5846), 1, + aux_sym_enumerator_list_repeat1, + [212370] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8724), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [212383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8726), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [212396] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8728), 1, + anon_sym_COMMA, + ACTIONS(8730), 1, + anon_sym_RPAREN, + STATE(6067), 1, + aux_sym_parameter_list_repeat1, + [212409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8732), 1, + anon_sym_COMMA, + ACTIONS(8735), 1, + anon_sym_LBRACE, + STATE(5822), 1, + aux_sym_field_initializer_list_repeat1, + [212422] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8737), 1, + anon_sym_COMMA, + ACTIONS(8740), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [212435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_catch, + STATE(416), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [212459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8746), 1, + anon_sym_GT2, + STATE(5865), 1, + aux_sym_template_argument_list_repeat1, + [212472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7278), 1, + anon_sym_RPAREN, + ACTIONS(8748), 1, + anon_sym_COMMA, + STATE(5827), 1, + aux_sym_preproc_argument_list_repeat1, + [212485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8751), 1, + anon_sym_COMMA, + ACTIONS(8754), 1, + anon_sym_RPAREN, + STATE(5828), 1, + aux_sym_preproc_params_repeat1, + [212498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8728), 1, + anon_sym_COMMA, + ACTIONS(8756), 1, + anon_sym_RPAREN, + STATE(6056), 1, + aux_sym_parameter_list_repeat1, + [212511] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8758), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [212524] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8760), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [212537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8762), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8764), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [212548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8766), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [212561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8768), 1, + anon_sym_catch, + STATE(1970), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + ACTIONS(8772), 1, + anon_sym_constexpr, + STATE(267), 1, + sym_condition_clause, + [212585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8774), 1, + anon_sym_COMMA, + ACTIONS(8777), 1, + anon_sym_RBRACK, + STATE(5836), 1, + aux_sym_structured_binding_declarator_repeat1, + [212598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(8781), 1, + anon_sym_RPAREN, + STATE(5902), 1, + aux_sym_throw_specifier_repeat1, + [212611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8783), 1, + sym_identifier, + STATE(2254), 1, + sym_template_type, + STATE(2832), 1, + sym_template_function, + [212624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8785), 1, + anon_sym_SEMI, + STATE(5831), 1, + aux_sym_declaration_repeat1, + [212637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8787), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [212650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8789), 1, + anon_sym_COMMA, + ACTIONS(8791), 1, + anon_sym_RPAREN, + STATE(5997), 1, + aux_sym_requires_parameter_list_repeat1, + [212663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8793), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [212676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8797), 1, + anon_sym_RPAREN, + ACTIONS(8795), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [212687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(8799), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [212700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8801), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [212713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8801), 1, + anon_sym_RBRACE, + ACTIONS(8803), 1, + anon_sym_COMMA, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [212726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8805), 1, + anon_sym_catch, + STATE(1901), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8809), 1, + anon_sym_RBRACK_RBRACK, + STATE(5852), 1, + aux_sym_attribute_declaration_repeat1, + [212750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8811), 1, + anon_sym_COMMA, + ACTIONS(8813), 1, + anon_sym_GT2, + STATE(6047), 1, + aux_sym_template_parameter_list_repeat1, + [212763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8815), 1, + anon_sym_COMMA, + ACTIONS(8818), 1, + anon_sym_RPAREN, + STATE(5850), 1, + aux_sym_parameter_list_repeat1, + [212776] = 4, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8820), 1, + anon_sym_LF, + STATE(4683), 1, + sym_preproc_argument_list, + [212789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8822), 1, + anon_sym_RBRACK_RBRACK, + STATE(5954), 1, + aux_sym_attribute_declaration_repeat1, + [212802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8824), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [212815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8826), 1, + anon_sym_GT2, + STATE(6033), 1, + aux_sym_template_argument_list_repeat1, + [212828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(8828), 1, + anon_sym_LBRACE, + STATE(5999), 1, + aux_sym_base_class_clause_repeat1, + [212841] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3327), 1, + anon_sym_RBRACE, + ACTIONS(8830), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [212854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(8656), 1, + anon_sym_LBRACE, + STATE(5999), 1, + aux_sym_base_class_clause_repeat1, + [212867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8832), 1, + anon_sym_COMMA, + ACTIONS(8835), 1, + anon_sym_RPAREN, + STATE(5858), 1, + aux_sym_requires_parameter_list_repeat1, + [212880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5832), 1, + anon_sym_COMMA, + ACTIONS(5834), 1, + anon_sym_RBRACE, + STATE(6027), 1, + aux_sym_initializer_list_repeat1, + [212893] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8837), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [212906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8839), 1, + anon_sym_RBRACK_RBRACK, + STATE(5906), 1, + aux_sym_attribute_declaration_repeat1, + [212919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5902), 1, + anon_sym_RPAREN, + STATE(5922), 1, + aux_sym_argument_list_repeat1, + [212932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8841), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [212945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [212958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8845), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [212971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8847), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [212984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8849), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [212997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8851), 1, + anon_sym_COMMA, + ACTIONS(8854), 1, + anon_sym_GT2, + STATE(5868), 1, + aux_sym_template_parameter_list_repeat1, + [213010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8856), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [213019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8768), 1, + anon_sym_catch, + STATE(1981), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8858), 1, + anon_sym_catch, + STATE(336), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3841), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + STATE(1039), 1, + sym_declaration_list, + [213054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8860), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [213067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8862), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [213080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + ACTIONS(8864), 1, + anon_sym_constexpr, + STATE(173), 1, + sym_condition_clause, + [213093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8866), 1, + anon_sym_SEMI, + STATE(5952), 1, + aux_sym_declaration_repeat1, + [213106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8868), 1, + anon_sym_catch, + STATE(335), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8870), 1, + sym_identifier, + STATE(3284), 1, + sym_template_type, + STATE(5139), 1, + sym_template_function, + [213130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8872), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [213143] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8874), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [213156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8464), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8876), 2, + anon_sym_COMMA, + anon_sym_GT2, + [213167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8805), 1, + anon_sym_catch, + STATE(1892), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8878), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [213187] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_RBRACE, + ACTIONS(8880), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [213200] = 4, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8882), 1, + anon_sym_LF, + STATE(4683), 1, + sym_preproc_argument_list, + [213213] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8884), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213226] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8886), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213239] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8888), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8890), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7991), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [213287] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_RBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [213300] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8896), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [213313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213326] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8811), 1, + anon_sym_COMMA, + ACTIONS(8900), 1, + anon_sym_GT2, + STATE(5979), 1, + aux_sym_template_parameter_list_repeat1, + [213339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5625), 2, + anon_sym_COMMA, + anon_sym_GT2, + [213350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8902), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8678), 1, + anon_sym_DASH_GT, + ACTIONS(8904), 1, + anon_sym_SEMI, + STATE(7007), 1, + sym_trailing_return_type, + [213376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8906), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6065), 1, + anon_sym_RBRACK, + ACTIONS(8908), 1, + anon_sym_COMMA, + STATE(5900), 1, + aux_sym_lambda_capture_specifier_repeat1, + [213402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8911), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(8913), 1, + anon_sym_RPAREN, + STATE(5978), 1, + aux_sym_throw_specifier_repeat1, + [213428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8915), 1, + anon_sym_catch, + STATE(1102), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213439] = 4, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8917), 1, + anon_sym_LF, + STATE(4683), 1, + sym_preproc_argument_list, + [213452] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8919), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [213465] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8921), 1, + anon_sym_RBRACK_RBRACK, + STATE(5954), 1, + aux_sym_attribute_declaration_repeat1, + [213478] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8923), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213491] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8925), 1, + anon_sym_GT2, + STATE(5889), 1, + aux_sym_template_argument_list_repeat1, + [213504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8927), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [213517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5836), 1, + anon_sym_RPAREN, + STATE(5814), 1, + aux_sym_argument_list_repeat1, + [213530] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8929), 1, + anon_sym_COMMA, + ACTIONS(8931), 1, + anon_sym_RBRACE, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [213543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8931), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [213556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8933), 1, + anon_sym_COMMA, + ACTIONS(8935), 1, + anon_sym_RBRACE, + STATE(5996), 1, + aux_sym_enumerator_list_repeat1, + [213569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8937), 1, + anon_sym_COMMA, + ACTIONS(8939), 1, + anon_sym_RBRACE, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [213582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(8941), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [213595] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8943), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [213608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8939), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [213621] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(8945), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [213634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(8947), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [213647] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + ACTIONS(8949), 1, + anon_sym_constexpr, + STATE(197), 1, + sym_condition_clause, + [213660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8951), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(8953), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [213686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8805), 1, + anon_sym_catch, + STATE(1880), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8955), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8957), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8768), 1, + anon_sym_catch, + STATE(1966), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, + anon_sym_LPAREN2, + ACTIONS(8103), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_parameter_list, + [213747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 1, + anon_sym_RBRACE, + ACTIONS(8959), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [213760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8962), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213773] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8964), 1, + anon_sym_SEMI, + STATE(5960), 1, + aux_sym_declaration_repeat1, + [213786] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8966), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [213799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(8968), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [213812] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8970), 1, + sym_identifier, + STATE(2825), 1, + sym_template_type, + STATE(3092), 1, + sym_template_function, + [213825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8972), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [213838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8968), 1, + anon_sym_RBRACE, + ACTIONS(8974), 1, + anon_sym_COMMA, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [213851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8976), 1, + anon_sym_GT2, + STATE(5925), 1, + aux_sym_template_argument_list_repeat1, + [213864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8978), 1, + anon_sym_COMMA, + ACTIONS(8980), 1, + anon_sym_RBRACE, + STATE(5968), 1, + aux_sym_enumerator_list_repeat1, + [213877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8982), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [213890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_COMMA, + ACTIONS(8984), 1, + anon_sym_RBRACK, + STATE(5836), 1, + aux_sym_structured_binding_declarator_repeat1, + [213903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + anon_sym_COMMA, + ACTIONS(8986), 1, + anon_sym_RBRACK, + STATE(5900), 1, + aux_sym_lambda_capture_specifier_repeat1, + [213916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, + anon_sym_RBRACE, + STATE(6001), 1, + aux_sym_initializer_list_repeat1, + [213929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8988), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [213938] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8990), 1, + anon_sym_GT2, + STATE(5897), 1, + aux_sym_template_argument_list_repeat1, + [213951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8868), 1, + anon_sym_catch, + STATE(334), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 1, + sym_identifier, + ACTIONS(8994), 2, + anon_sym_COMMA, + anon_sym_GT2, + [213973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 1, + anon_sym_COMMA, + ACTIONS(5914), 1, + anon_sym_RBRACE, + STATE(5856), 1, + aux_sym_initializer_list_repeat1, + [213986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(8996), 1, + anon_sym_GT2, + STATE(6010), 1, + aux_sym_template_argument_list_repeat1, + [213999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(8998), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [214012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9000), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [214025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9002), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [214038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9004), 1, + anon_sym_COMMA, + ACTIONS(9006), 1, + anon_sym_LBRACE, + STATE(6011), 1, + aux_sym_field_initializer_list_repeat1, + [214051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9008), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [214064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9010), 1, + anon_sym_GT2, + STATE(5986), 1, + aux_sym_template_argument_list_repeat1, + [214077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9012), 1, + anon_sym_COMMA, + ACTIONS(9015), 1, + anon_sym_RBRACK_RBRACK, + STATE(5954), 1, + aux_sym_attribute_declaration_repeat1, + [214090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(8656), 1, + anon_sym_LBRACE, + STATE(5989), 1, + aux_sym_base_class_clause_repeat1, + [214103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9017), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [214116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9019), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_COMMA, + ACTIONS(9023), 1, + anon_sym_RBRACE, + STATE(5935), 1, + aux_sym_enumerator_list_repeat1, + [214142] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9025), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [214155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9027), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [214168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9029), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9031), 1, + anon_sym_COMMA, + ACTIONS(9033), 1, + anon_sym_RBRACE, + STATE(5914), 1, + aux_sym_enumerator_list_repeat1, + [214194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9035), 1, + anon_sym_GT2, + STATE(5886), 1, + aux_sym_template_argument_list_repeat1, + [214207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9037), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9039), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [214233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, + anon_sym_RPAREN, + STATE(5918), 1, + aux_sym_argument_list_repeat1, + [214246] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9041), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [214259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9041), 1, + anon_sym_RBRACE, + ACTIONS(9043), 1, + anon_sym_COMMA, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [214272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9045), 1, + anon_sym_catch, + STATE(1982), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [214283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9047), 1, + anon_sym_GT2, + STATE(5957), 1, + aux_sym_template_argument_list_repeat1, + [214296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9051), 1, + anon_sym_EQ, + ACTIONS(9049), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [214307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9055), 1, + anon_sym_RPAREN, + ACTIONS(9053), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [214318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9057), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [214327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9057), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [214336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5812), 1, + anon_sym_COMMA, + ACTIONS(5814), 1, + anon_sym_RBRACE, + STATE(5892), 1, + aux_sym_initializer_list_repeat1, + [214349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9059), 1, + sym_identifier, + STATE(2688), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [214362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5882), 1, + anon_sym_RPAREN, + STATE(6035), 1, + aux_sym_argument_list_repeat1, + [214375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9061), 1, + anon_sym_COMMA, + ACTIONS(9064), 1, + anon_sym_RPAREN, + STATE(5978), 1, + aux_sym_throw_specifier_repeat1, + [214388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8811), 1, + anon_sym_COMMA, + ACTIONS(9066), 1, + anon_sym_GT2, + STATE(5868), 1, + aux_sym_template_parameter_list_repeat1, + [214401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9068), 1, + anon_sym_SEMI, + STATE(5931), 1, + aux_sym_declaration_repeat1, + [214414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9070), 1, + anon_sym_COMMA, + ACTIONS(9072), 1, + anon_sym_RBRACE, + STATE(6068), 1, + aux_sym_enumerator_list_repeat1, + [214427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9074), 1, + anon_sym_GT2, + STATE(5924), 1, + aux_sym_template_argument_list_repeat1, + [214440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9076), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9078), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214466] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9080), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9082), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9084), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9086), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(9088), 1, + anon_sym_LBRACE, + STATE(5999), 1, + aux_sym_base_class_clause_repeat1, + [214531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9090), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [214544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9092), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [214557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9094), 1, + anon_sym_GT2, + STATE(5983), 1, + aux_sym_template_argument_list_repeat1, + [214570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9096), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [214583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(9098), 1, + anon_sym_RBRACK_RBRACK, + STATE(5954), 1, + aux_sym_attribute_declaration_repeat1, + [214596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9100), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [214609] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9100), 1, + anon_sym_RBRACE, + ACTIONS(9102), 1, + anon_sym_COMMA, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [214622] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8789), 1, + anon_sym_COMMA, + ACTIONS(9104), 1, + anon_sym_RPAREN, + STATE(5858), 1, + aux_sym_requires_parameter_list_repeat1, + [214635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9106), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [214648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_COMMA, + ACTIONS(9111), 1, + anon_sym_LBRACE, + STATE(5999), 1, + aux_sym_base_class_clause_repeat1, + [214661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9111), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [214672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_RBRACE, + ACTIONS(9115), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [214685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9117), 1, + anon_sym_catch, + STATE(390), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [214696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9119), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9121), 1, + anon_sym_COMMA, + ACTIONS(9123), 1, + anon_sym_RBRACE, + STATE(5911), 1, + aux_sym_enumerator_list_repeat1, + [214722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9125), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214735] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9127), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5824), 1, + anon_sym_RPAREN, + STATE(5915), 1, + aux_sym_argument_list_repeat1, + [214761] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(9129), 1, + anon_sym_RBRACK_RBRACK, + STATE(5954), 1, + aux_sym_attribute_declaration_repeat1, + [214774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9131), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9133), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214800] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9004), 1, + anon_sym_COMMA, + ACTIONS(9135), 1, + anon_sym_LBRACE, + STATE(5822), 1, + aux_sym_field_initializer_list_repeat1, + [214813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9137), 1, + sym_identifier, + STATE(2531), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [214826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(9139), 1, + anon_sym_RBRACK_RBRACK, + STATE(5954), 1, + aux_sym_attribute_declaration_repeat1, + [214839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(9088), 1, + anon_sym_LBRACE, + STATE(5855), 1, + aux_sym_base_class_clause_repeat1, + [214852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9045), 1, + anon_sym_catch, + STATE(1983), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [214863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + anon_sym_COMMA, + ACTIONS(9141), 1, + anon_sym_RBRACK, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + [214876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9143), 1, + anon_sym_SEMI, + STATE(5948), 1, + aux_sym_declaration_repeat1, + [214889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9145), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [214902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9147), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [214915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9149), 1, + sym_identifier, + STATE(2531), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [214928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + STATE(490), 1, + sym_declaration_list, + [214941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9151), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [214954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9153), 1, + anon_sym_GT2, + STATE(6005), 1, + aux_sym_template_argument_list_repeat1, + [214967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9155), 1, + anon_sym_COMMA, + ACTIONS(9158), 1, + anon_sym_RBRACE, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [214980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9160), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [214993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8868), 1, + anon_sym_catch, + STATE(318), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215004] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(9162), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [215017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5844), 1, + anon_sym_COMMA, + ACTIONS(9164), 1, + anon_sym_RBRACK, + STATE(5900), 1, + aux_sym_lambda_capture_specifier_repeat1, + [215030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6101), 1, + anon_sym_RPAREN, + ACTIONS(9166), 1, + anon_sym_COMMA, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [215043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9169), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9171), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5754), 1, + anon_sym_RBRACE, + ACTIONS(5880), 1, + anon_sym_COMMA, + STATE(5884), 1, + aux_sym_initializer_list_repeat1, + [215082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9117), 1, + anon_sym_catch, + STATE(344), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(9175), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [215119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_RBRACK_RBRACK, + STATE(6013), 1, + aux_sym_attribute_declaration_repeat1, + [215132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9179), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + ACTIONS(9181), 1, + anon_sym_constexpr, + STATE(193), 1, + sym_condition_clause, + [215158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9183), 1, + sym_identifier, + STATE(2254), 1, + sym_template_type, + STATE(2688), 1, + sym_template_function, + [215171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9185), 1, + anon_sym_COMMA, + ACTIONS(9188), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + ACTIONS(9190), 1, + anon_sym_constexpr, + STATE(165), 1, + sym_condition_clause, + [215197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9192), 1, + anon_sym_COMMA, + ACTIONS(9194), 1, + anon_sym_RPAREN, + STATE(5828), 1, + aux_sym_preproc_params_repeat1, + [215210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3845), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + STATE(1043), 1, + sym_declaration_list, + [215223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9196), 1, + sym_identifier, + STATE(3092), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [215236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7050), 1, + anon_sym_COMMA, + ACTIONS(9198), 1, + anon_sym_RPAREN, + STATE(5827), 1, + aux_sym_preproc_argument_list_repeat1, + [215249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(9200), 1, + anon_sym_RBRACK_RBRACK, + STATE(6008), 1, + aux_sym_attribute_declaration_repeat1, + [215262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8811), 1, + anon_sym_COMMA, + ACTIONS(9202), 1, + anon_sym_GT2, + STATE(5868), 1, + aux_sym_template_parameter_list_repeat1, + [215275] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9204), 1, + anon_sym_COMMA, + ACTIONS(9206), 1, + anon_sym_RBRACE, + STATE(6076), 1, + aux_sym_enumerator_list_repeat1, + [215288] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9208), 1, + anon_sym_SEMI, + STATE(5825), 1, + aux_sym_declaration_repeat1, + [215301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9210), 1, + sym_identifier, + STATE(2170), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [215314] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9212), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, + anon_sym_RBRACK_RBRACK, + STATE(5994), 1, + aux_sym_attribute_declaration_repeat1, + [215340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9216), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9218), 1, + anon_sym_COMMA, + ACTIONS(9221), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [215366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9223), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8728), 1, + anon_sym_COMMA, + ACTIONS(9225), 1, + anon_sym_RPAREN, + STATE(5850), 1, + aux_sym_parameter_list_repeat1, + [215392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9227), 1, + anon_sym_GT2, + STATE(6051), 1, + aux_sym_template_argument_list_repeat1, + [215405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9229), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [215418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9231), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8858), 1, + anon_sym_catch, + STATE(477), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215442] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9233), 1, + anon_sym_SEMI, + STATE(5820), 1, + aux_sym_declaration_repeat1, + [215455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9045), 1, + anon_sym_catch, + STATE(1950), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215466] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LBRACE, + ACTIONS(8484), 1, + anon_sym_COLON_COLON, + STATE(980), 1, + sym_declaration_list, + [215479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9235), 1, + anon_sym_GT2, + STATE(6085), 1, + aux_sym_template_argument_list_repeat1, + [215492] = 4, + ACTIONS(7078), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9237), 1, + anon_sym_LF, + STATE(4683), 1, + sym_preproc_argument_list, + [215505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9239), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8728), 1, + anon_sym_COMMA, + ACTIONS(9241), 1, + anon_sym_RPAREN, + STATE(5850), 1, + aux_sym_parameter_list_repeat1, + [215531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9017), 1, + anon_sym_RBRACE, + ACTIONS(9243), 1, + anon_sym_COMMA, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [215544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_catch, + STATE(402), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215555] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9245), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(9247), 1, + anon_sym_RPAREN, + STATE(6113), 1, + aux_sym_throw_specifier_repeat1, + [215581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9249), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215594] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9251), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3331), 1, + anon_sym_RBRACE, + ACTIONS(9253), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_initializer_list_repeat1, + [215620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9255), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [215633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9255), 1, + anon_sym_RBRACE, + ACTIONS(9257), 1, + anon_sym_COMMA, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [215646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9117), 1, + anon_sym_catch, + STATE(422), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_catch, + STATE(341), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215668] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 1, + sym_identifier, + STATE(2531), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [215681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9261), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [215694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9263), 1, + sym_identifier, + STATE(2211), 1, + sym_template_method, + STATE(3284), 1, + sym_template_type, + [215707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9265), 1, + sym_identifier, + STATE(2832), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [215720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9267), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9269), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9271), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [215759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9273), 1, + anon_sym_COMMA, + ACTIONS(9275), 1, + anon_sym_RBRACE, + STATE(6024), 1, + aux_sym_enumerator_list_repeat1, + [215772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9277), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9279), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [215798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9275), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [215811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(9281), 1, + anon_sym_RPAREN, + STATE(6029), 1, + aux_sym_argument_list_repeat1, + [215824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9283), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9285), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [215835] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + ACTIONS(9287), 1, + anon_sym_constexpr, + STATE(245), 1, + sym_condition_clause, + [215848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9289), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215861] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7050), 1, + anon_sym_COMMA, + ACTIONS(9291), 1, + anon_sym_RPAREN, + STATE(5827), 1, + aux_sym_preproc_argument_list_repeat1, + [215874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9293), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + ACTIONS(9295), 1, + anon_sym_RBRACE, + STATE(6617), 1, + sym_enumerator, + [215900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8858), 1, + anon_sym_catch, + STATE(446), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9297), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [215924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(9299), 1, + anon_sym_SEMI, + STATE(6054), 1, + aux_sym_declaration_repeat1, + [215937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7959), 1, + anon_sym_COMMA, + ACTIONS(9301), 1, + anon_sym_SEMI, + STATE(6040), 1, + aux_sym_type_definition_repeat2, + [215950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9303), 1, + anon_sym_GT2, + STATE(6066), 1, + aux_sym_template_argument_list_repeat1, + [215963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5896), 1, + anon_sym_COMMA, + ACTIONS(5898), 1, + anon_sym_RBRACE, + STATE(6074), 1, + aux_sym_initializer_list_repeat1, + [215976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9305), 1, + sym_identifier, + STATE(2832), 1, + sym_template_function, + STATE(3284), 1, + sym_template_type, + [215989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9307), 1, + anon_sym_GT2, + STATE(6109), 1, + aux_sym_template_argument_list_repeat1, + [216002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9309), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9311), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [216013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3771), 1, + anon_sym_COLON_COLON, + ACTIONS(5013), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [216024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9313), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [216037] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9315), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [216050] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_COMMA, + ACTIONS(9317), 1, + anon_sym_GT2, + STATE(5823), 1, + aux_sym_template_argument_list_repeat1, + [216063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9319), 1, + anon_sym_COMMA, + ACTIONS(9321), 1, + anon_sym_RBRACE, + STATE(6086), 1, + aux_sym_enumerator_list_repeat1, + [216076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_COMMA, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(6090), 1, + aux_sym_argument_list_repeat1, + [216089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9192), 1, + anon_sym_COMMA, + ACTIONS(9323), 1, + anon_sym_RPAREN, + STATE(6042), 1, + aux_sym_preproc_params_repeat1, + [216102] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8779), 1, + anon_sym_COMMA, + ACTIONS(9325), 1, + anon_sym_RPAREN, + STATE(5978), 1, + aux_sym_throw_specifier_repeat1, + [216115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_field_declaration_list, + [216125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(340), 1, + sym_compound_statement, + [216135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4554), 1, + sym_field_declaration_list, + [216145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4448), 1, + sym_field_declaration_list, + [216155] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9327), 1, + anon_sym_LF, + ACTIONS(9329), 1, + sym_preproc_arg, + [216165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4556), 1, + sym_field_declaration_list, + [216175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9331), 1, + sym_identifier, + STATE(4368), 1, + sym_template_type, + [216185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4552), 1, + sym_field_declaration_list, + [216195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4558), 1, + sym_field_declaration_list, + [216205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4566), 1, + sym_field_declaration_list, + [216215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4562), 1, + sym_field_declaration_list, + [216225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2749), 1, + sym_field_declaration_list, + [216235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4567), 1, + sym_field_declaration_list, + [216245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4568), 1, + sym_field_declaration_list, + [216255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + [216265] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9333), 1, + anon_sym_LF, + ACTIONS(9335), 1, + sym_preproc_arg, + [216275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4569), 1, + sym_field_declaration_list, + [216285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4550), 1, + sym_field_declaration_list, + [216295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4570), 1, + sym_field_declaration_list, + [216305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4572), 1, + sym_field_declaration_list, + [216315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(2284), 1, + sym_template_argument_list, + [216325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4573), 1, + sym_field_declaration_list, + [216335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4564), 1, + sym_field_declaration_list, + [216345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4575), 1, + sym_field_declaration_list, + [216355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4576), 1, + sym_field_declaration_list, + [216365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2750), 1, + sym_field_declaration_list, + [216375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4577), 1, + sym_field_declaration_list, + [216385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4579), 1, + sym_field_declaration_list, + [216395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4580), 1, + sym_field_declaration_list, + [216405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2751), 1, + sym_field_declaration_list, + [216415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9339), 1, + sym_identifier, + STATE(1951), 1, + sym_template_type, + [216425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LT, + STATE(2492), 1, + sym_template_argument_list, + [216435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9343), 1, + anon_sym_LPAREN2, + ACTIONS(9345), 1, + sym_raw_string_delimiter, + [216445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9347), 1, + anon_sym_LPAREN2, + ACTIONS(9349), 1, + sym_raw_string_delimiter, + [216455] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9351), 2, + anon_sym_LF, + sym_preproc_arg, + [216463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9353), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + [216473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9355), 1, + anon_sym_LPAREN2, + ACTIONS(9357), 1, + sym_raw_string_delimiter, + [216483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4545), 1, + sym_field_declaration_list, + [216493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4544), 1, + sym_field_declaration_list, + [216503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LT, + STATE(1822), 1, + sym_template_argument_list, + [216513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4542), 1, + sym_field_declaration_list, + [216523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4540), 1, + sym_field_declaration_list, + [216533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4536), 1, + sym_field_declaration_list, + [216543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1008), 1, + sym_compound_statement, + [216553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4535), 1, + sym_field_declaration_list, + [216563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_LT, + STATE(1751), 1, + sym_template_argument_list, + [216573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym_LT, + STATE(3224), 1, + sym_template_argument_list, + [216583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8508), 1, + anon_sym_LBRACE, + STATE(5250), 1, + sym_requirement_seq, + [216593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4508), 1, + sym_field_declaration_list, + [216603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4482), 1, + sym_field_declaration_list, + [216613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2745), 1, + sym_field_declaration_list, + [216623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4504), 1, + sym_field_declaration_list, + [216633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_field_declaration_list, + [216643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym_LT, + STATE(4355), 1, + sym_template_argument_list, + [216653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2746), 1, + sym_field_declaration_list, + [216663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9361), 1, + anon_sym_LPAREN2, + ACTIONS(9363), 1, + sym_raw_string_delimiter, + [216673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(5848), 1, + sym_attribute, + [216683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(4094), 1, + sym_template_argument_list, + [216693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2744), 1, + sym_field_declaration_list, + [216703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_field_declaration_list, + [216713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2591), 1, + sym_field_declaration_list, + [216723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2743), 1, + sym_field_declaration_list, + [216733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2593), 1, + sym_field_declaration_list, + [216743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2594), 1, + sym_field_declaration_list, + [216753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2595), 1, + sym_field_declaration_list, + [216763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2596), 1, + sym_field_declaration_list, + [216773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2597), 1, + sym_field_declaration_list, + [216783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2598), 1, + sym_field_declaration_list, + [216793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2742), 1, + sym_field_declaration_list, + [216803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2599), 1, + sym_field_declaration_list, + [216813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2741), 1, + sym_field_declaration_list, + [216823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(1956), 1, + sym_template_argument_list, + [216833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2600), 1, + sym_field_declaration_list, + [216843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2601), 1, + sym_field_declaration_list, + [216853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2602), 1, + sym_field_declaration_list, + [216863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_LT, + STATE(1752), 1, + sym_template_argument_list, + [216873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2603), 1, + sym_field_declaration_list, + [216883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2799), 1, + sym_field_declaration_list, + [216893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(2204), 1, + sym_compound_statement, + [216903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2704), 1, + sym_field_declaration_list, + [216913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_field_declaration_list, + [216923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_field_declaration_list, + [216933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_field_declaration_list, + [216943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2609), 1, + sym_field_declaration_list, + [216953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_field_declaration_list, + [216963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(6826), 1, + sym_argument_list, + [216973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2612), 1, + sym_field_declaration_list, + [216983] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9367), 1, + anon_sym_LF, + ACTIONS(9369), 1, + sym_preproc_arg, + [216993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(246), 1, + sym_condition_clause, + [217003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2613), 1, + sym_field_declaration_list, + [217013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_field_declaration_list, + [217023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9353), 1, + anon_sym_LT, + STATE(1847), 1, + sym_template_argument_list, + [217033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9371), 1, + sym_identifier, + STATE(3228), 1, + sym_template_type, + [217043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(5033), 1, + sym_template_argument_list, + [217053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 1, + anon_sym_LPAREN2, + ACTIONS(9375), 1, + sym_raw_string_delimiter, + [217063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(195), 1, + sym_condition_clause, + [217073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 1, + anon_sym_LBRACE, + STATE(2466), 1, + sym_initializer_list, + [217083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9377), 1, + sym_identifier, + STATE(2185), 1, + sym_template_type, + [217093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2622), 1, + sym_field_declaration_list, + [217103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2623), 1, + sym_field_declaration_list, + [217113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_field_declaration_list, + [217123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2627), 1, + sym_field_declaration_list, + [217133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_field_declaration_list, + [217143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_field_declaration_list, + [217153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(4124), 1, + sym_template_argument_list, + [217163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9379), 1, + sym_identifier, + STATE(2211), 1, + sym_template_method, + [217173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + anon_sym_LT, + STATE(2930), 1, + sym_template_argument_list, + [217183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8698), 1, + anon_sym_LBRACE, + STATE(5012), 1, + sym_requirement_seq, + [217193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LT, + STATE(2729), 1, + sym_template_argument_list, + [217203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym_compound_statement, + [217213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_field_declaration_list, + [217223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(6557), 1, + sym_condition_clause, + [217233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(201), 1, + sym_condition_clause, + [217243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + [217253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_field_declaration_list, + [217263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2924), 1, + sym_field_declaration_list, + [217273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2913), 1, + sym_field_declaration_list, + [217283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(1524), 1, + sym_template_argument_list, + [217293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2918), 1, + sym_field_declaration_list, + [217303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(259), 1, + sym_condition_clause, + [217313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(483), 1, + sym_compound_statement, + [217323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2708), 1, + sym_field_declaration_list, + [217333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2331), 1, + sym_field_declaration_list, + [217343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2330), 1, + sym_field_declaration_list, + [217353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2329), 1, + sym_field_declaration_list, + [217363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2320), 1, + sym_field_declaration_list, + [217373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(5033), 1, + sym_template_argument_list, + [217383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2316), 1, + sym_field_declaration_list, + [217393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2303), 1, + sym_field_declaration_list, + [217403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9353), 1, + anon_sym_LT, + STATE(2828), 1, + sym_template_argument_list, + [217413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2281), 1, + sym_field_declaration_list, + [217423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2208), 1, + sym_field_declaration_list, + [217433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_LT, + STATE(1754), 1, + sym_template_argument_list, + [217443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(3902), 1, + sym_template_argument_list, + [217453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2209), 1, + sym_field_declaration_list, + [217463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2711), 1, + sym_field_declaration_list, + [217473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6956), 1, + anon_sym_LBRACE, + STATE(2551), 1, + sym_requirement_seq, + [217483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2712), 1, + sym_field_declaration_list, + [217493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(497), 1, + sym_compound_statement, + [217503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2212), 1, + sym_field_declaration_list, + [217513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(6036), 1, + sym_attribute, + [217523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_field_declaration_list, + [217533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(6513), 1, + sym_condition_clause, + [217543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_field_declaration_list, + [217553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(174), 1, + sym_condition_clause, + [217563] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9381), 1, + anon_sym_LF, + ACTIONS(9383), 1, + sym_preproc_arg, + [217573] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9385), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [217581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5804), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [217589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6078), 1, + sym_compound_statement, + [217599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2713), 1, + sym_field_declaration_list, + [217609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1978), 1, + sym_compound_statement, + [217619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3513), 1, + sym_field_declaration_list, + [217629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2260), 1, + sym_field_declaration_list, + [217639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9387), 1, + anon_sym_LT, + STATE(1945), 1, + sym_template_argument_list, + [217649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2276), 1, + sym_field_declaration_list, + [217659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2205), 1, + sym_field_declaration_list, + [217669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2289), 1, + sym_field_declaration_list, + [217679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9389), 1, + sym_identifier, + STATE(3284), 1, + sym_template_type, + [217689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2304), 1, + sym_field_declaration_list, + [217699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2306), 1, + sym_field_declaration_list, + [217709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3489), 1, + sym_field_declaration_list, + [217719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3494), 1, + sym_field_declaration_list, + [217729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2239), 1, + sym_field_declaration_list, + [217739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2332), 1, + sym_field_declaration_list, + [217749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2336), 1, + sym_field_declaration_list, + [217759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2716), 1, + sym_field_declaration_list, + [217769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(6653), 1, + sym_argument_list, + [217779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3497), 1, + sym_field_declaration_list, + [217789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(2354), 1, + sym_compound_statement, + [217799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_field_declaration_list, + [217809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(1827), 1, + sym_template_argument_list, + [217819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3499), 1, + sym_field_declaration_list, + [217829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2718), 1, + sym_field_declaration_list, + [217839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6077), 1, + sym_compound_statement, + [217849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_LPAREN2, + STATE(3052), 1, + sym_argument_list, + [217859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_field_declaration_list, + [217869] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9391), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [217877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2900), 1, + sym_field_declaration_list, + [217887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(181), 1, + sym_condition_clause, + [217897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_field_declaration_list, + [217907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1727), 1, + anon_sym_LBRACE, + STATE(3103), 1, + sym_initializer_list, + [217917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2217), 1, + sym_field_declaration_list, + [217927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2220), 1, + sym_field_declaration_list, + [217937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2222), 1, + sym_field_declaration_list, + [217947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2223), 1, + sym_field_declaration_list, + [217957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_field_declaration_list, + [217967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2226), 1, + sym_field_declaration_list, + [217977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_default, + ACTIONS(9395), 1, + anon_sym_delete, + [217987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3539), 1, + sym_field_declaration_list, + [217997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2895), 1, + sym_field_declaration_list, + [218007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6904), 1, + anon_sym_LT, + STATE(2824), 1, + sym_template_argument_list, + [218017] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9397), 1, + anon_sym_LF, + ACTIONS(9399), 1, + sym_preproc_arg, + [218027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2800), 1, + sym_field_declaration_list, + [218037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_field_declaration_list, + [218047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_LBRACE, + STATE(2349), 1, + sym_compound_statement, + [218057] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9401), 1, + anon_sym_LF, + ACTIONS(9403), 1, + sym_preproc_arg, + [218067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6034), 1, + sym_compound_statement, + [218077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8564), 1, + anon_sym_LBRACE, + STATE(1940), 1, + sym_requirement_seq, + [218087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2722), 1, + sym_field_declaration_list, + [218097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [218105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9405), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [218113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(6400), 1, + sym_attribute, + [218123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9407), 1, + anon_sym_LPAREN2, + ACTIONS(9409), 1, + sym_raw_string_delimiter, + [218133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2428), 1, + sym_field_declaration_list, + [218143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3506), 1, + sym_field_declaration_list, + [218153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2411), 1, + sym_field_declaration_list, + [218163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_LBRACE, + STATE(2404), 1, + sym_field_declaration_list, + [218173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9411), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [218181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9413), 1, + sym_identifier, + STATE(2984), 1, + sym_template_method, + [218191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3507), 1, + sym_field_declaration_list, + [218201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 1, + anon_sym_LT, + STATE(2184), 1, + sym_template_argument_list, + [218211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(530), 1, + sym_compound_statement, + [218221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3511), 1, + sym_field_declaration_list, + [218231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2922), 1, + sym_field_declaration_list, + [218241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2884), 1, + sym_field_declaration_list, + [218251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9417), 1, + sym_identifier, + STATE(2974), 1, + sym_template_type, + [218261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2883), 1, + sym_field_declaration_list, + [218271] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9419), 1, + anon_sym_LF, + ACTIONS(9421), 1, + sym_preproc_arg, + [218281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2875), 1, + sym_field_declaration_list, + [218291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2874), 1, + sym_field_declaration_list, + [218301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_while, + ACTIONS(9423), 1, + anon_sym_else, + [218311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(7071), 1, + sym_parenthesized_expression, + [218321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym_field_declaration_list, + [218331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3156), 1, + sym_field_declaration_list, + [218341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2861), 1, + sym_field_declaration_list, + [218351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2860), 1, + sym_field_declaration_list, + [218361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6223), 1, + sym_parameter_list, + [218371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3157), 1, + sym_field_declaration_list, + [218381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_field_declaration_list, + [218391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2858), 1, + sym_field_declaration_list, + [218401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9427), 1, + sym_identifier, + ACTIONS(9429), 1, + anon_sym_LPAREN2, + [218411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3159), 1, + sym_field_declaration_list, + [218421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2856), 1, + sym_field_declaration_list, + [218431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(4553), 1, + sym_field_declaration_list, + [218441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3160), 1, + sym_field_declaration_list, + [218451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + sym_identifier, + STATE(3284), 1, + sym_template_type, + [218461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3161), 1, + sym_field_declaration_list, + [218471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9353), 1, + anon_sym_LT, + STATE(3008), 1, + sym_template_argument_list, + [218481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3538), 1, + sym_field_declaration_list, + [218491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6069), 1, + sym_compound_statement, + [218501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3162), 1, + sym_field_declaration_list, + [218511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_field_declaration_list, + [218521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3164), 1, + sym_field_declaration_list, + [218531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3165), 1, + sym_field_declaration_list, + [218541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3166), 1, + sym_field_declaration_list, + [218551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3169), 1, + sym_field_declaration_list, + [218561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [218569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + anon_sym_LPAREN2, + STATE(2577), 1, + sym_argument_list, + [218579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3534), 1, + sym_field_declaration_list, + [218589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8764), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [218597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_compound_statement, + [218607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(1811), 1, + sym_template_argument_list, + [218617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + anon_sym_LBRACE, + STATE(1107), 1, + sym_compound_statement, + [218627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + STATE(3527), 1, + sym_initializer_list, + [218637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2854), 1, + sym_field_declaration_list, + [218647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3177), 1, + sym_field_declaration_list, + [218657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym_field_declaration_list, + [218667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3214), 1, + sym_field_declaration_list, + [218677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3147), 1, + sym_field_declaration_list, + [218687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3212), 1, + sym_field_declaration_list, + [218697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2853), 1, + sym_field_declaration_list, + [218707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2851), 1, + sym_field_declaration_list, + [218717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 1, + anon_sym_while, + ACTIONS(9431), 1, + anon_sym_else, + [218727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3211), 1, + sym_field_declaration_list, + [218737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3210), 1, + sym_field_declaration_list, + [218747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2848), 1, + sym_field_declaration_list, + [218757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3208), 1, + sym_field_declaration_list, + [218767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3501), 1, + sym_field_declaration_list, + [218777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2842), 1, + sym_field_declaration_list, + [218787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3207), 1, + sym_field_declaration_list, + [218797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2838), 1, + sym_field_declaration_list, + [218807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(2090), 1, + sym_compound_statement, + [218817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(3902), 1, + sym_template_argument_list, + [218827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9433), 1, + sym_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN2, + [218837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_field_declaration_list, + [218847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_field_declaration_list, + [218857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9437), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + [218867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9439), 1, + sym_identifier, + STATE(2211), 1, + sym_template_method, + [218877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8478), 1, + sym_identifier, + STATE(6617), 1, + sym_enumerator, + [218887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9441), 1, + sym_identifier, + STATE(2727), 1, + sym_template_method, + [218897] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9443), 2, + anon_sym_LF, + sym_preproc_arg, + [218905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [218913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2896), 1, + sym_field_declaration_list, + [218923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2793), 1, + sym_field_declaration_list, + [218933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9445), 1, + sym_identifier, + STATE(2254), 1, + sym_template_type, + [218943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2792), 1, + sym_field_declaration_list, + [218953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [218961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(6106), 1, + sym_template_argument_list, + [218971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9447), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [218979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9053), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [218987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_field_declaration_list, + [218997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_field_declaration_list, + [219007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3201), 1, + sym_field_declaration_list, + [219017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_field_declaration_list, + [219027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_field_declaration_list, + [219037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3196), 1, + sym_field_declaration_list, + [219047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3195), 1, + sym_field_declaration_list, + [219057] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9449), 1, + anon_sym_LF, + ACTIONS(9451), 1, + sym_preproc_arg, + [219067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9453), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8735), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [219083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9455), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [219091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_field_declaration_list, + [219101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(266), 1, + sym_condition_clause, + [219111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6192), 1, + sym_parameter_list, + [219121] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9457), 1, + anon_sym_LF, + ACTIONS(9459), 1, + sym_preproc_arg, + [219131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LT, + STATE(1923), 1, + sym_template_argument_list, + [219141] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9461), 1, + anon_sym_LF, + ACTIONS(9463), 1, + sym_preproc_arg, + [219151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5926), 1, + sym_compound_statement, + [219161] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9465), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_compound_statement, + [219179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5870), 1, + sym_compound_statement, + [219189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + anon_sym_LBRACE, + STATE(2904), 1, + sym_initializer_list, + [219199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9467), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [219207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(2058), 1, + sym_compound_statement, + [219217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7016), 1, + anon_sym_LBRACE, + STATE(2985), 1, + sym_requirement_seq, + [219227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8818), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6264), 1, + sym_parameter_list, + [219245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9469), 1, + sym_identifier, + STATE(1878), 1, + sym_template_type, + [219255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [219263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9471), 1, + anon_sym_default, + ACTIONS(9473), 1, + anon_sym_delete, + [219273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5847), 1, + sym_compound_statement, + [219283] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9475), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 1, + anon_sym_RBRACK, + ACTIONS(9477), 1, + anon_sym_COMMA, + [219301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5882), 1, + sym_compound_statement, + [219311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8835), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [219319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6366), 1, + sym_parameter_list, + [219329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3186), 1, + sym_field_declaration_list, + [219339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2738), 1, + sym_field_declaration_list, + [219349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2002), 1, + sym_field_declaration_list, + [219359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3184), 1, + sym_field_declaration_list, + [219369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_field_declaration_list, + [219379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2015), 1, + sym_field_declaration_list, + [219389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LPAREN2, + STATE(2866), 1, + sym_argument_list, + [219399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(224), 1, + sym_condition_clause, + [219409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + STATE(624), 1, + sym_compound_statement, + [219419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9479), 1, + anon_sym_default, + ACTIONS(9481), 1, + anon_sym_delete, + [219429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9483), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [219437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8854), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5903), 1, + sym_compound_statement, + [219455] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9485), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9487), 1, + sym_identifier, + STATE(2825), 1, + sym_template_type, + [219473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9489), 1, + sym_identifier, + ACTIONS(9491), 1, + anon_sym_inline, + [219483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7715), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [219491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_LBRACE, + STATE(3013), 1, + sym_initializer_list, + [219501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6423), 1, + sym_parameter_list, + [219511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9493), 1, + sym_identifier, + STATE(2254), 1, + sym_template_type, + [219521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2739), 1, + sym_field_declaration_list, + [219531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9495), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2752), 1, + sym_field_declaration_list, + [219549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6940), 1, + anon_sym_LBRACE, + STATE(2734), 1, + sym_requirement_seq, + [219559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_field_declaration_list, + [219569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6060), 1, + sym_compound_statement, + [219579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3517), 1, + sym_field_declaration_list, + [219589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(2405), 1, + sym_compound_statement, + [219599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9497), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [219607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9499), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6492), 1, + sym_parameter_list, + [219625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4032), 1, + sym_field_declaration_list, + [219635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(3992), 1, + sym_field_declaration_list, + [219645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(3993), 1, + sym_field_declaration_list, + [219655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2809), 1, + sym_field_declaration_list, + [219665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3476), 1, + sym_field_declaration_list, + [219675] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9501), 1, + anon_sym_LF, + ACTIONS(9503), 1, + sym_preproc_arg, + [219685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9505), 2, + anon_sym_COMMA, + anon_sym_GT2, + [219693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [219701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4044), 1, + sym_field_declaration_list, + [219711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4055), 1, + sym_field_declaration_list, + [219721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4039), 1, + sym_field_declaration_list, + [219731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4052), 1, + sym_field_declaration_list, + [219741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(3990), 1, + sym_field_declaration_list, + [219751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4031), 1, + sym_field_declaration_list, + [219761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym_field_declaration_list, + [219771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4028), 1, + sym_field_declaration_list, + [219781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4027), 1, + sym_field_declaration_list, + [219791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2806), 1, + sym_field_declaration_list, + [219801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4021), 1, + sym_field_declaration_list, + [219811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(6745), 1, + sym_parenthesized_expression, + [219821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 1, + anon_sym_LT, + STATE(1882), 1, + sym_template_argument_list, + [219831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(2190), 1, + sym_compound_statement, + [219841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2757), 1, + sym_field_declaration_list, + [219851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3477), 1, + sym_field_declaration_list, + [219861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2156), 1, + sym_field_declaration_list, + [219871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4018), 1, + sym_field_declaration_list, + [219881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4016), 1, + sym_field_declaration_list, + [219891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4015), 1, + sym_field_declaration_list, + [219901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4013), 1, + sym_field_declaration_list, + [219911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4011), 1, + sym_field_declaration_list, + [219921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4010), 1, + sym_field_declaration_list, + [219931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4007), 1, + sym_field_declaration_list, + [219941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4001), 1, + sym_field_declaration_list, + [219951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4000), 1, + sym_field_declaration_list, + [219961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3431), 1, + sym_field_declaration_list, + [219971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_compound_statement, + [219981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + anon_sym_LT, + STATE(2175), 1, + sym_template_argument_list, + [219991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2803), 1, + sym_field_declaration_list, + [220001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(204), 1, + sym_condition_clause, + [220011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2141), 1, + sym_field_declaration_list, + [220021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9507), 1, + anon_sym_default, + ACTIONS(9509), 1, + anon_sym_delete, + [220031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [220039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + STATE(665), 1, + sym_compound_statement, + [220049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2128), 1, + sym_field_declaration_list, + [220059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2107), 1, + sym_field_declaration_list, + [220069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2087), 1, + sym_field_declaration_list, + [220079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9511), 1, + sym_identifier, + STATE(1951), 1, + sym_template_type, + [220089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2077), 1, + sym_field_declaration_list, + [220099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [220107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6062), 1, + sym_compound_statement, + [220117] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9513), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [220125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym_field_declaration_list, + [220135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym_field_declaration_list, + [220145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(6046), 1, + sym_attribute, + [220155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(6234), 1, + sym_condition_clause, + [220165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym_compound_statement, + [220175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(7029), 1, + sym_argument_list, + [220185] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9515), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [220193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4042), 1, + sym_field_declaration_list, + [220203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6026), 1, + sym_compound_statement, + [220213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4038), 1, + sym_field_declaration_list, + [220223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4050), 1, + sym_field_declaration_list, + [220233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4045), 1, + sym_field_declaration_list, + [220243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(6561), 1, + sym_condition_clause, + [220253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(6052), 1, + sym_attribute, + [220263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9517), 1, + anon_sym_default, + ACTIONS(9519), 1, + anon_sym_delete, + [220273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2020), 1, + sym_field_declaration_list, + [220283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5371), 1, + anon_sym_LT, + STATE(3299), 1, + sym_template_argument_list, + [220293] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9521), 1, + anon_sym_LF, + ACTIONS(9523), 1, + sym_preproc_arg, + [220303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + anon_sym_LT, + STATE(2175), 1, + sym_template_argument_list, + [220313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_compound_statement, + [220323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_LBRACE, + STATE(3793), 1, + sym_requirement_seq, + [220333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, + anon_sym_LPAREN2, + STATE(7044), 1, + sym_argument_list, + [220343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3509), 1, + sym_field_declaration_list, + [220353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9525), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [220361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(2297), 1, + sym_compound_statement, + [220371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9525), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [220379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9525), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [220387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3450), 1, + sym_field_declaration_list, + [220397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3447), 1, + sym_field_declaration_list, + [220407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + [220417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3438), 1, + sym_field_declaration_list, + [220427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(247), 1, + sym_condition_clause, + [220437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9527), 1, + anon_sym_default, + ACTIONS(9529), 1, + anon_sym_delete, + [220447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3524), 1, + sym_field_declaration_list, + [220457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3446), 1, + sym_field_declaration_list, + [220467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_compound_statement, + [220477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(6015), 1, + sym_compound_statement, + [220487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3445), 1, + sym_field_declaration_list, + [220497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6992), 1, + anon_sym_LBRACE, + STATE(3326), 1, + sym_requirement_seq, + [220507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + anon_sym_LBRACE, + STATE(1239), 1, + sym_compound_statement, + [220517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(146), 1, + sym_condition_clause, + [220527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4009), 1, + sym_field_declaration_list, + [220537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3440), 1, + sym_field_declaration_list, + [220547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_LBRACE, + STATE(4048), 1, + sym_field_declaration_list, + [220557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3537), 1, + sym_field_declaration_list, + [220567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2148), 1, + sym_field_declaration_list, + [220577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2146), 1, + sym_field_declaration_list, + [220587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6589), 1, + sym_parameter_list, + [220597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6978), 1, + anon_sym_LBRACE, + STATE(3113), 1, + sym_requirement_seq, + [220607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3437), 1, + sym_field_declaration_list, + [220617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(6669), 1, + sym_parenthesized_expression, + [220627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2143), 1, + sym_field_declaration_list, + [220637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2142), 1, + sym_field_declaration_list, + [220647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2139), 1, + sym_field_declaration_list, + [220657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3436), 1, + sym_field_declaration_list, + [220667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9531), 1, + sym_identifier, + STATE(1930), 1, + sym_template_type, + [220677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2135), 1, + sym_field_declaration_list, + [220687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_default, + ACTIONS(9535), 1, + anon_sym_delete, + [220697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3493), 1, + sym_field_declaration_list, + [220707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(6955), 1, + sym_parenthesized_expression, + [220717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_LBRACE, + STATE(3918), 1, + sym_initializer_list, + [220727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2133), 1, + sym_field_declaration_list, + [220737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2131), 1, + sym_field_declaration_list, + [220747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, + anon_sym_LBRACE, + STATE(987), 1, + sym_compound_statement, + [220757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_LPAREN2, + STATE(6115), 1, + sym_parameter_list, + [220767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3452), 1, + sym_field_declaration_list, + [220777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5890), 1, + anon_sym_RPAREN, + ACTIONS(5892), 1, + anon_sym_SEMI, + [220787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACE, + STATE(521), 1, + sym_compound_statement, + [220797] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9537), 2, + anon_sym_LF, + sym_preproc_arg, + [220805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2123), 1, + sym_field_declaration_list, + [220815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5871), 1, + sym_compound_statement, + [220825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_field_declaration_list, + [220835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9425), 1, + anon_sym_LPAREN2, + STATE(6952), 1, + sym_parenthesized_expression, + [220845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(5877), 1, + sym_compound_statement, + [220855] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9539), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [220863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(6448), 1, + sym_condition_clause, + [220873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9365), 1, + sym_identifier, + STATE(5861), 1, + sym_attribute, + [220883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_LPAREN2, + STATE(171), 1, + sym_condition_clause, + [220893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2066), 1, + sym_field_declaration_list, + [220903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2065), 1, + sym_field_declaration_list, + [220913] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9541), 1, + anon_sym_LF, + ACTIONS(9543), 1, + sym_preproc_arg, + [220923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9545), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [220931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2061), 1, + sym_field_declaration_list, + [220941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2057), 1, + sym_field_declaration_list, + [220951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2056), 1, + sym_field_declaration_list, + [220961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2054), 1, + sym_field_declaration_list, + [220971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2052), 1, + sym_field_declaration_list, + [220981] = 3, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9547), 1, + anon_sym_LF, + ACTIONS(9549), 1, + sym_preproc_arg, + [220991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2051), 1, + sym_field_declaration_list, + [221001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2050), 1, + sym_field_declaration_list, + [221011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2013), 1, + sym_field_declaration_list, + [221021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6101), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [221029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2012), 1, + sym_field_declaration_list, + [221039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(2009), 1, + sym_field_declaration_list, + [221049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6863), 1, + anon_sym_LT, + STATE(2343), 1, + sym_template_argument_list, + [221059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9158), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [221067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6026), 1, + anon_sym_RPAREN, + [221074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_DOT_STAR, + [221081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9553), 1, + anon_sym_RPAREN, + [221088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9555), 1, + aux_sym_preproc_if_token2, + [221095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + anon_sym_RPAREN, + [221102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7747), 1, + sym_identifier, + [221109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PIPE_EQ, + [221116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6030), 1, + anon_sym_RPAREN, + [221123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_SEMI, + [221130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6085), 1, + anon_sym_SEMI, + [221137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7479), 1, + anon_sym_RPAREN, + [221144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9557), 1, + anon_sym_SEMI, + [221151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9559), 1, + sym_raw_string_delimiter, + [221158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6095), 1, + anon_sym_SEMI, + [221165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9561), 1, + aux_sym_preproc_if_token2, + [221172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9563), 1, + anon_sym_DQUOTE, + [221179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9565), 1, + sym_identifier, + [221186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9567), 1, + anon_sym_RPAREN, + [221193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6038), 1, + anon_sym_RPAREN, + [221200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9569), 1, + anon_sym_SEMI, + [221207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6040), 1, + anon_sym_RPAREN, + [221214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9571), 1, + anon_sym_SEMI, + [221221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9573), 1, + anon_sym_SEMI, + [221228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6024), 1, + anon_sym_RPAREN, + [221235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9575), 1, + anon_sym_RPAREN, + [221242] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9577), 1, + anon_sym_LF, + [221249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9579), 1, + sym_identifier, + [221256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5754), 1, + anon_sym_RBRACE, + [221263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_DASH_GT_STAR, + [221270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9581), 1, + anon_sym_SEMI, + [221277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6012), 1, + anon_sym_SEMI, + [221284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9583), 1, + anon_sym_COLON, + [221291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9585), 1, + sym_identifier, + [221298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9587), 1, + sym_identifier, + [221305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9589), 1, + aux_sym_preproc_if_token2, + [221312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9591), 1, + anon_sym_RPAREN, + [221319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_CARET_EQ, + [221326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9593), 1, + anon_sym_SEMI, + [221333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9595), 1, + anon_sym_SEMI, + [221340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9597), 1, + anon_sym_DQUOTE, + [221347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9599), 1, + sym_identifier, + [221354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9601), 1, + aux_sym_preproc_if_token2, + [221361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9603), 1, + anon_sym_SEMI, + [221368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9605), 1, + anon_sym_RPAREN, + [221375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9607), 1, + anon_sym_SEMI, + [221382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9609), 1, + anon_sym_SQUOTE, + [221389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + anon_sym_SEMI, + [221396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9611), 1, + anon_sym_STAR, + [221403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6014), 1, + anon_sym_SEMI, + [221410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9613), 1, + anon_sym_RPAREN, + [221417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9615), 1, + anon_sym_RPAREN, + [221424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9617), 1, + anon_sym_SEMI, + [221431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9619), 1, + anon_sym_SEMI, + [221438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9621), 1, + anon_sym_RPAREN, + [221445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9623), 1, + sym_identifier, + [221452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5990), 1, + anon_sym_SEMI, + [221459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8408), 1, + anon_sym_SEMI, + [221466] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9625), 1, + anon_sym_LF, + [221473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9627), 1, + sym_identifier, + [221480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9629), 1, + anon_sym_LPAREN2, + [221487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9631), 1, + anon_sym_LPAREN2, + [221494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9633), 1, + anon_sym_RPAREN, + [221501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9635), 1, + anon_sym_RPAREN, + [221508] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9637), 1, + anon_sym_EQ, + [221515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9639), 1, + anon_sym_RPAREN, + [221522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9641), 1, + anon_sym_SEMI, + [221529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9643), 1, + anon_sym_RPAREN, + [221536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6050), 1, + anon_sym_SEMI, + [221543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9645), 1, + sym_identifier, + [221550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9647), 1, + sym_identifier, + [221557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9649), 1, + sym_identifier, + [221564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9651), 1, + anon_sym_LPAREN2, + [221571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9653), 1, + sym_raw_string_content, + [221578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5890), 1, + anon_sym_RPAREN, + [221585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9655), 1, + anon_sym_while, + [221592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9657), 1, + anon_sym_RPAREN, + [221599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8450), 1, + anon_sym_SEMI, + [221606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5980), 1, + anon_sym_SEMI, + [221613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9659), 1, + anon_sym_SEMI, + [221620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9661), 1, + anon_sym_LPAREN2, + [221627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6036), 1, + anon_sym_SEMI, + [221634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9663), 1, + aux_sym_preproc_if_token2, + [221641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6034), 1, + anon_sym_SEMI, + [221648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9665), 1, + anon_sym_SQUOTE, + [221655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + sym_identifier, + [221662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9667), 1, + aux_sym_preproc_if_token2, + [221669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8432), 1, + anon_sym_SEMI, + [221676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 1, + anon_sym_SEMI, + [221683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, + anon_sym_RPAREN, + [221690] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9669), 1, + anon_sym_LF, + [221697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9671), 1, + sym_raw_string_delimiter, + [221704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 1, + sym_identifier, + [221711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9673), 1, + sym_identifier, + [221718] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9675), 1, + anon_sym_LF, + [221725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 1, + anon_sym_RBRACE, + [221732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6022), 1, + anon_sym_RPAREN, + [221739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6018), 1, + anon_sym_RPAREN, + [221746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9677), 1, + sym_auto, + [221753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3599), 1, + anon_sym_SEMI, + [221760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9679), 1, + anon_sym_SQUOTE, + [221767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9681), 1, + anon_sym_RPAREN, + [221774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9683), 1, + anon_sym_COLON, + [221781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8588), 1, + anon_sym_SEMI, + [221788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_AMP_EQ, + [221795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9685), 1, + anon_sym_RPAREN, + [221802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9687), 1, + sym_identifier, + [221809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT_GT_EQ, + [221816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9689), 1, + anon_sym_STAR, + [221823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9321), 1, + anon_sym_RBRACE, + [221830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9691), 1, + sym_identifier, + [221837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9693), 1, + sym_identifier, + [221844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5898), 1, + anon_sym_RBRACE, + [221851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9695), 1, + sym_identifier, + [221858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9697), 1, + anon_sym_RPAREN, + [221865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT_LT_EQ, + [221872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5842), 1, + anon_sym_RBRACE, + [221879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9699), 1, + anon_sym_STAR, + [221886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9701), 1, + sym_identifier, + [221893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5959), 1, + anon_sym_SEMI, + [221900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 1, + anon_sym_RPAREN, + [221907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9705), 1, + anon_sym_RPAREN, + [221914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8636), 1, + anon_sym_SEMI, + [221921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9707), 1, + anon_sym_SEMI, + [221928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9709), 1, + anon_sym_SEMI, + [221935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9711), 1, + sym_auto, + [221942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9713), 1, + anon_sym_LPAREN2, + [221949] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9715), 1, + anon_sym_LF, + [221956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9717), 1, + anon_sym_SEMI, + [221963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8935), 1, + anon_sym_RBRACE, + [221970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9719), 1, + anon_sym_RPAREN, + [221977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9721), 1, + anon_sym_SEMI, + [221984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9723), 1, + aux_sym_preproc_if_token2, + [221991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9725), 1, + anon_sym_SEMI, + [221998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5945), 1, + anon_sym_RPAREN, + [222005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_RPAREN, + [222012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9727), 1, + sym_identifier, + [222019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5941), 1, + anon_sym_RPAREN, + [222026] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9729), 1, + anon_sym_LF, + [222033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5935), 1, + anon_sym_RPAREN, + [222040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9731), 1, + anon_sym_RPAREN, + [222047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9733), 1, + anon_sym_RPAREN, + [222054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5933), 1, + anon_sym_RPAREN, + [222061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9735), 1, + anon_sym_SEMI, + [222068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9737), 1, + anon_sym_DQUOTE, + [222075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5931), 1, + anon_sym_RPAREN, + [222082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5967), 1, + anon_sym_SEMI, + [222089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9739), 1, + anon_sym_RPAREN, + [222096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5965), 1, + anon_sym_SEMI, + [222103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9741), 1, + anon_sym_DQUOTE, + [222110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_SEMI, + [222117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9743), 1, + sym_identifier, + [222124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 1, + sym_identifier, + [222131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5955), 1, + anon_sym_SEMI, + [222138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7593), 1, + anon_sym_RPAREN, + [222145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5892), 1, + anon_sym_SEMI, + [222152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9745), 1, + sym_raw_string_delimiter, + [222159] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9747), 1, + anon_sym_LF, + [222166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9749), 1, + sym_identifier, + [222173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9751), 1, + anon_sym_RPAREN, + [222180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9753), 1, + anon_sym_RPAREN, + [222187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9755), 1, + anon_sym_SQUOTE, + [222194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9757), 1, + anon_sym_RPAREN, + [222201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9759), 1, + anon_sym_SEMI, + [222208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6073), 1, + anon_sym_SEMI, + [222215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8646), 1, + anon_sym_SEMI, + [222222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3487), 1, + anon_sym_DOT_DOT_DOT, + [222229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9761), 1, + anon_sym_RPAREN, + [222236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9763), 1, + sym_identifier, + [222243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9765), 1, + anon_sym_LPAREN2, + [222250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9767), 1, + anon_sym_COLON, + [222257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_RPAREN, + [222264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_STAR_EQ, + [222271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9769), 1, + sym_identifier, + [222278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9771), 1, + anon_sym_LBRACE, + [222285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9773), 1, + anon_sym_DQUOTE, + [222292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9775), 1, + sym_identifier, + [222299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_DASH_EQ, + [222306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9777), 1, + sym_raw_string_delimiter, + [222313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9779), 1, + anon_sym_RPAREN, + [222320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9781), 1, + anon_sym_LBRACE, + [222327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9783), 1, + anon_sym_RPAREN, + [222334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PIPE_PIPE, + [222341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9785), 1, + anon_sym_SQUOTE, + [222348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9787), 1, + sym_raw_string_content, + [222355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9789), 1, + anon_sym_SEMI, + [222362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7583), 1, + anon_sym_RPAREN, + [222369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5834), 1, + anon_sym_RBRACE, + [222376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9791), 1, + sym_raw_string_delimiter, + [222383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9793), 1, + sym_identifier, + [222390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5253), 1, + sym_identifier, + [222397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9795), 1, + anon_sym_RPAREN, + [222404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9797), 1, + anon_sym_RPAREN, + [222411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9799), 1, + sym_identifier, + [222418] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9801), 1, + anon_sym_RPAREN, + [222425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9803), 1, + anon_sym_RPAREN, + [222432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9805), 1, + anon_sym_RPAREN, + [222439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9807), 1, + anon_sym_RPAREN, + [222446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8446), 1, + anon_sym_SEMI, + [222453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9809), 1, + anon_sym_RPAREN, + [222460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9811), 1, + anon_sym_LPAREN2, + [222467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9813), 1, + anon_sym_RPAREN, + [222474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9815), 1, + anon_sym_SEMI, + [222481] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9817), 1, + anon_sym_LF, + [222488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8598), 1, + anon_sym_SEMI, + [222495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9819), 1, + anon_sym_RPAREN, + [222502] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8820), 1, + anon_sym_LF, + [222509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9821), 1, + sym_identifier, + [222516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9823), 1, + anon_sym_RPAREN, + [222523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9825), 1, + anon_sym_STAR, + [222530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9827), 1, + sym_identifier, + [222537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7563), 1, + anon_sym_RPAREN, + [222544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6083), 1, + anon_sym_SEMI, + [222551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6060), 1, + anon_sym_RPAREN, + [222558] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9829), 1, + anon_sym_LF, + [222565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9831), 1, + anon_sym_RPAREN, + [222572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PLUS_EQ, + [222579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9833), 1, + anon_sym_LPAREN2, + [222586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9835), 1, + anon_sym_LBRACE, + [222593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PERCENT_EQ, + [222600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6058), 1, + anon_sym_RPAREN, + [222607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9837), 1, + anon_sym_SEMI, + [222614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9839), 1, + anon_sym_SEMI, + [222621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8706), 1, + anon_sym_SEMI, + [222628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 1, + anon_sym_RPAREN, + [222635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9841), 1, + anon_sym_LPAREN2, + [222642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9843), 1, + anon_sym_COLON, + [222649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_SLASH_EQ, + [222656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9845), 1, + anon_sym_RPAREN, + [222663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_EQ, + [222670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_RBRACE, + [222677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6056), 1, + anon_sym_RPAREN, + [222684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9847), 1, + anon_sym_LPAREN2, + [222691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6044), 1, + anon_sym_RPAREN, + [222698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9849), 1, + anon_sym_LPAREN2, + [222705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9851), 1, + sym_raw_string_delimiter, + [222712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7505), 1, + anon_sym_RPAREN, + [222719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9853), 1, + anon_sym_RPAREN, + [222726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6087), 1, + anon_sym_RPAREN, + [222733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9855), 1, + anon_sym_SEMI, + [222740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, + anon_sym_SEMI, + [222747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9857), 1, + anon_sym_LPAREN2, + [222754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5914), 1, + anon_sym_RBRACE, + [222761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9859), 1, + anon_sym_SEMI, + [222768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9861), 1, + aux_sym_preproc_if_token2, + [222775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9863), 1, + anon_sym_DQUOTE, + [222782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9865), 1, + anon_sym_SEMI, + [222789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6091), 1, + anon_sym_RPAREN, + [222796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9867), 1, + anon_sym_RPAREN, + [222803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9869), 1, + anon_sym_SEMI, + [222810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9871), 1, + anon_sym_RPAREN, + [222817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9873), 1, + sym_identifier, + [222824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6097), 1, + anon_sym_RPAREN, + [222831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6099), 1, + anon_sym_RPAREN, + [222838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9875), 1, + anon_sym_while, + [222845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6295), 1, + anon_sym_RBRACK, + [222852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9877), 1, + anon_sym_LPAREN2, + [222859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9879), 1, + anon_sym_RPAREN, + [222866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9881), 1, + sym_identifier, + [222873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6016), 1, + anon_sym_RPAREN, + [222880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9883), 1, + anon_sym_RPAREN, + [222887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9885), 1, + anon_sym_EQ, + [222894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9887), 1, + sym_raw_string_content, + [222901] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9889), 1, + anon_sym_LF, + [222908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9891), 1, + anon_sym_SEMI, + [222915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 1, + anon_sym_RPAREN, + [222922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9893), 1, + anon_sym_SEMI, + [222929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9895), 1, + aux_sym_preproc_if_token2, + [222936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9897), 1, + anon_sym_SEMI, + [222943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9072), 1, + anon_sym_RBRACE, + [222950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9899), 1, + aux_sym_preproc_if_token2, + [222957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9901), 1, + sym_identifier, + [222964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9903), 1, + aux_sym_preproc_if_token2, + [222971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT_GT, + [222978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8524), 1, + anon_sym_SEMI, + [222985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6042), 1, + anon_sym_SEMI, + [222992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9905), 1, + anon_sym_RPAREN, + [222999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT_LT, + [223006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9907), 1, + aux_sym_preproc_if_token2, + [223013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6116), 1, + anon_sym_RPAREN, + [223020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9909), 1, + anon_sym_SEMI, + [223027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9911), 1, + aux_sym_preproc_if_token2, + [223034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT, + [223041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6118), 1, + anon_sym_RPAREN, + [223048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3638), 1, + anon_sym_SEMI, + [223055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9913), 1, + sym_auto, + [223062] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9915), 1, + anon_sym_LF, + [223069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5984), 1, + anon_sym_SEMI, + [223076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9917), 1, + anon_sym_EQ, + [223083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9919), 1, + anon_sym_SEMI, + [223090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6071), 1, + anon_sym_SEMI, + [223097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9921), 1, + anon_sym_SEMI, + [223104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6081), 1, + anon_sym_SEMI, + [223111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5978), 1, + anon_sym_SEMI, + [223118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8410), 1, + anon_sym_EQ, + [223125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9923), 1, + anon_sym_STAR, + [223132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9925), 1, + anon_sym_RPAREN, + [223139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5752), 1, + anon_sym_SEMI, + [223146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9927), 1, + anon_sym_SEMI, + [223153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9929), 1, + anon_sym_SEMI, + [223160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9931), 1, + anon_sym_SEMI, + [223167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9933), 1, + anon_sym_SEMI, + [223174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9935), 1, + anon_sym_RPAREN, + [223181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9937), 1, + anon_sym_SEMI, + [223188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6120), 1, + anon_sym_SEMI, + [223195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9939), 1, + anon_sym_SEMI, + [223202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9941), 1, + anon_sym_SEMI, + [223209] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9943), 1, + anon_sym_LF, + [223216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9945), 1, + anon_sym_RPAREN, + [223223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_RPAREN, + [223230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9949), 1, + anon_sym_DQUOTE, + [223237] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8882), 1, + anon_sym_LF, + [223244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5929), 1, + anon_sym_SEMI, + [223251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9951), 1, + aux_sym_preproc_if_token2, + [223258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9953), 1, + aux_sym_preproc_if_token2, + [223265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9955), 1, + anon_sym_LPAREN2, + [223272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9957), 1, + aux_sym_preproc_if_token2, + [223279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9055), 1, + anon_sym_RPAREN, + [223286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6144), 1, + anon_sym_RPAREN, + [223293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_LT_EQ, + [223300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5927), 1, + anon_sym_SEMI, + [223307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9959), 1, + aux_sym_preproc_if_token2, + [223314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym_DQUOTE, + [223321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6146), 1, + anon_sym_RPAREN, + [223328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9963), 1, + anon_sym_SEMI, + [223335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9965), 1, + anon_sym_SEMI, + [223342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9967), 1, + anon_sym_RPAREN, + [223349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9969), 1, + anon_sym_RPAREN, + [223356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9971), 1, + anon_sym_RPAREN, + [223363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9973), 1, + anon_sym_RPAREN, + [223370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9975), 1, + anon_sym_RPAREN, + [223377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 1, + anon_sym_RPAREN, + [223384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6148), 1, + anon_sym_RPAREN, + [223391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8628), 1, + anon_sym_SEMI, + [223398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9977), 1, + anon_sym_LPAREN2, + [223405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9979), 1, + anon_sym_SEMI, + [223412] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9981), 1, + anon_sym_LF, + [223419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9983), 1, + anon_sym_RPAREN, + [223426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9985), 1, + anon_sym_SEMI, + [223433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9987), 1, + anon_sym_RPAREN, + [223440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9989), 1, + sym_identifier, + [223447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9991), 1, + anon_sym_SEMI, + [223454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9993), 1, + anon_sym_DQUOTE, + [223461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5921), 1, + anon_sym_RPAREN, + [223468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9995), 1, + anon_sym_EQ, + [223475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8904), 1, + anon_sym_SEMI, + [223482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9997), 1, + sym_identifier, + [223489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9999), 1, + anon_sym_LPAREN2, + [223496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10001), 1, + anon_sym_RPAREN, + [223503] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(8917), 1, + anon_sym_LF, + [223510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10003), 1, + aux_sym_preproc_if_token2, + [223517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10005), 1, + anon_sym_DQUOTE, + [223524] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10007), 1, + anon_sym_LF, + [223531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + [223538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10009), 1, + sym_identifier, + [223545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10011), 1, + anon_sym_SEMI, + [223552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10013), 1, + anon_sym_RPAREN, + [223559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10015), 1, + anon_sym_SEMI, + [223566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10017), 1, + sym_auto, + [223573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5947), 1, + anon_sym_SEMI, + [223580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10019), 1, + aux_sym_preproc_if_token2, + [223587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10021), 1, + anon_sym_SEMI, + [223594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10023), 1, + aux_sym_preproc_if_token2, + [223601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10025), 1, + aux_sym_preproc_if_token2, + [223608] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10027), 1, + anon_sym_LF, + [223615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10029), 1, + anon_sym_RPAREN, + [223622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10031), 1, + anon_sym_SEMI, + [223629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10033), 1, + sym_identifier, + [223636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10035), 1, + anon_sym_STAR, + [223643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT_EQ, + [223650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6247), 1, + anon_sym_RBRACK, + [223657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10037), 1, + anon_sym_SEMI, + [223664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, + sym_auto, + [223671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10041), 1, + anon_sym_SEMI, + [223678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10043), 1, + anon_sym_SEMI, + [223685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10045), 1, + anon_sym_SEMI, + [223692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10047), 1, + anon_sym_SEMI, + [223699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10049), 1, + anon_sym_SEMI, + [223706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8582), 1, + anon_sym_SEMI, + [223713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10051), 1, + ts_builtin_sym_end, + [223720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10053), 1, + anon_sym_SEMI, + [223727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10055), 1, + anon_sym_RPAREN, + [223734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5969), 1, + anon_sym_RPAREN, + [223741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10057), 1, + anon_sym_RPAREN, + [223748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10059), 1, + anon_sym_SQUOTE, + [223755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10061), 1, + sym_identifier, + [223762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10063), 1, + anon_sym_LPAREN2, + [223769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10065), 1, + anon_sym_RPAREN, + [223776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10067), 1, + anon_sym_RPAREN, + [223783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10069), 1, + anon_sym_RPAREN, + [223790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10071), 1, + anon_sym_SEMI, + [223797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10073), 1, + anon_sym_RPAREN, + [223804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8420), 1, + anon_sym_SEMI, + [223811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10075), 1, + anon_sym_LPAREN2, + [223818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10077), 1, + sym_identifier, + [223825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10079), 1, + anon_sym_LPAREN2, + [223832] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10081), 1, + anon_sym_LF, + [223839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5814), 1, + anon_sym_RBRACE, + [223846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10083), 1, + anon_sym_LPAREN2, + [223853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10085), 1, + aux_sym_preproc_if_token2, + [223860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10087), 1, + sym_identifier, + [223867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10089), 1, + anon_sym_LPAREN2, + [223874] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10091), 1, + anon_sym_LF, + [223881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10093), 1, + anon_sym_RPAREN, + [223888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10095), 1, + anon_sym_LPAREN2, + [223895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8722), 1, + anon_sym_RBRACE, + [223902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10097), 1, + aux_sym_preproc_if_token2, + [223909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10099), 1, + anon_sym_while, + [223916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10101), 1, + anon_sym_RPAREN, + [223923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10103), 1, + anon_sym_LPAREN2, + [223930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10105), 1, + anon_sym_SEMI, + [223937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8708), 1, + anon_sym_SEMI, + [223944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10107), 1, + anon_sym_RPAREN, + [223951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10109), 1, + anon_sym_SEMI, + [223958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10111), 1, + anon_sym_EQ, + [223965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10113), 1, + sym_raw_string_content, + [223972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10115), 1, + sym_identifier, + [223979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3667), 1, + anon_sym_SEMI, + [223986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10117), 1, + anon_sym_COLON, + [223993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6054), 1, + anon_sym_SEMI, + [224000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10119), 1, + anon_sym_RPAREN, + [224007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9123), 1, + anon_sym_RBRACE, + [224014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8452), 1, + anon_sym_EQ, + [224021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10121), 1, + sym_auto, + [224028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10123), 1, + anon_sym_RPAREN, + [224035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10125), 1, + anon_sym_RPAREN, + [224042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10127), 1, + sym_auto, + [224049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10129), 1, + anon_sym_RPAREN, + [224056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10131), 1, + sym_identifier, + [224063] = 2, + ACTIONS(3909), 1, + anon_sym_LF, + ACTIONS(7080), 1, + sym_comment, + [224070] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10133), 1, + anon_sym_LF, + [224077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10135), 1, + anon_sym_STAR, + [224084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10137), 1, + anon_sym_SEMI, + [224091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10139), 1, + aux_sym_preproc_if_token2, + [224098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10141), 1, + anon_sym_SEMI, + [224105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10143), 1, + sym_identifier, + [224112] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10145), 1, + anon_sym_LF, + [224119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10147), 1, + anon_sym_SEMI, + [224126] = 2, + ACTIONS(3925), 1, + anon_sym_LF, + ACTIONS(7080), 1, + sym_comment, + [224133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10149), 1, + anon_sym_SEMI, + [224140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10151), 1, + sym_identifier, + [224147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10153), 1, + anon_sym_LPAREN2, + [224154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10155), 1, + anon_sym_SEMI, + [224161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10157), 1, + sym_identifier, + [224168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10159), 1, + anon_sym_while, + [224175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10161), 1, + anon_sym_SEMI, + [224182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10163), 1, + anon_sym_LPAREN2, + [224189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10165), 1, + anon_sym_LPAREN2, + [224196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10167), 1, + anon_sym_EQ, + [224203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10169), 1, + sym_raw_string_content, + [224210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10171), 1, + aux_sym_preproc_if_token2, + [224217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6112), 1, + anon_sym_SEMI, + [224224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8414), 1, + anon_sym_EQ, + [224231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_GT, + [224238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10173), 1, + anon_sym_SEMI, + [224245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10175), 1, + anon_sym_RPAREN, + [224252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8412), 1, + anon_sym_SEMI, + [224259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_BANG_EQ, + [224266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_EQ_EQ, + [224273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_AMP, + [224280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + sym_identifier, + [224287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10177), 1, + anon_sym_RPAREN, + [224294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10179), 1, + anon_sym_SQUOTE, + [224301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10181), 1, + anon_sym_SEMI, + [224308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6110), 1, + anon_sym_SEMI, + [224315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10183), 1, + anon_sym_SEMI, + [224322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10185), 1, + anon_sym_RPAREN, + [224329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10187), 1, + anon_sym_RPAREN, + [224336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10189), 1, + anon_sym_RPAREN, + [224343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10191), 1, + anon_sym_RPAREN, + [224350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10193), 1, + anon_sym_LPAREN2, + [224357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5953), 1, + anon_sym_RPAREN, + [224364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6323), 1, + anon_sym_RBRACK, + [224371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10195), 1, + anon_sym_while, + [224378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10197), 1, + anon_sym_COLON, + [224385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10199), 1, + anon_sym_LPAREN2, + [224392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10201), 1, + anon_sym_STAR, + [224399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10203), 1, + anon_sym_EQ, + [224406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10205), 1, + sym_raw_string_content, + [224413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PIPE, + [224420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6079), 1, + anon_sym_SEMI, + [224427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8426), 1, + anon_sym_EQ, + [224434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10207), 1, + anon_sym_SQUOTE, + [224441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10209), 1, + sym_identifier, + [224448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10211), 1, + anon_sym_RPAREN, + [224455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10213), 1, + anon_sym_STAR, + [224462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8980), 1, + anon_sym_RBRACE, + [224469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10215), 1, + anon_sym_LPAREN2, + [224476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8488), 1, + anon_sym_SEMI, + [224483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10217), 1, + anon_sym_RPAREN, + [224490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10219), 1, + anon_sym_LPAREN2, + [224497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10221), 1, + anon_sym_RPAREN, + [224504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10223), 1, + anon_sym_EQ, + [224511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10225), 1, + sym_raw_string_content, + [224518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8434), 1, + anon_sym_EQ, + [224525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10227), 1, + anon_sym_RPAREN, + [224532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10229), 1, + anon_sym_RPAREN, + [224539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10231), 1, + anon_sym_RPAREN, + [224546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10233), 1, + anon_sym_LPAREN2, + [224553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 1, + anon_sym_RPAREN, + [224560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10235), 1, + anon_sym_SEMI, + [224567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10237), 1, + anon_sym_SEMI, + [224574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10239), 1, + anon_sym_EQ, + [224581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8448), 1, + anon_sym_EQ, + [224588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10241), 1, + anon_sym_RPAREN, + [224595] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10243), 1, + anon_sym_LF, + [224602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10245), 1, + anon_sym_LPAREN2, + [224609] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(9237), 1, + anon_sym_LF, + [224616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8422), 1, + anon_sym_EQ, + [224623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10247), 1, + anon_sym_SEMI, + [224630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10249), 1, + anon_sym_LPAREN2, + [224637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6069), 1, + anon_sym_SEMI, + [224644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10251), 1, + anon_sym_DQUOTE, + [224651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10253), 1, + anon_sym_LPAREN2, + [224658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10255), 1, + anon_sym_LPAREN2, + [224665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10257), 1, + sym_identifier, + [224672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10259), 1, + sym_auto, + [224679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_AMP_AMP, + [224686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5961), 1, + anon_sym_RPAREN, + [224693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10261), 1, + anon_sym_SEMI, + [224700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10263), 1, + anon_sym_SEMI, + [224707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PERCENT, + [224714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10265), 1, + anon_sym_SEMI, + [224721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10267), 1, + anon_sym_COLON, + [224728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10269), 1, + anon_sym_SLASH, + [224735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10271), 1, + anon_sym_DOT_DOT_DOT, + [224742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10274), 1, + anon_sym_DOT_DOT_DOT, + [224749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10277), 1, + aux_sym_preproc_if_token2, + [224756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_STAR, + [224763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10279), 1, + aux_sym_preproc_if_token2, + [224770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_PLUS, + [224777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10281), 1, + sym_identifier, + [224784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10283), 1, + anon_sym_SEMI, + [224791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10285), 1, + anon_sym_SEMI, + [224798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6052), 1, + anon_sym_SEMI, + [224805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10287), 1, + sym_raw_string_content, + [224812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10289), 1, + anon_sym_SEMI, + [224819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10291), 1, + anon_sym_DOT_DOT_DOT, + [224826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10294), 1, + anon_sym_SEMI, + [224833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10296), 1, + anon_sym_DOT_DOT_DOT, + [224840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10299), 1, + anon_sym_DOT_DOT_DOT, + [224847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_DOT_DOT_DOT, + [224854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10305), 1, + anon_sym_RPAREN, + [224861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10307), 1, + anon_sym_LPAREN2, + [224868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10309), 1, + anon_sym_RPAREN, + [224875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10311), 1, + anon_sym_LPAREN2, + [224882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10313), 1, + anon_sym_LPAREN2, + [224889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10315), 1, + sym_identifier, + [224896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10317), 1, + anon_sym_RPAREN, + [224903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_CARET, + [224910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10319), 1, + anon_sym_COLON, + [224917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10321), 1, + anon_sym_DOT_DOT_DOT, + [224924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10324), 1, + anon_sym_LPAREN2, + [224931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_DASH, + [224938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10326), 1, + sym_identifier, + [224945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9551), 1, + anon_sym_COMMA, + [224952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10328), 1, + sym_raw_string_content, + [224959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10330), 1, + anon_sym_DOT_DOT_DOT, + [224966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9206), 1, + anon_sym_RBRACE, + [224973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 1, + anon_sym_DOT_DOT_DOT, + [224980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10336), 1, + anon_sym_RPAREN, + [224987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10338), 1, + anon_sym_LPAREN2, + [224994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10340), 1, + anon_sym_LPAREN2, + [225001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10342), 1, + sym_identifier, + [225008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10344), 1, + anon_sym_RPAREN, + [225015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6142), 1, + anon_sym_RPAREN, + [225022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10346), 1, + anon_sym_DOT_DOT_DOT, + [225029] = 2, + ACTIONS(7080), 1, + sym_comment, + ACTIONS(10349), 1, + anon_sym_LF, + [225036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10351), 1, + sym_identifier, + [225043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10353), 1, + anon_sym_RPAREN, + [225050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10355), 1, + sym_raw_string_content, + [225057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10357), 1, + aux_sym_preproc_if_token2, + [225064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10359), 1, + anon_sym_SEMI, + [225071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10361), 1, + aux_sym_preproc_if_token2, + [225078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10363), 1, + anon_sym_DQUOTE, + [225085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10365), 1, + anon_sym_LPAREN2, + [225092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10367), 1, + anon_sym_LPAREN2, + [225099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10369), 1, + sym_identifier, + [225106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10371), 1, + sym_auto, + [225113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10373), 1, + sym_identifier, + [225120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10375), 1, + anon_sym_SEMI, + [225127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10377), 1, + sym_raw_string_content, + [225134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6067), 1, + anon_sym_RPAREN, + [225141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 1, + anon_sym_LPAREN2, + [225148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, + sym_identifier, + [225155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10383), 1, + anon_sym_DOT_DOT_DOT, + [225162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10386), 1, + sym_identifier, + [225169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10388), 1, + sym_raw_string_content, + [225176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10390), 1, + anon_sym_LPAREN2, + [225183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10392), 1, + sym_identifier, + [225190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10394), 1, + sym_identifier, + [225197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10396), 1, + sym_identifier, + [225204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10398), 1, + anon_sym_LPAREN2, + [225211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10400), 1, + anon_sym_LPAREN2, + [225218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10402), 1, + anon_sym_RPAREN, + [225225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5963), 1, + anon_sym_RPAREN, + [225232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6114), 1, + anon_sym_RPAREN, + [225239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10404), 1, + anon_sym_DOT_DOT_DOT, + [225246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10407), 1, + anon_sym_DOT_DOT_DOT, + [225253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10410), 1, + anon_sym_DOT_DOT_DOT, + [225260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10412), 1, + anon_sym_SEMI, + [225267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10414), 1, + anon_sym_SEMI, + [225274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10416), 1, + anon_sym_STAR, + [225281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10418), 1, + anon_sym_SEMI, + [225288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10420), 1, + aux_sym_preproc_if_token2, + [225295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10422), 1, + aux_sym_preproc_if_token2, + [225302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10424), 1, + anon_sym_LPAREN2, + [225309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10426), 1, + anon_sym_SEMI, + [225316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10428), 1, + anon_sym_LPAREN2, + [225323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10430), 1, + sym_identifier, + [225330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10432), 1, + anon_sym_LPAREN2, + [225337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10434), 1, + aux_sym_preproc_if_token2, + [225344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10436), 1, + anon_sym_LPAREN2, + [225351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10438), 1, + sym_identifier, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(1812)] = 0, + [SMALL_STATE(1813)] = 71, + [SMALL_STATE(1814)] = 196, + [SMALL_STATE(1815)] = 267, + [SMALL_STATE(1816)] = 338, + [SMALL_STATE(1817)] = 409, + [SMALL_STATE(1818)] = 484, + [SMALL_STATE(1819)] = 561, + [SMALL_STATE(1820)] = 632, + [SMALL_STATE(1821)] = 711, + [SMALL_STATE(1822)] = 782, + [SMALL_STATE(1823)] = 861, + [SMALL_STATE(1824)] = 938, + [SMALL_STATE(1825)] = 1009, + [SMALL_STATE(1826)] = 1088, + [SMALL_STATE(1827)] = 1178, + [SMALL_STATE(1828)] = 1256, + [SMALL_STATE(1829)] = 1334, + [SMALL_STATE(1830)] = 1404, + [SMALL_STATE(1831)] = 1474, + [SMALL_STATE(1832)] = 1544, + [SMALL_STATE(1833)] = 1620, + [SMALL_STATE(1834)] = 1696, + [SMALL_STATE(1835)] = 1774, + [SMALL_STATE(1836)] = 1858, + [SMALL_STATE(1837)] = 1928, + [SMALL_STATE(1838)] = 2006, + [SMALL_STATE(1839)] = 2084, + [SMALL_STATE(1840)] = 2165, + [SMALL_STATE(1841)] = 2246, + [SMALL_STATE(1842)] = 2373, + [SMALL_STATE(1843)] = 2454, + [SMALL_STATE(1844)] = 2535, + [SMALL_STATE(1845)] = 2612, + [SMALL_STATE(1846)] = 2693, + [SMALL_STATE(1847)] = 2766, + [SMALL_STATE(1848)] = 2843, + [SMALL_STATE(1849)] = 2924, + [SMALL_STATE(1850)] = 3005, + [SMALL_STATE(1851)] = 3086, + [SMALL_STATE(1852)] = 3213, + [SMALL_STATE(1853)] = 3294, + [SMALL_STATE(1854)] = 3378, + [SMALL_STATE(1855)] = 3446, + [SMALL_STATE(1856)] = 3526, + [SMALL_STATE(1857)] = 3602, + [SMALL_STATE(1858)] = 3682, + [SMALL_STATE(1859)] = 3762, + [SMALL_STATE(1860)] = 3842, + [SMALL_STATE(1861)] = 3966, + [SMALL_STATE(1862)] = 4034, + [SMALL_STATE(1863)] = 4102, + [SMALL_STATE(1864)] = 4182, + [SMALL_STATE(1865)] = 4256, + [SMALL_STATE(1866)] = 4340, + [SMALL_STATE(1867)] = 4420, + [SMALL_STATE(1868)] = 4544, + [SMALL_STATE(1869)] = 4612, + [SMALL_STATE(1870)] = 4696, + [SMALL_STATE(1871)] = 4764, + [SMALL_STATE(1872)] = 4832, + [SMALL_STATE(1873)] = 4912, + [SMALL_STATE(1874)] = 4986, + [SMALL_STATE(1875)] = 5066, + [SMALL_STATE(1876)] = 5150, + [SMALL_STATE(1877)] = 5230, + [SMALL_STATE(1878)] = 5301, + [SMALL_STATE(1879)] = 5368, + [SMALL_STATE(1880)] = 5441, + [SMALL_STATE(1881)] = 5512, + [SMALL_STATE(1882)] = 5579, + [SMALL_STATE(1883)] = 5646, + [SMALL_STATE(1884)] = 5713, + [SMALL_STATE(1885)] = 5786, + [SMALL_STATE(1886)] = 5861, + [SMALL_STATE(1887)] = 5982, + [SMALL_STATE(1888)] = 6051, + [SMALL_STATE(1889)] = 6118, + [SMALL_STATE(1890)] = 6187, + [SMALL_STATE(1891)] = 6254, + [SMALL_STATE(1892)] = 6323, + [SMALL_STATE(1893)] = 6394, + [SMALL_STATE(1894)] = 6461, + [SMALL_STATE(1895)] = 6528, + [SMALL_STATE(1896)] = 6595, + [SMALL_STATE(1897)] = 6662, + [SMALL_STATE(1898)] = 6729, + [SMALL_STATE(1899)] = 6796, + [SMALL_STATE(1900)] = 6867, + [SMALL_STATE(1901)] = 6934, + [SMALL_STATE(1902)] = 7005, + [SMALL_STATE(1903)] = 7077, + [SMALL_STATE(1904)] = 7143, + [SMALL_STATE(1905)] = 7209, + [SMALL_STATE(1906)] = 7275, + [SMALL_STATE(1907)] = 7349, + [SMALL_STATE(1908)] = 7415, + [SMALL_STATE(1909)] = 7481, + [SMALL_STATE(1910)] = 7555, + [SMALL_STATE(1911)] = 7637, + [SMALL_STATE(1912)] = 7703, + [SMALL_STATE(1913)] = 7769, + [SMALL_STATE(1914)] = 7835, + [SMALL_STATE(1915)] = 7901, + [SMALL_STATE(1916)] = 7979, + [SMALL_STATE(1917)] = 8045, + [SMALL_STATE(1918)] = 8115, + [SMALL_STATE(1919)] = 8181, + [SMALL_STATE(1920)] = 8263, + [SMALL_STATE(1921)] = 8345, + [SMALL_STATE(1922)] = 8411, + [SMALL_STATE(1923)] = 8483, + [SMALL_STATE(1924)] = 8549, + [SMALL_STATE(1925)] = 8621, + [SMALL_STATE(1926)] = 8687, + [SMALL_STATE(1927)] = 8765, + [SMALL_STATE(1928)] = 8833, + [SMALL_STATE(1929)] = 8899, + [SMALL_STATE(1930)] = 8969, + [SMALL_STATE(1931)] = 9035, + [SMALL_STATE(1932)] = 9113, + [SMALL_STATE(1933)] = 9191, + [SMALL_STATE(1934)] = 9269, + [SMALL_STATE(1935)] = 9351, + [SMALL_STATE(1936)] = 9417, + [SMALL_STATE(1937)] = 9485, + [SMALL_STATE(1938)] = 9555, + [SMALL_STATE(1939)] = 9633, + [SMALL_STATE(1940)] = 9711, + [SMALL_STATE(1941)] = 9777, + [SMALL_STATE(1942)] = 9855, + [SMALL_STATE(1943)] = 9923, + [SMALL_STATE(1944)] = 9991, + [SMALL_STATE(1945)] = 10069, + [SMALL_STATE(1946)] = 10134, + [SMALL_STATE(1947)] = 10205, + [SMALL_STATE(1948)] = 10272, + [SMALL_STATE(1949)] = 10349, + [SMALL_STATE(1950)] = 10416, + [SMALL_STATE(1951)] = 10485, + [SMALL_STATE(1952)] = 10550, + [SMALL_STATE(1953)] = 10663, + [SMALL_STATE(1954)] = 10734, + [SMALL_STATE(1955)] = 10801, + [SMALL_STATE(1956)] = 10914, + [SMALL_STATE(1957)] = 10979, + [SMALL_STATE(1958)] = 11092, + [SMALL_STATE(1959)] = 11169, + [SMALL_STATE(1960)] = 11246, + [SMALL_STATE(1961)] = 11359, + [SMALL_STATE(1962)] = 11426, + [SMALL_STATE(1963)] = 11539, + [SMALL_STATE(1964)] = 11604, + [SMALL_STATE(1965)] = 11675, + [SMALL_STATE(1966)] = 11740, + [SMALL_STATE(1967)] = 11809, + [SMALL_STATE(1968)] = 11878, + [SMALL_STATE(1969)] = 11955, + [SMALL_STATE(1970)] = 12068, + [SMALL_STATE(1971)] = 12137, + [SMALL_STATE(1972)] = 12250, + [SMALL_STATE(1973)] = 12317, + [SMALL_STATE(1974)] = 12394, + [SMALL_STATE(1975)] = 12471, + [SMALL_STATE(1976)] = 12548, + [SMALL_STATE(1977)] = 12625, + [SMALL_STATE(1978)] = 12702, + [SMALL_STATE(1979)] = 12767, + [SMALL_STATE(1980)] = 12880, + [SMALL_STATE(1981)] = 12993, + [SMALL_STATE(1982)] = 13062, + [SMALL_STATE(1983)] = 13131, + [SMALL_STATE(1984)] = 13200, + [SMALL_STATE(1985)] = 13313, + [SMALL_STATE(1986)] = 13378, + [SMALL_STATE(1987)] = 13449, + [SMALL_STATE(1988)] = 13520, + [SMALL_STATE(1989)] = 13633, + [SMALL_STATE(1990)] = 13702, + [SMALL_STATE(1991)] = 13766, + [SMALL_STATE(1992)] = 13830, + [SMALL_STATE(1993)] = 13894, + [SMALL_STATE(1994)] = 13958, + [SMALL_STATE(1995)] = 14022, + [SMALL_STATE(1996)] = 14086, + [SMALL_STATE(1997)] = 14150, + [SMALL_STATE(1998)] = 14214, + [SMALL_STATE(1999)] = 14278, + [SMALL_STATE(2000)] = 14342, + [SMALL_STATE(2001)] = 14406, + [SMALL_STATE(2002)] = 14470, + [SMALL_STATE(2003)] = 14534, + [SMALL_STATE(2004)] = 14598, + [SMALL_STATE(2005)] = 14662, + [SMALL_STATE(2006)] = 14726, + [SMALL_STATE(2007)] = 14790, + [SMALL_STATE(2008)] = 14858, + [SMALL_STATE(2009)] = 14938, + [SMALL_STATE(2010)] = 15002, + [SMALL_STATE(2011)] = 15066, + [SMALL_STATE(2012)] = 15130, + [SMALL_STATE(2013)] = 15194, + [SMALL_STATE(2014)] = 15258, + [SMALL_STATE(2015)] = 15322, + [SMALL_STATE(2016)] = 15386, + [SMALL_STATE(2017)] = 15450, + [SMALL_STATE(2018)] = 15514, + [SMALL_STATE(2019)] = 15578, + [SMALL_STATE(2020)] = 15642, + [SMALL_STATE(2021)] = 15706, + [SMALL_STATE(2022)] = 15770, + [SMALL_STATE(2023)] = 15834, + [SMALL_STATE(2024)] = 15898, + [SMALL_STATE(2025)] = 15962, + [SMALL_STATE(2026)] = 16026, + [SMALL_STATE(2027)] = 16090, + [SMALL_STATE(2028)] = 16154, + [SMALL_STATE(2029)] = 16218, + [SMALL_STATE(2030)] = 16282, + [SMALL_STATE(2031)] = 16346, + [SMALL_STATE(2032)] = 16410, + [SMALL_STATE(2033)] = 16474, + [SMALL_STATE(2034)] = 16538, + [SMALL_STATE(2035)] = 16602, + [SMALL_STATE(2036)] = 16666, + [SMALL_STATE(2037)] = 16730, + [SMALL_STATE(2038)] = 16794, + [SMALL_STATE(2039)] = 16864, + [SMALL_STATE(2040)] = 16928, + [SMALL_STATE(2041)] = 16992, + [SMALL_STATE(2042)] = 17062, + [SMALL_STATE(2043)] = 17126, + [SMALL_STATE(2044)] = 17242, + [SMALL_STATE(2045)] = 17358, + [SMALL_STATE(2046)] = 17474, + [SMALL_STATE(2047)] = 17538, + [SMALL_STATE(2048)] = 17602, + [SMALL_STATE(2049)] = 17666, + [SMALL_STATE(2050)] = 17730, + [SMALL_STATE(2051)] = 17794, + [SMALL_STATE(2052)] = 17858, + [SMALL_STATE(2053)] = 17922, + [SMALL_STATE(2054)] = 17988, + [SMALL_STATE(2055)] = 18052, + [SMALL_STATE(2056)] = 18168, + [SMALL_STATE(2057)] = 18232, + [SMALL_STATE(2058)] = 18296, + [SMALL_STATE(2059)] = 18360, + [SMALL_STATE(2060)] = 18476, + [SMALL_STATE(2061)] = 18540, + [SMALL_STATE(2062)] = 18604, + [SMALL_STATE(2063)] = 18668, + [SMALL_STATE(2064)] = 18732, + [SMALL_STATE(2065)] = 18796, + [SMALL_STATE(2066)] = 18860, + [SMALL_STATE(2067)] = 18924, + [SMALL_STATE(2068)] = 19004, + [SMALL_STATE(2069)] = 19068, + [SMALL_STATE(2070)] = 19132, + [SMALL_STATE(2071)] = 19208, + [SMALL_STATE(2072)] = 19272, + [SMALL_STATE(2073)] = 19336, + [SMALL_STATE(2074)] = 19400, + [SMALL_STATE(2075)] = 19464, + [SMALL_STATE(2076)] = 19580, + [SMALL_STATE(2077)] = 19644, + [SMALL_STATE(2078)] = 19708, + [SMALL_STATE(2079)] = 19772, + [SMALL_STATE(2080)] = 19836, + [SMALL_STATE(2081)] = 19900, + [SMALL_STATE(2082)] = 19964, + [SMALL_STATE(2083)] = 20028, + [SMALL_STATE(2084)] = 20092, + [SMALL_STATE(2085)] = 20156, + [SMALL_STATE(2086)] = 20228, + [SMALL_STATE(2087)] = 20292, + [SMALL_STATE(2088)] = 20356, + [SMALL_STATE(2089)] = 20420, + [SMALL_STATE(2090)] = 20484, + [SMALL_STATE(2091)] = 20548, + [SMALL_STATE(2092)] = 20612, + [SMALL_STATE(2093)] = 20676, + [SMALL_STATE(2094)] = 20740, + [SMALL_STATE(2095)] = 20804, + [SMALL_STATE(2096)] = 20868, + [SMALL_STATE(2097)] = 20932, + [SMALL_STATE(2098)] = 20996, + [SMALL_STATE(2099)] = 21060, + [SMALL_STATE(2100)] = 21124, + [SMALL_STATE(2101)] = 21188, + [SMALL_STATE(2102)] = 21252, + [SMALL_STATE(2103)] = 21316, + [SMALL_STATE(2104)] = 21386, + [SMALL_STATE(2105)] = 21450, + [SMALL_STATE(2106)] = 21526, + [SMALL_STATE(2107)] = 21602, + [SMALL_STATE(2108)] = 21666, + [SMALL_STATE(2109)] = 21746, + [SMALL_STATE(2110)] = 21810, + [SMALL_STATE(2111)] = 21926, + [SMALL_STATE(2112)] = 21990, + [SMALL_STATE(2113)] = 22054, + [SMALL_STATE(2114)] = 22118, + [SMALL_STATE(2115)] = 22194, + [SMALL_STATE(2116)] = 22258, + [SMALL_STATE(2117)] = 22334, + [SMALL_STATE(2118)] = 22410, + [SMALL_STATE(2119)] = 22526, + [SMALL_STATE(2120)] = 22642, + [SMALL_STATE(2121)] = 22718, + [SMALL_STATE(2122)] = 22782, + [SMALL_STATE(2123)] = 22858, + [SMALL_STATE(2124)] = 22922, + [SMALL_STATE(2125)] = 22992, + [SMALL_STATE(2126)] = 23068, + [SMALL_STATE(2127)] = 23132, + [SMALL_STATE(2128)] = 23196, + [SMALL_STATE(2129)] = 23260, + [SMALL_STATE(2130)] = 23324, + [SMALL_STATE(2131)] = 23388, + [SMALL_STATE(2132)] = 23452, + [SMALL_STATE(2133)] = 23518, + [SMALL_STATE(2134)] = 23582, + [SMALL_STATE(2135)] = 23662, + [SMALL_STATE(2136)] = 23726, + [SMALL_STATE(2137)] = 23842, + [SMALL_STATE(2138)] = 23906, + [SMALL_STATE(2139)] = 23976, + [SMALL_STATE(2140)] = 24040, + [SMALL_STATE(2141)] = 24104, + [SMALL_STATE(2142)] = 24168, + [SMALL_STATE(2143)] = 24232, + [SMALL_STATE(2144)] = 24296, + [SMALL_STATE(2145)] = 24360, + [SMALL_STATE(2146)] = 24476, + [SMALL_STATE(2147)] = 24540, + [SMALL_STATE(2148)] = 24604, + [SMALL_STATE(2149)] = 24668, + [SMALL_STATE(2150)] = 24732, + [SMALL_STATE(2151)] = 24796, + [SMALL_STATE(2152)] = 24860, + [SMALL_STATE(2153)] = 24926, + [SMALL_STATE(2154)] = 24990, + [SMALL_STATE(2155)] = 25054, + [SMALL_STATE(2156)] = 25118, + [SMALL_STATE(2157)] = 25182, + [SMALL_STATE(2158)] = 25246, + [SMALL_STATE(2159)] = 25316, + [SMALL_STATE(2160)] = 25386, + [SMALL_STATE(2161)] = 25502, + [SMALL_STATE(2162)] = 25566, + [SMALL_STATE(2163)] = 25630, + [SMALL_STATE(2164)] = 25694, + [SMALL_STATE(2165)] = 25766, + [SMALL_STATE(2166)] = 25830, + [SMALL_STATE(2167)] = 25946, + [SMALL_STATE(2168)] = 26009, + [SMALL_STATE(2169)] = 26074, + [SMALL_STATE(2170)] = 26139, + [SMALL_STATE(2171)] = 26202, + [SMALL_STATE(2172)] = 26265, + [SMALL_STATE(2173)] = 26328, + [SMALL_STATE(2174)] = 26407, + [SMALL_STATE(2175)] = 26486, + [SMALL_STATE(2176)] = 26551, + [SMALL_STATE(2177)] = 26614, + [SMALL_STATE(2178)] = 26691, + [SMALL_STATE(2179)] = 26768, + [SMALL_STATE(2180)] = 26839, + [SMALL_STATE(2181)] = 26906, + [SMALL_STATE(2182)] = 27019, + [SMALL_STATE(2183)] = 27084, + [SMALL_STATE(2184)] = 27153, + [SMALL_STATE(2185)] = 27218, + [SMALL_STATE(2186)] = 27281, + [SMALL_STATE(2187)] = 27350, + [SMALL_STATE(2188)] = 27425, + [SMALL_STATE(2189)] = 27538, + [SMALL_STATE(2190)] = 27603, + [SMALL_STATE(2191)] = 27666, + [SMALL_STATE(2192)] = 27731, + [SMALL_STATE(2193)] = 27810, + [SMALL_STATE(2194)] = 27923, + [SMALL_STATE(2195)] = 28036, + [SMALL_STATE(2196)] = 28105, + [SMALL_STATE(2197)] = 28168, + [SMALL_STATE(2198)] = 28233, + [SMALL_STATE(2199)] = 28312, + [SMALL_STATE(2200)] = 28375, + [SMALL_STATE(2201)] = 28438, + [SMALL_STATE(2202)] = 28501, + [SMALL_STATE(2203)] = 28564, + [SMALL_STATE(2204)] = 28627, + [SMALL_STATE(2205)] = 28690, + [SMALL_STATE(2206)] = 28752, + [SMALL_STATE(2207)] = 28814, + [SMALL_STATE(2208)] = 28876, + [SMALL_STATE(2209)] = 28938, + [SMALL_STATE(2210)] = 29000, + [SMALL_STATE(2211)] = 29062, + [SMALL_STATE(2212)] = 29124, + [SMALL_STATE(2213)] = 29186, + [SMALL_STATE(2214)] = 29248, + [SMALL_STATE(2215)] = 29310, + [SMALL_STATE(2216)] = 29378, + [SMALL_STATE(2217)] = 29440, + [SMALL_STATE(2218)] = 29502, + [SMALL_STATE(2219)] = 29564, + [SMALL_STATE(2220)] = 29626, + [SMALL_STATE(2221)] = 29688, + [SMALL_STATE(2222)] = 29750, + [SMALL_STATE(2223)] = 29812, + [SMALL_STATE(2224)] = 29874, + [SMALL_STATE(2225)] = 29936, + [SMALL_STATE(2226)] = 29998, + [SMALL_STATE(2227)] = 30060, + [SMALL_STATE(2228)] = 30122, + [SMALL_STATE(2229)] = 30184, + [SMALL_STATE(2230)] = 30250, + [SMALL_STATE(2231)] = 30312, + [SMALL_STATE(2232)] = 30374, + [SMALL_STATE(2233)] = 30436, + [SMALL_STATE(2234)] = 30498, + [SMALL_STATE(2235)] = 30560, + [SMALL_STATE(2236)] = 30622, + [SMALL_STATE(2237)] = 30684, + [SMALL_STATE(2238)] = 30746, + [SMALL_STATE(2239)] = 30808, + [SMALL_STATE(2240)] = 30870, + [SMALL_STATE(2241)] = 30932, + [SMALL_STATE(2242)] = 30994, + [SMALL_STATE(2243)] = 31056, + [SMALL_STATE(2244)] = 31118, + [SMALL_STATE(2245)] = 31180, + [SMALL_STATE(2246)] = 31242, + [SMALL_STATE(2247)] = 31304, + [SMALL_STATE(2248)] = 31372, + [SMALL_STATE(2249)] = 31438, + [SMALL_STATE(2250)] = 31500, + [SMALL_STATE(2251)] = 31562, + [SMALL_STATE(2252)] = 31624, + [SMALL_STATE(2253)] = 31686, + [SMALL_STATE(2254)] = 31752, + [SMALL_STATE(2255)] = 31814, + [SMALL_STATE(2256)] = 31876, + [SMALL_STATE(2257)] = 31938, + [SMALL_STATE(2258)] = 32000, + [SMALL_STATE(2259)] = 32062, + [SMALL_STATE(2260)] = 32124, + [SMALL_STATE(2261)] = 32186, + [SMALL_STATE(2262)] = 32248, + [SMALL_STATE(2263)] = 32310, + [SMALL_STATE(2264)] = 32372, + [SMALL_STATE(2265)] = 32434, + [SMALL_STATE(2266)] = 32496, + [SMALL_STATE(2267)] = 32558, + [SMALL_STATE(2268)] = 32620, + [SMALL_STATE(2269)] = 32682, + [SMALL_STATE(2270)] = 32744, + [SMALL_STATE(2271)] = 32806, + [SMALL_STATE(2272)] = 32868, + [SMALL_STATE(2273)] = 32930, + [SMALL_STATE(2274)] = 32992, + [SMALL_STATE(2275)] = 33062, + [SMALL_STATE(2276)] = 33124, + [SMALL_STATE(2277)] = 33186, + [SMALL_STATE(2278)] = 33248, + [SMALL_STATE(2279)] = 33310, + [SMALL_STATE(2280)] = 33372, + [SMALL_STATE(2281)] = 33434, + [SMALL_STATE(2282)] = 33496, + [SMALL_STATE(2283)] = 33558, + [SMALL_STATE(2284)] = 33620, + [SMALL_STATE(2285)] = 33684, + [SMALL_STATE(2286)] = 33746, + [SMALL_STATE(2287)] = 33816, + [SMALL_STATE(2288)] = 33878, + [SMALL_STATE(2289)] = 33940, + [SMALL_STATE(2290)] = 34002, + [SMALL_STATE(2291)] = 34064, + [SMALL_STATE(2292)] = 34126, + [SMALL_STATE(2293)] = 34188, + [SMALL_STATE(2294)] = 34264, + [SMALL_STATE(2295)] = 34326, + [SMALL_STATE(2296)] = 34388, + [SMALL_STATE(2297)] = 34450, + [SMALL_STATE(2298)] = 34512, + [SMALL_STATE(2299)] = 34574, + [SMALL_STATE(2300)] = 34636, + [SMALL_STATE(2301)] = 34698, + [SMALL_STATE(2302)] = 34760, + [SMALL_STATE(2303)] = 34822, + [SMALL_STATE(2304)] = 34884, + [SMALL_STATE(2305)] = 34946, + [SMALL_STATE(2306)] = 35008, + [SMALL_STATE(2307)] = 35070, + [SMALL_STATE(2308)] = 35134, + [SMALL_STATE(2309)] = 35196, + [SMALL_STATE(2310)] = 35258, + [SMALL_STATE(2311)] = 35326, + [SMALL_STATE(2312)] = 35390, + [SMALL_STATE(2313)] = 35452, + [SMALL_STATE(2314)] = 35514, + [SMALL_STATE(2315)] = 35576, + [SMALL_STATE(2316)] = 35686, + [SMALL_STATE(2317)] = 35748, + [SMALL_STATE(2318)] = 35810, + [SMALL_STATE(2319)] = 35872, + [SMALL_STATE(2320)] = 35938, + [SMALL_STATE(2321)] = 36000, + [SMALL_STATE(2322)] = 36062, + [SMALL_STATE(2323)] = 36124, + [SMALL_STATE(2324)] = 36186, + [SMALL_STATE(2325)] = 36248, + [SMALL_STATE(2326)] = 36310, + [SMALL_STATE(2327)] = 36372, + [SMALL_STATE(2328)] = 36434, + [SMALL_STATE(2329)] = 36496, + [SMALL_STATE(2330)] = 36558, + [SMALL_STATE(2331)] = 36620, + [SMALL_STATE(2332)] = 36682, + [SMALL_STATE(2333)] = 36744, + [SMALL_STATE(2334)] = 36806, + [SMALL_STATE(2335)] = 36868, + [SMALL_STATE(2336)] = 36930, + [SMALL_STATE(2337)] = 36992, + [SMALL_STATE(2338)] = 37054, + [SMALL_STATE(2339)] = 37116, + [SMALL_STATE(2340)] = 37178, + [SMALL_STATE(2341)] = 37246, + [SMALL_STATE(2342)] = 37316, + [SMALL_STATE(2343)] = 37378, + [SMALL_STATE(2344)] = 37440, + [SMALL_STATE(2345)] = 37502, + [SMALL_STATE(2346)] = 37564, + [SMALL_STATE(2347)] = 37638, + [SMALL_STATE(2348)] = 37700, + [SMALL_STATE(2349)] = 37762, + [SMALL_STATE(2350)] = 37824, + [SMALL_STATE(2351)] = 37892, + [SMALL_STATE(2352)] = 37954, + [SMALL_STATE(2353)] = 38016, + [SMALL_STATE(2354)] = 38078, + [SMALL_STATE(2355)] = 38140, + [SMALL_STATE(2356)] = 38202, + [SMALL_STATE(2357)] = 38264, + [SMALL_STATE(2358)] = 38326, + [SMALL_STATE(2359)] = 38390, + [SMALL_STATE(2360)] = 38452, + [SMALL_STATE(2361)] = 38514, + [SMALL_STATE(2362)] = 38578, + [SMALL_STATE(2363)] = 38640, + [SMALL_STATE(2364)] = 38706, + [SMALL_STATE(2365)] = 38768, + [SMALL_STATE(2366)] = 38830, + [SMALL_STATE(2367)] = 38892, + [SMALL_STATE(2368)] = 38954, + [SMALL_STATE(2369)] = 39020, + [SMALL_STATE(2370)] = 39082, + [SMALL_STATE(2371)] = 39144, + [SMALL_STATE(2372)] = 39206, + [SMALL_STATE(2373)] = 39268, + [SMALL_STATE(2374)] = 39334, + [SMALL_STATE(2375)] = 39396, + [SMALL_STATE(2376)] = 39458, + [SMALL_STATE(2377)] = 39520, + [SMALL_STATE(2378)] = 39582, + [SMALL_STATE(2379)] = 39644, + [SMALL_STATE(2380)] = 39722, + [SMALL_STATE(2381)] = 39784, + [SMALL_STATE(2382)] = 39846, + [SMALL_STATE(2383)] = 39908, + [SMALL_STATE(2384)] = 39970, + [SMALL_STATE(2385)] = 40032, + [SMALL_STATE(2386)] = 40094, + [SMALL_STATE(2387)] = 40156, + [SMALL_STATE(2388)] = 40224, + [SMALL_STATE(2389)] = 40286, + [SMALL_STATE(2390)] = 40348, + [SMALL_STATE(2391)] = 40410, + [SMALL_STATE(2392)] = 40472, + [SMALL_STATE(2393)] = 40534, + [SMALL_STATE(2394)] = 40596, + [SMALL_STATE(2395)] = 40658, + [SMALL_STATE(2396)] = 40720, + [SMALL_STATE(2397)] = 40782, + [SMALL_STATE(2398)] = 40844, + [SMALL_STATE(2399)] = 40906, + [SMALL_STATE(2400)] = 40968, + [SMALL_STATE(2401)] = 41030, + [SMALL_STATE(2402)] = 41092, + [SMALL_STATE(2403)] = 41154, + [SMALL_STATE(2404)] = 41216, + [SMALL_STATE(2405)] = 41278, + [SMALL_STATE(2406)] = 41340, + [SMALL_STATE(2407)] = 41402, + [SMALL_STATE(2408)] = 41464, + [SMALL_STATE(2409)] = 41530, + [SMALL_STATE(2410)] = 41592, + [SMALL_STATE(2411)] = 41654, + [SMALL_STATE(2412)] = 41716, + [SMALL_STATE(2413)] = 41790, + [SMALL_STATE(2414)] = 41852, + [SMALL_STATE(2415)] = 41914, + [SMALL_STATE(2416)] = 41976, + [SMALL_STATE(2417)] = 42038, + [SMALL_STATE(2418)] = 42100, + [SMALL_STATE(2419)] = 42162, + [SMALL_STATE(2420)] = 42224, + [SMALL_STATE(2421)] = 42286, + [SMALL_STATE(2422)] = 42348, + [SMALL_STATE(2423)] = 42412, + [SMALL_STATE(2424)] = 42474, + [SMALL_STATE(2425)] = 42546, + [SMALL_STATE(2426)] = 42608, + [SMALL_STATE(2427)] = 42670, + [SMALL_STATE(2428)] = 42732, + [SMALL_STATE(2429)] = 42794, + [SMALL_STATE(2430)] = 42904, + [SMALL_STATE(2431)] = 42966, + [SMALL_STATE(2432)] = 43028, + [SMALL_STATE(2433)] = 43090, + [SMALL_STATE(2434)] = 43152, + [SMALL_STATE(2435)] = 43214, + [SMALL_STATE(2436)] = 43276, + [SMALL_STATE(2437)] = 43338, + [SMALL_STATE(2438)] = 43400, + [SMALL_STATE(2439)] = 43462, + [SMALL_STATE(2440)] = 43524, + [SMALL_STATE(2441)] = 43586, + [SMALL_STATE(2442)] = 43648, + [SMALL_STATE(2443)] = 43710, + [SMALL_STATE(2444)] = 43772, + [SMALL_STATE(2445)] = 43834, + [SMALL_STATE(2446)] = 43896, + [SMALL_STATE(2447)] = 43958, + [SMALL_STATE(2448)] = 44020, + [SMALL_STATE(2449)] = 44082, + [SMALL_STATE(2450)] = 44150, + [SMALL_STATE(2451)] = 44212, + [SMALL_STATE(2452)] = 44274, + [SMALL_STATE(2453)] = 44336, + [SMALL_STATE(2454)] = 44406, + [SMALL_STATE(2455)] = 44468, + [SMALL_STATE(2456)] = 44530, + [SMALL_STATE(2457)] = 44592, + [SMALL_STATE(2458)] = 44654, + [SMALL_STATE(2459)] = 44716, + [SMALL_STATE(2460)] = 44778, + [SMALL_STATE(2461)] = 44840, + [SMALL_STATE(2462)] = 44902, + [SMALL_STATE(2463)] = 44964, + [SMALL_STATE(2464)] = 45026, + [SMALL_STATE(2465)] = 45088, + [SMALL_STATE(2466)] = 45150, + [SMALL_STATE(2467)] = 45211, + [SMALL_STATE(2468)] = 45274, + [SMALL_STATE(2469)] = 45335, + [SMALL_STATE(2470)] = 45410, + [SMALL_STATE(2471)] = 45471, + [SMALL_STATE(2472)] = 45532, + [SMALL_STATE(2473)] = 45599, + [SMALL_STATE(2474)] = 45708, + [SMALL_STATE(2475)] = 45769, + [SMALL_STATE(2476)] = 45842, + [SMALL_STATE(2477)] = 45903, + [SMALL_STATE(2478)] = 45964, + [SMALL_STATE(2479)] = 46043, + [SMALL_STATE(2480)] = 46114, + [SMALL_STATE(2481)] = 46181, + [SMALL_STATE(2482)] = 46254, + [SMALL_STATE(2483)] = 46327, + [SMALL_STATE(2484)] = 46408, + [SMALL_STATE(2485)] = 46469, + [SMALL_STATE(2486)] = 46532, + [SMALL_STATE(2487)] = 46593, + [SMALL_STATE(2488)] = 46654, + [SMALL_STATE(2489)] = 46715, + [SMALL_STATE(2490)] = 46820, + [SMALL_STATE(2491)] = 46925, + [SMALL_STATE(2492)] = 47000, + [SMALL_STATE(2493)] = 47063, + [SMALL_STATE(2494)] = 47134, + [SMALL_STATE(2495)] = 47195, + [SMALL_STATE(2496)] = 47256, + [SMALL_STATE(2497)] = 47317, + [SMALL_STATE(2498)] = 47378, + [SMALL_STATE(2499)] = 47439, + [SMALL_STATE(2500)] = 47504, + [SMALL_STATE(2501)] = 47565, + [SMALL_STATE(2502)] = 47630, + [SMALL_STATE(2503)] = 47691, + [SMALL_STATE(2504)] = 47752, + [SMALL_STATE(2505)] = 47817, + [SMALL_STATE(2506)] = 47890, + [SMALL_STATE(2507)] = 47963, + [SMALL_STATE(2508)] = 48036, + [SMALL_STATE(2509)] = 48111, + [SMALL_STATE(2510)] = 48172, + [SMALL_STATE(2511)] = 48235, + [SMALL_STATE(2512)] = 48296, + [SMALL_STATE(2513)] = 48357, + [SMALL_STATE(2514)] = 48418, + [SMALL_STATE(2515)] = 48479, + [SMALL_STATE(2516)] = 48540, + [SMALL_STATE(2517)] = 48645, + [SMALL_STATE(2518)] = 48706, + [SMALL_STATE(2519)] = 48767, + [SMALL_STATE(2520)] = 48834, + [SMALL_STATE(2521)] = 48907, + [SMALL_STATE(2522)] = 48968, + [SMALL_STATE(2523)] = 49043, + [SMALL_STATE(2524)] = 49118, + [SMALL_STATE(2525)] = 49179, + [SMALL_STATE(2526)] = 49252, + [SMALL_STATE(2527)] = 49313, + [SMALL_STATE(2528)] = 49386, + [SMALL_STATE(2529)] = 49459, + [SMALL_STATE(2530)] = 49532, + [SMALL_STATE(2531)] = 49593, + [SMALL_STATE(2532)] = 49654, + [SMALL_STATE(2533)] = 49715, + [SMALL_STATE(2534)] = 49776, + [SMALL_STATE(2535)] = 49837, + [SMALL_STATE(2536)] = 49898, + [SMALL_STATE(2537)] = 49977, + [SMALL_STATE(2538)] = 50042, + [SMALL_STATE(2539)] = 50119, + [SMALL_STATE(2540)] = 50200, + [SMALL_STATE(2541)] = 50285, + [SMALL_STATE(2542)] = 50372, + [SMALL_STATE(2543)] = 50463, + [SMALL_STATE(2544)] = 50536, + [SMALL_STATE(2545)] = 50629, + [SMALL_STATE(2546)] = 50726, + [SMALL_STATE(2547)] = 50827, + [SMALL_STATE(2548)] = 50900, + [SMALL_STATE(2549)] = 50975, + [SMALL_STATE(2550)] = 51050, + [SMALL_STATE(2551)] = 51111, + [SMALL_STATE(2552)] = 51172, + [SMALL_STATE(2553)] = 51233, + [SMALL_STATE(2554)] = 51294, + [SMALL_STATE(2555)] = 51355, + [SMALL_STATE(2556)] = 51416, + [SMALL_STATE(2557)] = 51477, + [SMALL_STATE(2558)] = 51584, + [SMALL_STATE(2559)] = 51693, + [SMALL_STATE(2560)] = 51754, + [SMALL_STATE(2561)] = 51817, + [SMALL_STATE(2562)] = 51884, + [SMALL_STATE(2563)] = 51945, + [SMALL_STATE(2564)] = 52006, + [SMALL_STATE(2565)] = 52067, + [SMALL_STATE(2566)] = 52172, + [SMALL_STATE(2567)] = 52233, + [SMALL_STATE(2568)] = 52298, + [SMALL_STATE(2569)] = 52367, + [SMALL_STATE(2570)] = 52432, + [SMALL_STATE(2571)] = 52493, + [SMALL_STATE(2572)] = 52554, + [SMALL_STATE(2573)] = 52615, + [SMALL_STATE(2574)] = 52676, + [SMALL_STATE(2575)] = 52737, + [SMALL_STATE(2576)] = 52800, + [SMALL_STATE(2577)] = 52865, + [SMALL_STATE(2578)] = 52926, + [SMALL_STATE(2579)] = 52987, + [SMALL_STATE(2580)] = 53066, + [SMALL_STATE(2581)] = 53126, + [SMALL_STATE(2582)] = 53230, + [SMALL_STATE(2583)] = 53302, + [SMALL_STATE(2584)] = 53364, + [SMALL_STATE(2585)] = 53426, + [SMALL_STATE(2586)] = 53494, + [SMALL_STATE(2587)] = 53560, + [SMALL_STATE(2588)] = 53626, + [SMALL_STATE(2589)] = 53686, + [SMALL_STATE(2590)] = 53758, + [SMALL_STATE(2591)] = 53824, + [SMALL_STATE(2592)] = 53884, + [SMALL_STATE(2593)] = 53952, + [SMALL_STATE(2594)] = 54012, + [SMALL_STATE(2595)] = 54072, + [SMALL_STATE(2596)] = 54132, + [SMALL_STATE(2597)] = 54192, + [SMALL_STATE(2598)] = 54252, + [SMALL_STATE(2599)] = 54312, + [SMALL_STATE(2600)] = 54372, + [SMALL_STATE(2601)] = 54432, + [SMALL_STATE(2602)] = 54492, + [SMALL_STATE(2603)] = 54552, + [SMALL_STATE(2604)] = 54612, + [SMALL_STATE(2605)] = 54672, + [SMALL_STATE(2606)] = 54732, + [SMALL_STATE(2607)] = 54792, + [SMALL_STATE(2608)] = 54852, + [SMALL_STATE(2609)] = 54912, + [SMALL_STATE(2610)] = 54972, + [SMALL_STATE(2611)] = 55032, + [SMALL_STATE(2612)] = 55092, + [SMALL_STATE(2613)] = 55152, + [SMALL_STATE(2614)] = 55212, + [SMALL_STATE(2615)] = 55272, + [SMALL_STATE(2616)] = 55342, + [SMALL_STATE(2617)] = 55420, + [SMALL_STATE(2618)] = 55480, + [SMALL_STATE(2619)] = 55540, + [SMALL_STATE(2620)] = 55600, + [SMALL_STATE(2621)] = 55660, + [SMALL_STATE(2622)] = 55720, + [SMALL_STATE(2623)] = 55780, + [SMALL_STATE(2624)] = 55840, + [SMALL_STATE(2625)] = 55942, + [SMALL_STATE(2626)] = 56002, + [SMALL_STATE(2627)] = 56062, + [SMALL_STATE(2628)] = 56122, + [SMALL_STATE(2629)] = 56190, + [SMALL_STATE(2630)] = 56250, + [SMALL_STATE(2631)] = 56310, + [SMALL_STATE(2632)] = 56370, + [SMALL_STATE(2633)] = 56430, + [SMALL_STATE(2634)] = 56490, + [SMALL_STATE(2635)] = 56550, + [SMALL_STATE(2636)] = 56610, + [SMALL_STATE(2637)] = 56670, + [SMALL_STATE(2638)] = 56730, + [SMALL_STATE(2639)] = 56790, + [SMALL_STATE(2640)] = 56850, + [SMALL_STATE(2641)] = 56910, + [SMALL_STATE(2642)] = 56970, + [SMALL_STATE(2643)] = 57030, + [SMALL_STATE(2644)] = 57092, + [SMALL_STATE(2645)] = 57152, + [SMALL_STATE(2646)] = 57212, + [SMALL_STATE(2647)] = 57272, + [SMALL_STATE(2648)] = 57332, + [SMALL_STATE(2649)] = 57392, + [SMALL_STATE(2650)] = 57458, + [SMALL_STATE(2651)] = 57518, + [SMALL_STATE(2652)] = 57578, + [SMALL_STATE(2653)] = 57638, + [SMALL_STATE(2654)] = 57698, + [SMALL_STATE(2655)] = 57758, + [SMALL_STATE(2656)] = 57818, + [SMALL_STATE(2657)] = 57878, + [SMALL_STATE(2658)] = 57938, + [SMALL_STATE(2659)] = 57998, + [SMALL_STATE(2660)] = 58064, + [SMALL_STATE(2661)] = 58130, + [SMALL_STATE(2662)] = 58190, + [SMALL_STATE(2663)] = 58252, + [SMALL_STATE(2664)] = 58312, + [SMALL_STATE(2665)] = 58378, + [SMALL_STATE(2666)] = 58444, + [SMALL_STATE(2667)] = 58550, + [SMALL_STATE(2668)] = 58610, + [SMALL_STATE(2669)] = 58678, + [SMALL_STATE(2670)] = 58748, + [SMALL_STATE(2671)] = 58810, + [SMALL_STATE(2672)] = 58876, + [SMALL_STATE(2673)] = 58936, + [SMALL_STATE(2674)] = 58996, + [SMALL_STATE(2675)] = 59056, + [SMALL_STATE(2676)] = 59158, + [SMALL_STATE(2677)] = 59220, + [SMALL_STATE(2678)] = 59280, + [SMALL_STATE(2679)] = 59340, + [SMALL_STATE(2680)] = 59406, + [SMALL_STATE(2681)] = 59466, + [SMALL_STATE(2682)] = 59568, + [SMALL_STATE(2683)] = 59670, + [SMALL_STATE(2684)] = 59730, + [SMALL_STATE(2685)] = 59794, + [SMALL_STATE(2686)] = 59856, + [SMALL_STATE(2687)] = 59918, + [SMALL_STATE(2688)] = 59986, + [SMALL_STATE(2689)] = 60046, + [SMALL_STATE(2690)] = 60116, + [SMALL_STATE(2691)] = 60192, + [SMALL_STATE(2692)] = 60254, + [SMALL_STATE(2693)] = 60328, + [SMALL_STATE(2694)] = 60406, + [SMALL_STATE(2695)] = 60488, + [SMALL_STATE(2696)] = 60572, + [SMALL_STATE(2697)] = 60660, + [SMALL_STATE(2698)] = 60750, + [SMALL_STATE(2699)] = 60844, + [SMALL_STATE(2700)] = 60942, + [SMALL_STATE(2701)] = 61012, + [SMALL_STATE(2702)] = 61084, + [SMALL_STATE(2703)] = 61143, + [SMALL_STATE(2704)] = 61202, + [SMALL_STATE(2705)] = 61261, + [SMALL_STATE(2706)] = 61320, + [SMALL_STATE(2707)] = 61379, + [SMALL_STATE(2708)] = 61438, + [SMALL_STATE(2709)] = 61497, + [SMALL_STATE(2710)] = 61556, + [SMALL_STATE(2711)] = 61615, + [SMALL_STATE(2712)] = 61674, + [SMALL_STATE(2713)] = 61733, + [SMALL_STATE(2714)] = 61792, + [SMALL_STATE(2715)] = 61851, + [SMALL_STATE(2716)] = 61910, + [SMALL_STATE(2717)] = 61969, + [SMALL_STATE(2718)] = 62028, + [SMALL_STATE(2719)] = 62087, + [SMALL_STATE(2720)] = 62146, + [SMALL_STATE(2721)] = 62205, + [SMALL_STATE(2722)] = 62264, + [SMALL_STATE(2723)] = 62323, + [SMALL_STATE(2724)] = 62382, + [SMALL_STATE(2725)] = 62441, + [SMALL_STATE(2726)] = 62506, + [SMALL_STATE(2727)] = 62565, + [SMALL_STATE(2728)] = 62624, + [SMALL_STATE(2729)] = 62683, + [SMALL_STATE(2730)] = 62742, + [SMALL_STATE(2731)] = 62801, + [SMALL_STATE(2732)] = 62860, + [SMALL_STATE(2733)] = 62919, + [SMALL_STATE(2734)] = 62984, + [SMALL_STATE(2735)] = 63043, + [SMALL_STATE(2736)] = 63102, + [SMALL_STATE(2737)] = 63161, + [SMALL_STATE(2738)] = 63220, + [SMALL_STATE(2739)] = 63279, + [SMALL_STATE(2740)] = 63338, + [SMALL_STATE(2741)] = 63397, + [SMALL_STATE(2742)] = 63456, + [SMALL_STATE(2743)] = 63515, + [SMALL_STATE(2744)] = 63574, + [SMALL_STATE(2745)] = 63633, + [SMALL_STATE(2746)] = 63692, + [SMALL_STATE(2747)] = 63751, + [SMALL_STATE(2748)] = 63810, + [SMALL_STATE(2749)] = 63869, + [SMALL_STATE(2750)] = 63928, + [SMALL_STATE(2751)] = 63987, + [SMALL_STATE(2752)] = 64046, + [SMALL_STATE(2753)] = 64105, + [SMALL_STATE(2754)] = 64164, + [SMALL_STATE(2755)] = 64223, + [SMALL_STATE(2756)] = 64282, + [SMALL_STATE(2757)] = 64341, + [SMALL_STATE(2758)] = 64400, + [SMALL_STATE(2759)] = 64459, + [SMALL_STATE(2760)] = 64518, + [SMALL_STATE(2761)] = 64577, + [SMALL_STATE(2762)] = 64636, + [SMALL_STATE(2763)] = 64695, + [SMALL_STATE(2764)] = 64754, + [SMALL_STATE(2765)] = 64813, + [SMALL_STATE(2766)] = 64878, + [SMALL_STATE(2767)] = 64941, + [SMALL_STATE(2768)] = 65000, + [SMALL_STATE(2769)] = 65059, + [SMALL_STATE(2770)] = 65128, + [SMALL_STATE(2771)] = 65281, + [SMALL_STATE(2772)] = 65340, + [SMALL_STATE(2773)] = 65411, + [SMALL_STATE(2774)] = 65564, + [SMALL_STATE(2775)] = 65629, + [SMALL_STATE(2776)] = 65688, + [SMALL_STATE(2777)] = 65749, + [SMALL_STATE(2778)] = 65814, + [SMALL_STATE(2779)] = 65873, + [SMALL_STATE(2780)] = 65932, + [SMALL_STATE(2781)] = 65991, + [SMALL_STATE(2782)] = 66144, + [SMALL_STATE(2783)] = 66297, + [SMALL_STATE(2784)] = 66450, + [SMALL_STATE(2785)] = 66603, + [SMALL_STATE(2786)] = 66756, + [SMALL_STATE(2787)] = 66909, + [SMALL_STATE(2788)] = 67062, + [SMALL_STATE(2789)] = 67215, + [SMALL_STATE(2790)] = 67368, + [SMALL_STATE(2791)] = 67521, + [SMALL_STATE(2792)] = 67580, + [SMALL_STATE(2793)] = 67639, + [SMALL_STATE(2794)] = 67698, + [SMALL_STATE(2795)] = 67757, + [SMALL_STATE(2796)] = 67822, + [SMALL_STATE(2797)] = 67881, + [SMALL_STATE(2798)] = 67940, + [SMALL_STATE(2799)] = 67999, + [SMALL_STATE(2800)] = 68058, + [SMALL_STATE(2801)] = 68117, + [SMALL_STATE(2802)] = 68176, + [SMALL_STATE(2803)] = 68235, + [SMALL_STATE(2804)] = 68294, + [SMALL_STATE(2805)] = 68353, + [SMALL_STATE(2806)] = 68412, + [SMALL_STATE(2807)] = 68471, + [SMALL_STATE(2808)] = 68530, + [SMALL_STATE(2809)] = 68589, + [SMALL_STATE(2810)] = 68648, + [SMALL_STATE(2811)] = 68707, + [SMALL_STATE(2812)] = 68766, + [SMALL_STATE(2813)] = 68825, + [SMALL_STATE(2814)] = 68884, + [SMALL_STATE(2815)] = 68943, + [SMALL_STATE(2816)] = 69002, + [SMALL_STATE(2817)] = 69061, + [SMALL_STATE(2818)] = 69120, + [SMALL_STATE(2819)] = 69179, + [SMALL_STATE(2820)] = 69240, + [SMALL_STATE(2821)] = 69299, + [SMALL_STATE(2822)] = 69358, + [SMALL_STATE(2823)] = 69417, + [SMALL_STATE(2824)] = 69476, + [SMALL_STATE(2825)] = 69535, + [SMALL_STATE(2826)] = 69594, + [SMALL_STATE(2827)] = 69655, + [SMALL_STATE(2828)] = 69716, + [SMALL_STATE(2829)] = 69777, + [SMALL_STATE(2830)] = 69836, + [SMALL_STATE(2831)] = 69895, + [SMALL_STATE(2832)] = 69954, + [SMALL_STATE(2833)] = 70013, + [SMALL_STATE(2834)] = 70072, + [SMALL_STATE(2835)] = 70131, + [SMALL_STATE(2836)] = 70190, + [SMALL_STATE(2837)] = 70249, + [SMALL_STATE(2838)] = 70308, + [SMALL_STATE(2839)] = 70367, + [SMALL_STATE(2840)] = 70426, + [SMALL_STATE(2841)] = 70485, + [SMALL_STATE(2842)] = 70544, + [SMALL_STATE(2843)] = 70603, + [SMALL_STATE(2844)] = 70662, + [SMALL_STATE(2845)] = 70721, + [SMALL_STATE(2846)] = 70780, + [SMALL_STATE(2847)] = 70839, + [SMALL_STATE(2848)] = 70898, + [SMALL_STATE(2849)] = 70957, + [SMALL_STATE(2850)] = 71016, + [SMALL_STATE(2851)] = 71075, + [SMALL_STATE(2852)] = 71134, + [SMALL_STATE(2853)] = 71193, + [SMALL_STATE(2854)] = 71252, + [SMALL_STATE(2855)] = 71311, + [SMALL_STATE(2856)] = 71370, + [SMALL_STATE(2857)] = 71429, + [SMALL_STATE(2858)] = 71488, + [SMALL_STATE(2859)] = 71547, + [SMALL_STATE(2860)] = 71606, + [SMALL_STATE(2861)] = 71665, + [SMALL_STATE(2862)] = 71724, + [SMALL_STATE(2863)] = 71783, + [SMALL_STATE(2864)] = 71842, + [SMALL_STATE(2865)] = 71901, + [SMALL_STATE(2866)] = 71960, + [SMALL_STATE(2867)] = 72019, + [SMALL_STATE(2868)] = 72078, + [SMALL_STATE(2869)] = 72137, + [SMALL_STATE(2870)] = 72196, + [SMALL_STATE(2871)] = 72255, + [SMALL_STATE(2872)] = 72314, + [SMALL_STATE(2873)] = 72373, + [SMALL_STATE(2874)] = 72432, + [SMALL_STATE(2875)] = 72491, + [SMALL_STATE(2876)] = 72550, + [SMALL_STATE(2877)] = 72611, + [SMALL_STATE(2878)] = 72670, + [SMALL_STATE(2879)] = 72729, + [SMALL_STATE(2880)] = 72788, + [SMALL_STATE(2881)] = 72847, + [SMALL_STATE(2882)] = 72906, + [SMALL_STATE(2883)] = 72965, + [SMALL_STATE(2884)] = 73024, + [SMALL_STATE(2885)] = 73083, + [SMALL_STATE(2886)] = 73142, + [SMALL_STATE(2887)] = 73201, + [SMALL_STATE(2888)] = 73260, + [SMALL_STATE(2889)] = 73319, + [SMALL_STATE(2890)] = 73378, + [SMALL_STATE(2891)] = 73437, + [SMALL_STATE(2892)] = 73496, + [SMALL_STATE(2893)] = 73555, + [SMALL_STATE(2894)] = 73614, + [SMALL_STATE(2895)] = 73673, + [SMALL_STATE(2896)] = 73732, + [SMALL_STATE(2897)] = 73791, + [SMALL_STATE(2898)] = 73854, + [SMALL_STATE(2899)] = 73913, + [SMALL_STATE(2900)] = 73972, + [SMALL_STATE(2901)] = 74031, + [SMALL_STATE(2902)] = 74094, + [SMALL_STATE(2903)] = 74153, + [SMALL_STATE(2904)] = 74212, + [SMALL_STATE(2905)] = 74271, + [SMALL_STATE(2906)] = 74330, + [SMALL_STATE(2907)] = 74389, + [SMALL_STATE(2908)] = 74448, + [SMALL_STATE(2909)] = 74507, + [SMALL_STATE(2910)] = 74566, + [SMALL_STATE(2911)] = 74625, + [SMALL_STATE(2912)] = 74684, + [SMALL_STATE(2913)] = 74743, + [SMALL_STATE(2914)] = 74802, + [SMALL_STATE(2915)] = 74861, + [SMALL_STATE(2916)] = 74920, + [SMALL_STATE(2917)] = 74979, + [SMALL_STATE(2918)] = 75038, + [SMALL_STATE(2919)] = 75097, + [SMALL_STATE(2920)] = 75156, + [SMALL_STATE(2921)] = 75215, + [SMALL_STATE(2922)] = 75274, + [SMALL_STATE(2923)] = 75333, + [SMALL_STATE(2924)] = 75392, + [SMALL_STATE(2925)] = 75451, + [SMALL_STATE(2926)] = 75510, + [SMALL_STATE(2927)] = 75610, + [SMALL_STATE(2928)] = 75712, + [SMALL_STATE(2929)] = 75788, + [SMALL_STATE(2930)] = 75850, + [SMALL_STATE(2931)] = 75908, + [SMALL_STATE(2932)] = 75968, + [SMALL_STATE(2933)] = 76038, + [SMALL_STATE(2934)] = 76096, + [SMALL_STATE(2935)] = 76164, + [SMALL_STATE(2936)] = 76234, + [SMALL_STATE(2937)] = 76334, + [SMALL_STATE(2938)] = 76392, + [SMALL_STATE(2939)] = 76450, + [SMALL_STATE(2940)] = 76508, + [SMALL_STATE(2941)] = 76568, + [SMALL_STATE(2942)] = 76626, + [SMALL_STATE(2943)] = 76684, + [SMALL_STATE(2944)] = 76784, + [SMALL_STATE(2945)] = 76842, + [SMALL_STATE(2946)] = 76900, + [SMALL_STATE(2947)] = 76958, + [SMALL_STATE(2948)] = 77016, + [SMALL_STATE(2949)] = 77086, + [SMALL_STATE(2950)] = 77190, + [SMALL_STATE(2951)] = 77248, + [SMALL_STATE(2952)] = 77306, + [SMALL_STATE(2953)] = 77384, + [SMALL_STATE(2954)] = 77442, + [SMALL_STATE(2955)] = 77500, + [SMALL_STATE(2956)] = 77558, + [SMALL_STATE(2957)] = 77618, + [SMALL_STATE(2958)] = 77676, + [SMALL_STATE(2959)] = 77734, + [SMALL_STATE(2960)] = 77796, + [SMALL_STATE(2961)] = 77864, + [SMALL_STATE(2962)] = 77926, + [SMALL_STATE(2963)] = 78012, + [SMALL_STATE(2964)] = 78090, + [SMALL_STATE(2965)] = 78170, + [SMALL_STATE(2966)] = 78252, + [SMALL_STATE(2967)] = 78312, + [SMALL_STATE(2968)] = 78400, + [SMALL_STATE(2969)] = 78492, + [SMALL_STATE(2970)] = 78588, + [SMALL_STATE(2971)] = 78658, + [SMALL_STATE(2972)] = 78718, + [SMALL_STATE(2973)] = 78778, + [SMALL_STATE(2974)] = 78836, + [SMALL_STATE(2975)] = 78894, + [SMALL_STATE(2976)] = 78994, + [SMALL_STATE(2977)] = 79066, + [SMALL_STATE(2978)] = 79124, + [SMALL_STATE(2979)] = 79198, + [SMALL_STATE(2980)] = 79256, + [SMALL_STATE(2981)] = 79316, + [SMALL_STATE(2982)] = 79373, + [SMALL_STATE(2983)] = 79430, + [SMALL_STATE(2984)] = 79487, + [SMALL_STATE(2985)] = 79544, + [SMALL_STATE(2986)] = 79601, + [SMALL_STATE(2987)] = 79658, + [SMALL_STATE(2988)] = 79715, + [SMALL_STATE(2989)] = 79774, + [SMALL_STATE(2990)] = 79831, + [SMALL_STATE(2991)] = 79888, + [SMALL_STATE(2992)] = 79951, + [SMALL_STATE(2993)] = 80016, + [SMALL_STATE(2994)] = 80073, + [SMALL_STATE(2995)] = 80140, + [SMALL_STATE(2996)] = 80215, + [SMALL_STATE(2997)] = 80312, + [SMALL_STATE(2998)] = 80377, + [SMALL_STATE(2999)] = 80434, + [SMALL_STATE(3000)] = 80491, + [SMALL_STATE(3001)] = 80548, + [SMALL_STATE(3002)] = 80605, + [SMALL_STATE(3003)] = 80662, + [SMALL_STATE(3004)] = 80725, + [SMALL_STATE(3005)] = 80782, + [SMALL_STATE(3006)] = 80883, + [SMALL_STATE(3007)] = 80940, + [SMALL_STATE(3008)] = 81001, + [SMALL_STATE(3009)] = 81058, + [SMALL_STATE(3010)] = 81115, + [SMALL_STATE(3011)] = 81172, + [SMALL_STATE(3012)] = 81229, + [SMALL_STATE(3013)] = 81286, + [SMALL_STATE(3014)] = 81343, + [SMALL_STATE(3015)] = 81400, + [SMALL_STATE(3016)] = 81457, + [SMALL_STATE(3017)] = 81518, + [SMALL_STATE(3018)] = 81583, + [SMALL_STATE(3019)] = 81680, + [SMALL_STATE(3020)] = 81737, + [SMALL_STATE(3021)] = 81796, + [SMALL_STATE(3022)] = 81853, + [SMALL_STATE(3023)] = 81910, + [SMALL_STATE(3024)] = 82009, + [SMALL_STATE(3025)] = 82066, + [SMALL_STATE(3026)] = 82123, + [SMALL_STATE(3027)] = 82180, + [SMALL_STATE(3028)] = 82237, + [SMALL_STATE(3029)] = 82294, + [SMALL_STATE(3030)] = 82351, + [SMALL_STATE(3031)] = 82408, + [SMALL_STATE(3032)] = 82465, + [SMALL_STATE(3033)] = 82522, + [SMALL_STATE(3034)] = 82579, + [SMALL_STATE(3035)] = 82636, + [SMALL_STATE(3036)] = 82693, + [SMALL_STATE(3037)] = 82750, + [SMALL_STATE(3038)] = 82807, + [SMALL_STATE(3039)] = 82864, + [SMALL_STATE(3040)] = 82921, + [SMALL_STATE(3041)] = 82988, + [SMALL_STATE(3042)] = 83083, + [SMALL_STATE(3043)] = 83140, + [SMALL_STATE(3044)] = 83233, + [SMALL_STATE(3045)] = 83322, + [SMALL_STATE(3046)] = 83407, + [SMALL_STATE(3047)] = 83464, + [SMALL_STATE(3048)] = 83545, + [SMALL_STATE(3049)] = 83624, + [SMALL_STATE(3050)] = 83699, + [SMALL_STATE(3051)] = 83770, + [SMALL_STATE(3052)] = 83843, + [SMALL_STATE(3053)] = 83900, + [SMALL_STATE(3054)] = 83957, + [SMALL_STATE(3055)] = 84014, + [SMALL_STATE(3056)] = 84075, + [SMALL_STATE(3057)] = 84132, + [SMALL_STATE(3058)] = 84201, + [SMALL_STATE(3059)] = 84262, + [SMALL_STATE(3060)] = 84319, + [SMALL_STATE(3061)] = 84386, + [SMALL_STATE(3062)] = 84443, + [SMALL_STATE(3063)] = 84512, + [SMALL_STATE(3064)] = 84589, + [SMALL_STATE(3065)] = 84690, + [SMALL_STATE(3066)] = 84757, + [SMALL_STATE(3067)] = 84858, + [SMALL_STATE(3068)] = 84961, + [SMALL_STATE(3069)] = 85018, + [SMALL_STATE(3070)] = 85089, + [SMALL_STATE(3071)] = 85158, + [SMALL_STATE(3072)] = 85255, + [SMALL_STATE(3073)] = 85348, + [SMALL_STATE(3074)] = 85437, + [SMALL_STATE(3075)] = 85500, + [SMALL_STATE(3076)] = 85587, + [SMALL_STATE(3077)] = 85670, + [SMALL_STATE(3078)] = 85727, + [SMALL_STATE(3079)] = 85794, + [SMALL_STATE(3080)] = 85891, + [SMALL_STATE(3081)] = 85948, + [SMALL_STATE(3082)] = 86029, + [SMALL_STATE(3083)] = 86098, + [SMALL_STATE(3084)] = 86195, + [SMALL_STATE(3085)] = 86272, + [SMALL_STATE(3086)] = 86345, + [SMALL_STATE(3087)] = 86420, + [SMALL_STATE(3088)] = 86489, + [SMALL_STATE(3089)] = 86590, + [SMALL_STATE(3090)] = 86691, + [SMALL_STATE(3091)] = 86796, + [SMALL_STATE(3092)] = 86853, + [SMALL_STATE(3093)] = 86910, + [SMALL_STATE(3094)] = 86967, + [SMALL_STATE(3095)] = 87023, + [SMALL_STATE(3096)] = 87079, + [SMALL_STATE(3097)] = 87137, + [SMALL_STATE(3098)] = 87197, + [SMALL_STATE(3099)] = 87253, + [SMALL_STATE(3100)] = 87309, + [SMALL_STATE(3101)] = 87369, + [SMALL_STATE(3102)] = 87425, + [SMALL_STATE(3103)] = 87481, + [SMALL_STATE(3104)] = 87537, + [SMALL_STATE(3105)] = 87593, + [SMALL_STATE(3106)] = 87649, + [SMALL_STATE(3107)] = 87705, + [SMALL_STATE(3108)] = 87761, + [SMALL_STATE(3109)] = 87817, + [SMALL_STATE(3110)] = 87873, + [SMALL_STATE(3111)] = 87929, + [SMALL_STATE(3112)] = 87985, + [SMALL_STATE(3113)] = 88041, + [SMALL_STATE(3114)] = 88097, + [SMALL_STATE(3115)] = 88159, + [SMALL_STATE(3116)] = 88215, + [SMALL_STATE(3117)] = 88271, + [SMALL_STATE(3118)] = 88333, + [SMALL_STATE(3119)] = 88389, + [SMALL_STATE(3120)] = 88445, + [SMALL_STATE(3121)] = 88501, + [SMALL_STATE(3122)] = 88557, + [SMALL_STATE(3123)] = 88613, + [SMALL_STATE(3124)] = 88671, + [SMALL_STATE(3125)] = 88727, + [SMALL_STATE(3126)] = 88783, + [SMALL_STATE(3127)] = 88839, + [SMALL_STATE(3128)] = 88895, + [SMALL_STATE(3129)] = 88951, + [SMALL_STATE(3130)] = 89007, + [SMALL_STATE(3131)] = 89063, + [SMALL_STATE(3132)] = 89119, + [SMALL_STATE(3133)] = 89175, + [SMALL_STATE(3134)] = 89231, + [SMALL_STATE(3135)] = 89287, + [SMALL_STATE(3136)] = 89343, + [SMALL_STATE(3137)] = 89405, + [SMALL_STATE(3138)] = 89461, + [SMALL_STATE(3139)] = 89517, + [SMALL_STATE(3140)] = 89573, + [SMALL_STATE(3141)] = 89629, + [SMALL_STATE(3142)] = 89685, + [SMALL_STATE(3143)] = 89741, + [SMALL_STATE(3144)] = 89797, + [SMALL_STATE(3145)] = 89853, + [SMALL_STATE(3146)] = 89909, + [SMALL_STATE(3147)] = 89965, + [SMALL_STATE(3148)] = 90020, + [SMALL_STATE(3149)] = 90075, + [SMALL_STATE(3150)] = 90130, + [SMALL_STATE(3151)] = 90189, + [SMALL_STATE(3152)] = 90248, + [SMALL_STATE(3153)] = 90303, + [SMALL_STATE(3154)] = 90358, + [SMALL_STATE(3155)] = 90421, + [SMALL_STATE(3156)] = 90480, + [SMALL_STATE(3157)] = 90535, + [SMALL_STATE(3158)] = 90590, + [SMALL_STATE(3159)] = 90645, + [SMALL_STATE(3160)] = 90700, + [SMALL_STATE(3161)] = 90755, + [SMALL_STATE(3162)] = 90810, + [SMALL_STATE(3163)] = 90865, + [SMALL_STATE(3164)] = 90920, + [SMALL_STATE(3165)] = 90975, + [SMALL_STATE(3166)] = 91030, + [SMALL_STATE(3167)] = 91085, + [SMALL_STATE(3168)] = 91140, + [SMALL_STATE(3169)] = 91195, + [SMALL_STATE(3170)] = 91250, + [SMALL_STATE(3171)] = 91305, + [SMALL_STATE(3172)] = 91360, + [SMALL_STATE(3173)] = 91415, + [SMALL_STATE(3174)] = 91470, + [SMALL_STATE(3175)] = 91525, + [SMALL_STATE(3176)] = 91580, + [SMALL_STATE(3177)] = 91635, + [SMALL_STATE(3178)] = 91690, + [SMALL_STATE(3179)] = 91745, + [SMALL_STATE(3180)] = 91800, + [SMALL_STATE(3181)] = 91855, + [SMALL_STATE(3182)] = 91910, + [SMALL_STATE(3183)] = 91965, + [SMALL_STATE(3184)] = 92020, + [SMALL_STATE(3185)] = 92075, + [SMALL_STATE(3186)] = 92130, + [SMALL_STATE(3187)] = 92185, + [SMALL_STATE(3188)] = 92240, + [SMALL_STATE(3189)] = 92295, + [SMALL_STATE(3190)] = 92350, + [SMALL_STATE(3191)] = 92405, + [SMALL_STATE(3192)] = 92460, + [SMALL_STATE(3193)] = 92515, + [SMALL_STATE(3194)] = 92570, + [SMALL_STATE(3195)] = 92629, + [SMALL_STATE(3196)] = 92684, + [SMALL_STATE(3197)] = 92739, + [SMALL_STATE(3198)] = 92794, + [SMALL_STATE(3199)] = 92849, + [SMALL_STATE(3200)] = 92904, + [SMALL_STATE(3201)] = 92959, + [SMALL_STATE(3202)] = 93014, + [SMALL_STATE(3203)] = 93069, + [SMALL_STATE(3204)] = 93124, + [SMALL_STATE(3205)] = 93179, + [SMALL_STATE(3206)] = 93234, + [SMALL_STATE(3207)] = 93289, + [SMALL_STATE(3208)] = 93344, + [SMALL_STATE(3209)] = 93399, + [SMALL_STATE(3210)] = 93454, + [SMALL_STATE(3211)] = 93509, + [SMALL_STATE(3212)] = 93564, + [SMALL_STATE(3213)] = 93619, + [SMALL_STATE(3214)] = 93674, + [SMALL_STATE(3215)] = 93729, + [SMALL_STATE(3216)] = 93785, + [SMALL_STATE(3217)] = 93839, + [SMALL_STATE(3218)] = 93933, + [SMALL_STATE(3219)] = 93987, + [SMALL_STATE(3220)] = 94041, + [SMALL_STATE(3221)] = 94097, + [SMALL_STATE(3222)] = 94151, + [SMALL_STATE(3223)] = 94211, + [SMALL_STATE(3224)] = 94265, + [SMALL_STATE(3225)] = 94319, + [SMALL_STATE(3226)] = 94373, + [SMALL_STATE(3227)] = 94433, + [SMALL_STATE(3228)] = 94487, + [SMALL_STATE(3229)] = 94541, + [SMALL_STATE(3230)] = 94597, + [SMALL_STATE(3231)] = 94651, + [SMALL_STATE(3232)] = 94705, + [SMALL_STATE(3233)] = 94799, + [SMALL_STATE(3234)] = 94853, + [SMALL_STATE(3235)] = 94907, + [SMALL_STATE(3236)] = 94961, + [SMALL_STATE(3237)] = 95015, + [SMALL_STATE(3238)] = 95069, + [SMALL_STATE(3239)] = 95123, + [SMALL_STATE(3240)] = 95177, + [SMALL_STATE(3241)] = 95231, + [SMALL_STATE(3242)] = 95285, + [SMALL_STATE(3243)] = 95339, + [SMALL_STATE(3244)] = 95398, + [SMALL_STATE(3245)] = 95491, + [SMALL_STATE(3246)] = 95584, + [SMALL_STATE(3247)] = 95677, + [SMALL_STATE(3248)] = 95736, + [SMALL_STATE(3249)] = 95829, + [SMALL_STATE(3250)] = 95922, + [SMALL_STATE(3251)] = 96015, + [SMALL_STATE(3252)] = 96108, + [SMALL_STATE(3253)] = 96201, + [SMALL_STATE(3254)] = 96294, + [SMALL_STATE(3255)] = 96387, + [SMALL_STATE(3256)] = 96480, + [SMALL_STATE(3257)] = 96573, + [SMALL_STATE(3258)] = 96666, + [SMALL_STATE(3259)] = 96759, + [SMALL_STATE(3260)] = 96852, + [SMALL_STATE(3261)] = 96945, + [SMALL_STATE(3262)] = 97002, + [SMALL_STATE(3263)] = 97095, + [SMALL_STATE(3264)] = 97188, + [SMALL_STATE(3265)] = 97281, + [SMALL_STATE(3266)] = 97374, + [SMALL_STATE(3267)] = 97467, + [SMALL_STATE(3268)] = 97560, + [SMALL_STATE(3269)] = 97653, + [SMALL_STATE(3270)] = 97746, + [SMALL_STATE(3271)] = 97839, + [SMALL_STATE(3272)] = 97907, + [SMALL_STATE(3273)] = 97963, + [SMALL_STATE(3274)] = 98021, + [SMALL_STATE(3275)] = 98093, + [SMALL_STATE(3276)] = 98161, + [SMALL_STATE(3277)] = 98219, + [SMALL_STATE(3278)] = 98287, + [SMALL_STATE(3279)] = 98355, + [SMALL_STATE(3280)] = 98427, + [SMALL_STATE(3281)] = 98485, + [SMALL_STATE(3282)] = 98542, + [SMALL_STATE(3283)] = 98595, + [SMALL_STATE(3284)] = 98646, + [SMALL_STATE(3285)] = 98697, + [SMALL_STATE(3286)] = 98760, + [SMALL_STATE(3287)] = 98823, + [SMALL_STATE(3288)] = 98874, + [SMALL_STATE(3289)] = 98937, + [SMALL_STATE(3290)] = 98996, + [SMALL_STATE(3291)] = 99053, + [SMALL_STATE(3292)] = 99116, + [SMALL_STATE(3293)] = 99179, + [SMALL_STATE(3294)] = 99236, + [SMALL_STATE(3295)] = 99299, + [SMALL_STATE(3296)] = 99366, + [SMALL_STATE(3297)] = 99423, + [SMALL_STATE(3298)] = 99474, + [SMALL_STATE(3299)] = 99541, + [SMALL_STATE(3300)] = 99592, + [SMALL_STATE(3301)] = 99655, + [SMALL_STATE(3302)] = 99708, + [SMALL_STATE(3303)] = 99771, + [SMALL_STATE(3304)] = 99838, + [SMALL_STATE(3305)] = 99889, + [SMALL_STATE(3306)] = 99952, + [SMALL_STATE(3307)] = 100003, + [SMALL_STATE(3308)] = 100054, + [SMALL_STATE(3309)] = 100105, + [SMALL_STATE(3310)] = 100156, + [SMALL_STATE(3311)] = 100223, + [SMALL_STATE(3312)] = 100276, + [SMALL_STATE(3313)] = 100332, + [SMALL_STATE(3314)] = 100426, + [SMALL_STATE(3315)] = 100492, + [SMALL_STATE(3316)] = 100542, + [SMALL_STATE(3317)] = 100608, + [SMALL_STATE(3318)] = 100674, + [SMALL_STATE(3319)] = 100740, + [SMALL_STATE(3320)] = 100796, + [SMALL_STATE(3321)] = 100890, + [SMALL_STATE(3322)] = 100939, + [SMALL_STATE(3323)] = 101002, + [SMALL_STATE(3324)] = 101053, + [SMALL_STATE(3325)] = 101144, + [SMALL_STATE(3326)] = 101193, + [SMALL_STATE(3327)] = 101242, + [SMALL_STATE(3328)] = 101333, + [SMALL_STATE(3329)] = 101424, + [SMALL_STATE(3330)] = 101473, + [SMALL_STATE(3331)] = 101564, + [SMALL_STATE(3332)] = 101613, + [SMALL_STATE(3333)] = 101676, + [SMALL_STATE(3334)] = 101725, + [SMALL_STATE(3335)] = 101774, + [SMALL_STATE(3336)] = 101865, + [SMALL_STATE(3337)] = 101914, + [SMALL_STATE(3338)] = 101963, + [SMALL_STATE(3339)] = 102054, + [SMALL_STATE(3340)] = 102145, + [SMALL_STATE(3341)] = 102236, + [SMALL_STATE(3342)] = 102285, + [SMALL_STATE(3343)] = 102376, + [SMALL_STATE(3344)] = 102425, + [SMALL_STATE(3345)] = 102474, + [SMALL_STATE(3346)] = 102565, + [SMALL_STATE(3347)] = 102614, + [SMALL_STATE(3348)] = 102705, + [SMALL_STATE(3349)] = 102796, + [SMALL_STATE(3350)] = 102845, + [SMALL_STATE(3351)] = 102900, + [SMALL_STATE(3352)] = 102991, + [SMALL_STATE(3353)] = 103040, + [SMALL_STATE(3354)] = 103089, + [SMALL_STATE(3355)] = 103138, + [SMALL_STATE(3356)] = 103187, + [SMALL_STATE(3357)] = 103278, + [SMALL_STATE(3358)] = 103327, + [SMALL_STATE(3359)] = 103418, + [SMALL_STATE(3360)] = 103509, + [SMALL_STATE(3361)] = 103572, + [SMALL_STATE(3362)] = 103627, + [SMALL_STATE(3363)] = 103682, + [SMALL_STATE(3364)] = 103735, + [SMALL_STATE(3365)] = 103826, + [SMALL_STATE(3366)] = 103875, + [SMALL_STATE(3367)] = 103924, + [SMALL_STATE(3368)] = 103973, + [SMALL_STATE(3369)] = 104064, + [SMALL_STATE(3370)] = 104155, + [SMALL_STATE(3371)] = 104246, + [SMALL_STATE(3372)] = 104337, + [SMALL_STATE(3373)] = 104387, + [SMALL_STATE(3374)] = 104441, + [SMALL_STATE(3375)] = 104529, + [SMALL_STATE(3376)] = 104617, + [SMALL_STATE(3377)] = 104671, + [SMALL_STATE(3378)] = 104759, + [SMALL_STATE(3379)] = 104847, + [SMALL_STATE(3380)] = 104935, + [SMALL_STATE(3381)] = 105023, + [SMALL_STATE(3382)] = 105077, + [SMALL_STATE(3383)] = 105131, + [SMALL_STATE(3384)] = 105219, + [SMALL_STATE(3385)] = 105273, + [SMALL_STATE(3386)] = 105361, + [SMALL_STATE(3387)] = 105449, + [SMALL_STATE(3388)] = 105501, + [SMALL_STATE(3389)] = 105589, + [SMALL_STATE(3390)] = 105641, + [SMALL_STATE(3391)] = 105729, + [SMALL_STATE(3392)] = 105817, + [SMALL_STATE(3393)] = 105887, + [SMALL_STATE(3394)] = 105975, + [SMALL_STATE(3395)] = 106063, + [SMALL_STATE(3396)] = 106151, + [SMALL_STATE(3397)] = 106239, + [SMALL_STATE(3398)] = 106309, + [SMALL_STATE(3399)] = 106401, + [SMALL_STATE(3400)] = 106493, + [SMALL_STATE(3401)] = 106581, + [SMALL_STATE(3402)] = 106629, + [SMALL_STATE(3403)] = 106699, + [SMALL_STATE(3404)] = 106769, + [SMALL_STATE(3405)] = 106857, + [SMALL_STATE(3406)] = 106945, + [SMALL_STATE(3407)] = 107033, + [SMALL_STATE(3408)] = 107081, + [SMALL_STATE(3409)] = 107139, + [SMALL_STATE(3410)] = 107227, + [SMALL_STATE(3411)] = 107275, + [SMALL_STATE(3412)] = 107337, + [SMALL_STATE(3413)] = 107407, + [SMALL_STATE(3414)] = 107477, + [SMALL_STATE(3415)] = 107565, + [SMALL_STATE(3416)] = 107653, + [SMALL_STATE(3417)] = 107741, + [SMALL_STATE(3418)] = 107811, + [SMALL_STATE(3419)] = 107861, + [SMALL_STATE(3420)] = 107949, + [SMALL_STATE(3421)] = 108037, + [SMALL_STATE(3422)] = 108125, + [SMALL_STATE(3423)] = 108173, + [SMALL_STATE(3424)] = 108221, + [SMALL_STATE(3425)] = 108269, + [SMALL_STATE(3426)] = 108323, + [SMALL_STATE(3427)] = 108411, + [SMALL_STATE(3428)] = 108460, + [SMALL_STATE(3429)] = 108507, + [SMALL_STATE(3430)] = 108554, + [SMALL_STATE(3431)] = 108601, + [SMALL_STATE(3432)] = 108648, + [SMALL_STATE(3433)] = 108695, + [SMALL_STATE(3434)] = 108742, + [SMALL_STATE(3435)] = 108795, + [SMALL_STATE(3436)] = 108844, + [SMALL_STATE(3437)] = 108891, + [SMALL_STATE(3438)] = 108938, + [SMALL_STATE(3439)] = 108985, + [SMALL_STATE(3440)] = 109032, + [SMALL_STATE(3441)] = 109079, + [SMALL_STATE(3442)] = 109126, + [SMALL_STATE(3443)] = 109185, + [SMALL_STATE(3444)] = 109236, + [SMALL_STATE(3445)] = 109293, + [SMALL_STATE(3446)] = 109340, + [SMALL_STATE(3447)] = 109387, + [SMALL_STATE(3448)] = 109434, + [SMALL_STATE(3449)] = 109485, + [SMALL_STATE(3450)] = 109542, + [SMALL_STATE(3451)] = 109589, + [SMALL_STATE(3452)] = 109648, + [SMALL_STATE(3453)] = 109695, + [SMALL_STATE(3454)] = 109754, + [SMALL_STATE(3455)] = 109813, + [SMALL_STATE(3456)] = 109860, + [SMALL_STATE(3457)] = 109911, + [SMALL_STATE(3458)] = 109958, + [SMALL_STATE(3459)] = 110005, + [SMALL_STATE(3460)] = 110052, + [SMALL_STATE(3461)] = 110099, + [SMALL_STATE(3462)] = 110158, + [SMALL_STATE(3463)] = 110213, + [SMALL_STATE(3464)] = 110260, + [SMALL_STATE(3465)] = 110313, + [SMALL_STATE(3466)] = 110360, + [SMALL_STATE(3467)] = 110407, + [SMALL_STATE(3468)] = 110456, + [SMALL_STATE(3469)] = 110503, + [SMALL_STATE(3470)] = 110550, + [SMALL_STATE(3471)] = 110597, + [SMALL_STATE(3472)] = 110652, + [SMALL_STATE(3473)] = 110699, + [SMALL_STATE(3474)] = 110746, + [SMALL_STATE(3475)] = 110793, + [SMALL_STATE(3476)] = 110840, + [SMALL_STATE(3477)] = 110887, + [SMALL_STATE(3478)] = 110934, + [SMALL_STATE(3479)] = 110981, + [SMALL_STATE(3480)] = 111028, + [SMALL_STATE(3481)] = 111079, + [SMALL_STATE(3482)] = 111138, + [SMALL_STATE(3483)] = 111185, + [SMALL_STATE(3484)] = 111232, + [SMALL_STATE(3485)] = 111279, + [SMALL_STATE(3486)] = 111326, + [SMALL_STATE(3487)] = 111385, + [SMALL_STATE(3488)] = 111444, + [SMALL_STATE(3489)] = 111491, + [SMALL_STATE(3490)] = 111538, + [SMALL_STATE(3491)] = 111597, + [SMALL_STATE(3492)] = 111650, + [SMALL_STATE(3493)] = 111697, + [SMALL_STATE(3494)] = 111744, + [SMALL_STATE(3495)] = 111791, + [SMALL_STATE(3496)] = 111838, + [SMALL_STATE(3497)] = 111897, + [SMALL_STATE(3498)] = 111944, + [SMALL_STATE(3499)] = 112003, + [SMALL_STATE(3500)] = 112050, + [SMALL_STATE(3501)] = 112109, + [SMALL_STATE(3502)] = 112156, + [SMALL_STATE(3503)] = 112203, + [SMALL_STATE(3504)] = 112250, + [SMALL_STATE(3505)] = 112297, + [SMALL_STATE(3506)] = 112352, + [SMALL_STATE(3507)] = 112399, + [SMALL_STATE(3508)] = 112446, + [SMALL_STATE(3509)] = 112493, + [SMALL_STATE(3510)] = 112540, + [SMALL_STATE(3511)] = 112603, + [SMALL_STATE(3512)] = 112650, + [SMALL_STATE(3513)] = 112697, + [SMALL_STATE(3514)] = 112744, + [SMALL_STATE(3515)] = 112791, + [SMALL_STATE(3516)] = 112838, + [SMALL_STATE(3517)] = 112885, + [SMALL_STATE(3518)] = 112932, + [SMALL_STATE(3519)] = 112999, + [SMALL_STATE(3520)] = 113046, + [SMALL_STATE(3521)] = 113093, + [SMALL_STATE(3522)] = 113140, + [SMALL_STATE(3523)] = 113187, + [SMALL_STATE(3524)] = 113238, + [SMALL_STATE(3525)] = 113285, + [SMALL_STATE(3526)] = 113338, + [SMALL_STATE(3527)] = 113385, + [SMALL_STATE(3528)] = 113432, + [SMALL_STATE(3529)] = 113499, + [SMALL_STATE(3530)] = 113546, + [SMALL_STATE(3531)] = 113593, + [SMALL_STATE(3532)] = 113640, + [SMALL_STATE(3533)] = 113687, + [SMALL_STATE(3534)] = 113734, + [SMALL_STATE(3535)] = 113781, + [SMALL_STATE(3536)] = 113828, + [SMALL_STATE(3537)] = 113875, + [SMALL_STATE(3538)] = 113922, + [SMALL_STATE(3539)] = 113969, + [SMALL_STATE(3540)] = 114016, + [SMALL_STATE(3541)] = 114068, + [SMALL_STATE(3542)] = 114128, + [SMALL_STATE(3543)] = 114188, + [SMALL_STATE(3544)] = 114246, + [SMALL_STATE(3545)] = 114332, + [SMALL_STATE(3546)] = 114390, + [SMALL_STATE(3547)] = 114442, + [SMALL_STATE(3548)] = 114500, + [SMALL_STATE(3549)] = 114558, + [SMALL_STATE(3550)] = 114644, + [SMALL_STATE(3551)] = 114702, + [SMALL_STATE(3552)] = 114760, + [SMALL_STATE(3553)] = 114846, + [SMALL_STATE(3554)] = 114920, + [SMALL_STATE(3555)] = 114984, + [SMALL_STATE(3556)] = 115052, + [SMALL_STATE(3557)] = 115114, + [SMALL_STATE(3558)] = 115198, + [SMALL_STATE(3559)] = 115280, + [SMALL_STATE(3560)] = 115360, + [SMALL_STATE(3561)] = 115450, + [SMALL_STATE(3562)] = 115510, + [SMALL_STATE(3563)] = 115570, + [SMALL_STATE(3564)] = 115622, + [SMALL_STATE(3565)] = 115708, + [SMALL_STATE(3566)] = 115786, + [SMALL_STATE(3567)] = 115838, + [SMALL_STATE(3568)] = 115924, + [SMALL_STATE(3569)] = 115996, + [SMALL_STATE(3570)] = 116056, + [SMALL_STATE(3571)] = 116114, + [SMALL_STATE(3572)] = 116200, + [SMALL_STATE(3573)] = 116268, + [SMALL_STATE(3574)] = 116314, + [SMALL_STATE(3575)] = 116374, + [SMALL_STATE(3576)] = 116434, + [SMALL_STATE(3577)] = 116492, + [SMALL_STATE(3578)] = 116550, + [SMALL_STATE(3579)] = 116638, + [SMALL_STATE(3580)] = 116698, + [SMALL_STATE(3581)] = 116758, + [SMALL_STATE(3582)] = 116854, + [SMALL_STATE(3583)] = 116906, + [SMALL_STATE(3584)] = 116952, + [SMALL_STATE(3585)] = 116998, + [SMALL_STATE(3586)] = 117064, + [SMALL_STATE(3587)] = 117157, + [SMALL_STATE(3588)] = 117250, + [SMALL_STATE(3589)] = 117295, + [SMALL_STATE(3590)] = 117388, + [SMALL_STATE(3591)] = 117481, + [SMALL_STATE(3592)] = 117572, + [SMALL_STATE(3593)] = 117665, + [SMALL_STATE(3594)] = 117712, + [SMALL_STATE(3595)] = 117805, + [SMALL_STATE(3596)] = 117882, + [SMALL_STATE(3597)] = 117975, + [SMALL_STATE(3598)] = 118068, + [SMALL_STATE(3599)] = 118161, + [SMALL_STATE(3600)] = 118252, + [SMALL_STATE(3601)] = 118345, + [SMALL_STATE(3602)] = 118438, + [SMALL_STATE(3603)] = 118515, + [SMALL_STATE(3604)] = 118592, + [SMALL_STATE(3605)] = 118637, + [SMALL_STATE(3606)] = 118730, + [SMALL_STATE(3607)] = 118823, + [SMALL_STATE(3608)] = 118916, + [SMALL_STATE(3609)] = 118993, + [SMALL_STATE(3610)] = 119070, + [SMALL_STATE(3611)] = 119147, + [SMALL_STATE(3612)] = 119240, + [SMALL_STATE(3613)] = 119333, + [SMALL_STATE(3614)] = 119426, + [SMALL_STATE(3615)] = 119503, + [SMALL_STATE(3616)] = 119596, + [SMALL_STATE(3617)] = 119689, + [SMALL_STATE(3618)] = 119766, + [SMALL_STATE(3619)] = 119859, + [SMALL_STATE(3620)] = 119936, + [SMALL_STATE(3621)] = 120029, + [SMALL_STATE(3622)] = 120122, + [SMALL_STATE(3623)] = 120199, + [SMALL_STATE(3624)] = 120276, + [SMALL_STATE(3625)] = 120353, + [SMALL_STATE(3626)] = 120430, + [SMALL_STATE(3627)] = 120523, + [SMALL_STATE(3628)] = 120616, + [SMALL_STATE(3629)] = 120665, + [SMALL_STATE(3630)] = 120742, + [SMALL_STATE(3631)] = 120835, + [SMALL_STATE(3632)] = 120928, + [SMALL_STATE(3633)] = 121021, + [SMALL_STATE(3634)] = 121114, + [SMALL_STATE(3635)] = 121207, + [SMALL_STATE(3636)] = 121284, + [SMALL_STATE(3637)] = 121377, + [SMALL_STATE(3638)] = 121428, + [SMALL_STATE(3639)] = 121505, + [SMALL_STATE(3640)] = 121582, + [SMALL_STATE(3641)] = 121675, + [SMALL_STATE(3642)] = 121768, + [SMALL_STATE(3643)] = 121861, + [SMALL_STATE(3644)] = 121954, + [SMALL_STATE(3645)] = 122031, + [SMALL_STATE(3646)] = 122117, + [SMALL_STATE(3647)] = 122207, + [SMALL_STATE(3648)] = 122251, + [SMALL_STATE(3649)] = 122335, + [SMALL_STATE(3650)] = 122425, + [SMALL_STATE(3651)] = 122469, + [SMALL_STATE(3652)] = 122535, + [SMALL_STATE(3653)] = 122625, + [SMALL_STATE(3654)] = 122715, + [SMALL_STATE(3655)] = 122759, + [SMALL_STATE(3656)] = 122849, + [SMALL_STATE(3657)] = 122895, + [SMALL_STATE(3658)] = 122985, + [SMALL_STATE(3659)] = 123069, + [SMALL_STATE(3660)] = 123159, + [SMALL_STATE(3661)] = 123249, + [SMALL_STATE(3662)] = 123333, + [SMALL_STATE(3663)] = 123423, + [SMALL_STATE(3664)] = 123471, + [SMALL_STATE(3665)] = 123561, + [SMALL_STATE(3666)] = 123651, + [SMALL_STATE(3667)] = 123695, + [SMALL_STATE(3668)] = 123785, + [SMALL_STATE(3669)] = 123875, + [SMALL_STATE(3670)] = 123965, + [SMALL_STATE(3671)] = 124009, + [SMALL_STATE(3672)] = 124069, + [SMALL_STATE(3673)] = 124151, + [SMALL_STATE(3674)] = 124231, + [SMALL_STATE(3675)] = 124321, + [SMALL_STATE(3676)] = 124399, + [SMALL_STATE(3677)] = 124475, + [SMALL_STATE(3678)] = 124547, + [SMALL_STATE(3679)] = 124615, + [SMALL_STATE(3680)] = 124705, + [SMALL_STATE(3681)] = 124775, + [SMALL_STATE(3682)] = 124841, + [SMALL_STATE(3683)] = 124929, + [SMALL_STATE(3684)] = 124973, + [SMALL_STATE(3685)] = 125061, + [SMALL_STATE(3686)] = 125109, + [SMALL_STATE(3687)] = 125199, + [SMALL_STATE(3688)] = 125289, + [SMALL_STATE(3689)] = 125379, + [SMALL_STATE(3690)] = 125469, + [SMALL_STATE(3691)] = 125559, + [SMALL_STATE(3692)] = 125621, + [SMALL_STATE(3693)] = 125711, + [SMALL_STATE(3694)] = 125801, + [SMALL_STATE(3695)] = 125855, + [SMALL_STATE(3696)] = 125919, + [SMALL_STATE(3697)] = 126009, + [SMALL_STATE(3698)] = 126099, + [SMALL_STATE(3699)] = 126143, + [SMALL_STATE(3700)] = 126231, + [SMALL_STATE(3701)] = 126321, + [SMALL_STATE(3702)] = 126405, + [SMALL_STATE(3703)] = 126493, + [SMALL_STATE(3704)] = 126581, + [SMALL_STATE(3705)] = 126625, + [SMALL_STATE(3706)] = 126715, + [SMALL_STATE(3707)] = 126773, + [SMALL_STATE(3708)] = 126827, + [SMALL_STATE(3709)] = 126915, + [SMALL_STATE(3710)] = 126999, + [SMALL_STATE(3711)] = 127089, + [SMALL_STATE(3712)] = 127145, + [SMALL_STATE(3713)] = 127235, + [SMALL_STATE(3714)] = 127289, + [SMALL_STATE(3715)] = 127379, + [SMALL_STATE(3716)] = 127469, + [SMALL_STATE(3717)] = 127559, + [SMALL_STATE(3718)] = 127649, + [SMALL_STATE(3719)] = 127739, + [SMALL_STATE(3720)] = 127829, + [SMALL_STATE(3721)] = 127919, + [SMALL_STATE(3722)] = 128007, + [SMALL_STATE(3723)] = 128097, + [SMALL_STATE(3724)] = 128145, + [SMALL_STATE(3725)] = 128235, + [SMALL_STATE(3726)] = 128325, + [SMALL_STATE(3727)] = 128415, + [SMALL_STATE(3728)] = 128505, + [SMALL_STATE(3729)] = 128595, + [SMALL_STATE(3730)] = 128685, + [SMALL_STATE(3731)] = 128729, + [SMALL_STATE(3732)] = 128819, + [SMALL_STATE(3733)] = 128909, + [SMALL_STATE(3734)] = 128999, + [SMALL_STATE(3735)] = 129089, + [SMALL_STATE(3736)] = 129133, + [SMALL_STATE(3737)] = 129223, + [SMALL_STATE(3738)] = 129267, + [SMALL_STATE(3739)] = 129325, + [SMALL_STATE(3740)] = 129369, + [SMALL_STATE(3741)] = 129459, + [SMALL_STATE(3742)] = 129549, + [SMALL_STATE(3743)] = 129593, + [SMALL_STATE(3744)] = 129637, + [SMALL_STATE(3745)] = 129717, + [SMALL_STATE(3746)] = 129807, + [SMALL_STATE(3747)] = 129897, + [SMALL_STATE(3748)] = 129987, + [SMALL_STATE(3749)] = 130077, + [SMALL_STATE(3750)] = 130121, + [SMALL_STATE(3751)] = 130165, + [SMALL_STATE(3752)] = 130213, + [SMALL_STATE(3753)] = 130301, + [SMALL_STATE(3754)] = 130385, + [SMALL_STATE(3755)] = 130473, + [SMALL_STATE(3756)] = 130517, + [SMALL_STATE(3757)] = 130607, + [SMALL_STATE(3758)] = 130697, + [SMALL_STATE(3759)] = 130741, + [SMALL_STATE(3760)] = 130831, + [SMALL_STATE(3761)] = 130919, + [SMALL_STATE(3762)] = 130985, + [SMALL_STATE(3763)] = 131047, + [SMALL_STATE(3764)] = 131137, + [SMALL_STATE(3765)] = 131205, + [SMALL_STATE(3766)] = 131249, + [SMALL_STATE(3767)] = 131339, + [SMALL_STATE(3768)] = 131429, + [SMALL_STATE(3769)] = 131499, + [SMALL_STATE(3770)] = 131589, + [SMALL_STATE(3771)] = 131643, + [SMALL_STATE(3772)] = 131715, + [SMALL_STATE(3773)] = 131791, + [SMALL_STATE(3774)] = 131835, + [SMALL_STATE(3775)] = 131913, + [SMALL_STATE(3776)] = 132003, + [SMALL_STATE(3777)] = 132083, + [SMALL_STATE(3778)] = 132165, + [SMALL_STATE(3779)] = 132255, + [SMALL_STATE(3780)] = 132339, + [SMALL_STATE(3781)] = 132395, + [SMALL_STATE(3782)] = 132455, + [SMALL_STATE(3783)] = 132539, + [SMALL_STATE(3784)] = 132585, + [SMALL_STATE(3785)] = 132675, + [SMALL_STATE(3786)] = 132763, + [SMALL_STATE(3787)] = 132853, + [SMALL_STATE(3788)] = 132943, + [SMALL_STATE(3789)] = 133033, + [SMALL_STATE(3790)] = 133123, + [SMALL_STATE(3791)] = 133213, + [SMALL_STATE(3792)] = 133301, + [SMALL_STATE(3793)] = 133353, + [SMALL_STATE(3794)] = 133397, + [SMALL_STATE(3795)] = 133485, + [SMALL_STATE(3796)] = 133575, + [SMALL_STATE(3797)] = 133655, + [SMALL_STATE(3798)] = 133741, + [SMALL_STATE(3799)] = 133831, + [SMALL_STATE(3800)] = 133921, + [SMALL_STATE(3801)] = 134011, + [SMALL_STATE(3802)] = 134101, + [SMALL_STATE(3803)] = 134145, + [SMALL_STATE(3804)] = 134235, + [SMALL_STATE(3805)] = 134307, + [SMALL_STATE(3806)] = 134363, + [SMALL_STATE(3807)] = 134417, + [SMALL_STATE(3808)] = 134507, + [SMALL_STATE(3809)] = 134565, + [SMALL_STATE(3810)] = 134655, + [SMALL_STATE(3811)] = 134745, + [SMALL_STATE(3812)] = 134835, + [SMALL_STATE(3813)] = 134907, + [SMALL_STATE(3814)] = 134997, + [SMALL_STATE(3815)] = 135084, + [SMALL_STATE(3816)] = 135171, + [SMALL_STATE(3817)] = 135230, + [SMALL_STATE(3818)] = 135273, + [SMALL_STATE(3819)] = 135360, + [SMALL_STATE(3820)] = 135447, + [SMALL_STATE(3821)] = 135490, + [SMALL_STATE(3822)] = 135577, + [SMALL_STATE(3823)] = 135662, + [SMALL_STATE(3824)] = 135733, + [SMALL_STATE(3825)] = 135816, + [SMALL_STATE(3826)] = 135887, + [SMALL_STATE(3827)] = 135974, + [SMALL_STATE(3828)] = 136045, + [SMALL_STATE(3829)] = 136116, + [SMALL_STATE(3830)] = 136203, + [SMALL_STATE(3831)] = 136246, + [SMALL_STATE(3832)] = 136333, + [SMALL_STATE(3833)] = 136420, + [SMALL_STATE(3834)] = 136463, + [SMALL_STATE(3835)] = 136510, + [SMALL_STATE(3836)] = 136597, + [SMALL_STATE(3837)] = 136684, + [SMALL_STATE(3838)] = 136771, + [SMALL_STATE(3839)] = 136858, + [SMALL_STATE(3840)] = 136945, + [SMALL_STATE(3841)] = 137032, + [SMALL_STATE(3842)] = 137077, + [SMALL_STATE(3843)] = 137164, + [SMALL_STATE(3844)] = 137219, + [SMALL_STATE(3845)] = 137306, + [SMALL_STATE(3846)] = 137393, + [SMALL_STATE(3847)] = 137480, + [SMALL_STATE(3848)] = 137567, + [SMALL_STATE(3849)] = 137638, + [SMALL_STATE(3850)] = 137725, + [SMALL_STATE(3851)] = 137768, + [SMALL_STATE(3852)] = 137811, + [SMALL_STATE(3853)] = 137854, + [SMALL_STATE(3854)] = 137941, + [SMALL_STATE(3855)] = 138028, + [SMALL_STATE(3856)] = 138115, + [SMALL_STATE(3857)] = 138202, + [SMALL_STATE(3858)] = 138289, + [SMALL_STATE(3859)] = 138376, + [SMALL_STATE(3860)] = 138463, + [SMALL_STATE(3861)] = 138550, + [SMALL_STATE(3862)] = 138593, + [SMALL_STATE(3863)] = 138672, + [SMALL_STATE(3864)] = 138759, + [SMALL_STATE(3865)] = 138846, + [SMALL_STATE(3866)] = 138901, + [SMALL_STATE(3867)] = 138988, + [SMALL_STATE(3868)] = 139075, + [SMALL_STATE(3869)] = 139162, + [SMALL_STATE(3870)] = 139239, + [SMALL_STATE(3871)] = 139326, + [SMALL_STATE(3872)] = 139369, + [SMALL_STATE(3873)] = 139456, + [SMALL_STATE(3874)] = 139543, + [SMALL_STATE(3875)] = 139630, + [SMALL_STATE(3876)] = 139705, + [SMALL_STATE(3877)] = 139792, + [SMALL_STATE(3878)] = 139879, + [SMALL_STATE(3879)] = 139950, + [SMALL_STATE(3880)] = 140037, + [SMALL_STATE(3881)] = 140124, + [SMALL_STATE(3882)] = 140167, + [SMALL_STATE(3883)] = 140236, + [SMALL_STATE(3884)] = 140279, + [SMALL_STATE(3885)] = 140366, + [SMALL_STATE(3886)] = 140453, + [SMALL_STATE(3887)] = 140518, + [SMALL_STATE(3888)] = 140605, + [SMALL_STATE(3889)] = 140692, + [SMALL_STATE(3890)] = 140779, + [SMALL_STATE(3891)] = 140840, + [SMALL_STATE(3892)] = 140903, + [SMALL_STATE(3893)] = 140990, + [SMALL_STATE(3894)] = 141033, + [SMALL_STATE(3895)] = 141120, + [SMALL_STATE(3896)] = 141207, + [SMALL_STATE(3897)] = 141290, + [SMALL_STATE(3898)] = 141377, + [SMALL_STATE(3899)] = 141464, + [SMALL_STATE(3900)] = 141551, + [SMALL_STATE(3901)] = 141638, + [SMALL_STATE(3902)] = 141681, + [SMALL_STATE(3903)] = 141730, + [SMALL_STATE(3904)] = 141775, + [SMALL_STATE(3905)] = 141862, + [SMALL_STATE(3906)] = 141945, + [SMALL_STATE(3907)] = 142026, + [SMALL_STATE(3908)] = 142113, + [SMALL_STATE(3909)] = 142156, + [SMALL_STATE(3910)] = 142243, + [SMALL_STATE(3911)] = 142286, + [SMALL_STATE(3912)] = 142337, + [SMALL_STATE(3913)] = 142424, + [SMALL_STATE(3914)] = 142511, + [SMALL_STATE(3915)] = 142560, + [SMALL_STATE(3916)] = 142647, + [SMALL_STATE(3917)] = 142734, + [SMALL_STATE(3918)] = 142821, + [SMALL_STATE(3919)] = 142864, + [SMALL_STATE(3920)] = 142951, + [SMALL_STATE(3921)] = 143038, + [SMALL_STATE(3922)] = 143109, + [SMALL_STATE(3923)] = 143196, + [SMALL_STATE(3924)] = 143283, + [SMALL_STATE(3925)] = 143370, + [SMALL_STATE(3926)] = 143457, + [SMALL_STATE(3927)] = 143508, + [SMALL_STATE(3928)] = 143595, + [SMALL_STATE(3929)] = 143666, + [SMALL_STATE(3930)] = 143753, + [SMALL_STATE(3931)] = 143840, + [SMALL_STATE(3932)] = 143911, + [SMALL_STATE(3933)] = 143998, + [SMALL_STATE(3934)] = 144085, + [SMALL_STATE(3935)] = 144156, + [SMALL_STATE(3936)] = 144243, + [SMALL_STATE(3937)] = 144330, + [SMALL_STATE(3938)] = 144417, + [SMALL_STATE(3939)] = 144504, + [SMALL_STATE(3940)] = 144591, + [SMALL_STATE(3941)] = 144678, + [SMALL_STATE(3942)] = 144765, + [SMALL_STATE(3943)] = 144852, + [SMALL_STATE(3944)] = 144939, + [SMALL_STATE(3945)] = 145026, + [SMALL_STATE(3946)] = 145069, + [SMALL_STATE(3947)] = 145148, + [SMALL_STATE(3948)] = 145235, + [SMALL_STATE(3949)] = 145322, + [SMALL_STATE(3950)] = 145393, + [SMALL_STATE(3951)] = 145480, + [SMALL_STATE(3952)] = 145567, + [SMALL_STATE(3953)] = 145654, + [SMALL_STATE(3954)] = 145741, + [SMALL_STATE(3955)] = 145828, + [SMALL_STATE(3956)] = 145881, + [SMALL_STATE(3957)] = 145968, + [SMALL_STATE(3958)] = 146055, + [SMALL_STATE(3959)] = 146142, + [SMALL_STATE(3960)] = 146229, + [SMALL_STATE(3961)] = 146276, + [SMALL_STATE(3962)] = 146363, + [SMALL_STATE(3963)] = 146450, + [SMALL_STATE(3964)] = 146537, + [SMALL_STATE(3965)] = 146592, + [SMALL_STATE(3966)] = 146645, + [SMALL_STATE(3967)] = 146690, + [SMALL_STATE(3968)] = 146777, + [SMALL_STATE(3969)] = 146864, + [SMALL_STATE(3970)] = 146947, + [SMALL_STATE(3971)] = 147034, + [SMALL_STATE(3972)] = 147099, + [SMALL_STATE(3973)] = 147186, + [SMALL_STATE(3974)] = 147273, + [SMALL_STATE(3975)] = 147360, + [SMALL_STATE(3976)] = 147403, + [SMALL_STATE(3977)] = 147446, + [SMALL_STATE(3978)] = 147533, + [SMALL_STATE(3979)] = 147620, + [SMALL_STATE(3980)] = 147707, + [SMALL_STATE(3981)] = 147794, + [SMALL_STATE(3982)] = 147837, + [SMALL_STATE(3983)] = 147924, + [SMALL_STATE(3984)] = 147967, + [SMALL_STATE(3985)] = 148054, + [SMALL_STATE(3986)] = 148141, + [SMALL_STATE(3987)] = 148228, + [SMALL_STATE(3988)] = 148271, + [SMALL_STATE(3989)] = 148358, + [SMALL_STATE(3990)] = 148445, + [SMALL_STATE(3991)] = 148487, + [SMALL_STATE(3992)] = 148529, + [SMALL_STATE(3993)] = 148571, + [SMALL_STATE(3994)] = 148613, + [SMALL_STATE(3995)] = 148655, + [SMALL_STATE(3996)] = 148697, + [SMALL_STATE(3997)] = 148739, + [SMALL_STATE(3998)] = 148781, + [SMALL_STATE(3999)] = 148823, + [SMALL_STATE(4000)] = 148865, + [SMALL_STATE(4001)] = 148907, + [SMALL_STATE(4002)] = 148949, + [SMALL_STATE(4003)] = 148991, + [SMALL_STATE(4004)] = 149033, + [SMALL_STATE(4005)] = 149075, + [SMALL_STATE(4006)] = 149117, + [SMALL_STATE(4007)] = 149169, + [SMALL_STATE(4008)] = 149211, + [SMALL_STATE(4009)] = 149263, + [SMALL_STATE(4010)] = 149305, + [SMALL_STATE(4011)] = 149347, + [SMALL_STATE(4012)] = 149389, + [SMALL_STATE(4013)] = 149431, + [SMALL_STATE(4014)] = 149473, + [SMALL_STATE(4015)] = 149515, + [SMALL_STATE(4016)] = 149557, + [SMALL_STATE(4017)] = 149599, + [SMALL_STATE(4018)] = 149641, + [SMALL_STATE(4019)] = 149683, + [SMALL_STATE(4020)] = 149725, + [SMALL_STATE(4021)] = 149767, + [SMALL_STATE(4022)] = 149809, + [SMALL_STATE(4023)] = 149879, + [SMALL_STATE(4024)] = 149921, + [SMALL_STATE(4025)] = 149963, + [SMALL_STATE(4026)] = 150005, + [SMALL_STATE(4027)] = 150047, + [SMALL_STATE(4028)] = 150089, + [SMALL_STATE(4029)] = 150131, + [SMALL_STATE(4030)] = 150173, + [SMALL_STATE(4031)] = 150243, + [SMALL_STATE(4032)] = 150285, + [SMALL_STATE(4033)] = 150327, + [SMALL_STATE(4034)] = 150369, + [SMALL_STATE(4035)] = 150411, + [SMALL_STATE(4036)] = 150453, + [SMALL_STATE(4037)] = 150495, + [SMALL_STATE(4038)] = 150537, + [SMALL_STATE(4039)] = 150579, + [SMALL_STATE(4040)] = 150621, + [SMALL_STATE(4041)] = 150663, + [SMALL_STATE(4042)] = 150705, + [SMALL_STATE(4043)] = 150747, + [SMALL_STATE(4044)] = 150789, + [SMALL_STATE(4045)] = 150831, + [SMALL_STATE(4046)] = 150873, + [SMALL_STATE(4047)] = 150915, + [SMALL_STATE(4048)] = 150999, + [SMALL_STATE(4049)] = 151041, + [SMALL_STATE(4050)] = 151083, + [SMALL_STATE(4051)] = 151125, + [SMALL_STATE(4052)] = 151167, + [SMALL_STATE(4053)] = 151209, + [SMALL_STATE(4054)] = 151251, + [SMALL_STATE(4055)] = 151293, + [SMALL_STATE(4056)] = 151335, + [SMALL_STATE(4057)] = 151377, + [SMALL_STATE(4058)] = 151419, + [SMALL_STATE(4059)] = 151461, + [SMALL_STATE(4060)] = 151503, + [SMALL_STATE(4061)] = 151545, + [SMALL_STATE(4062)] = 151587, + [SMALL_STATE(4063)] = 151652, + [SMALL_STATE(4064)] = 151695, + [SMALL_STATE(4065)] = 151744, + [SMALL_STATE(4066)] = 151811, + [SMALL_STATE(4067)] = 151874, + [SMALL_STATE(4068)] = 151939, + [SMALL_STATE(4069)] = 152004, + [SMALL_STATE(4070)] = 152055, + [SMALL_STATE(4071)] = 152108, + [SMALL_STATE(4072)] = 152173, + [SMALL_STATE(4073)] = 152226, + [SMALL_STATE(4074)] = 152293, + [SMALL_STATE(4075)] = 152356, + [SMALL_STATE(4076)] = 152407, + [SMALL_STATE(4077)] = 152487, + [SMALL_STATE(4078)] = 152527, + [SMALL_STATE(4079)] = 152607, + [SMALL_STATE(4080)] = 152673, + [SMALL_STATE(4081)] = 152753, + [SMALL_STATE(4082)] = 152817, + [SMALL_STATE(4083)] = 152881, + [SMALL_STATE(4084)] = 152961, + [SMALL_STATE(4085)] = 153041, + [SMALL_STATE(4086)] = 153121, + [SMALL_STATE(4087)] = 153177, + [SMALL_STATE(4088)] = 153257, + [SMALL_STATE(4089)] = 153297, + [SMALL_STATE(4090)] = 153337, + [SMALL_STATE(4091)] = 153417, + [SMALL_STATE(4092)] = 153485, + [SMALL_STATE(4093)] = 153553, + [SMALL_STATE(4094)] = 153633, + [SMALL_STATE(4095)] = 153677, + [SMALL_STATE(4096)] = 153745, + [SMALL_STATE(4097)] = 153825, + [SMALL_STATE(4098)] = 153905, + [SMALL_STATE(4099)] = 153945, + [SMALL_STATE(4100)] = 154025, + [SMALL_STATE(4101)] = 154065, + [SMALL_STATE(4102)] = 154145, + [SMALL_STATE(4103)] = 154225, + [SMALL_STATE(4104)] = 154305, + [SMALL_STATE(4105)] = 154385, + [SMALL_STATE(4106)] = 154425, + [SMALL_STATE(4107)] = 154491, + [SMALL_STATE(4108)] = 154571, + [SMALL_STATE(4109)] = 154639, + [SMALL_STATE(4110)] = 154719, + [SMALL_STATE(4111)] = 154759, + [SMALL_STATE(4112)] = 154814, + [SMALL_STATE(4113)] = 154877, + [SMALL_STATE(4114)] = 154944, + [SMALL_STATE(4115)] = 154985, + [SMALL_STATE(4116)] = 155032, + [SMALL_STATE(4117)] = 155095, + [SMALL_STATE(4118)] = 155142, + [SMALL_STATE(4119)] = 155207, + [SMALL_STATE(4120)] = 155246, + [SMALL_STATE(4121)] = 155285, + [SMALL_STATE(4122)] = 155350, + [SMALL_STATE(4123)] = 155417, + [SMALL_STATE(4124)] = 155456, + [SMALL_STATE(4125)] = 155499, + [SMALL_STATE(4126)] = 155542, + [SMALL_STATE(4127)] = 155616, + [SMALL_STATE(4128)] = 155690, + [SMALL_STATE(4129)] = 155764, + [SMALL_STATE(4130)] = 155838, + [SMALL_STATE(4131)] = 155912, + [SMALL_STATE(4132)] = 155986, + [SMALL_STATE(4133)] = 156060, + [SMALL_STATE(4134)] = 156134, + [SMALL_STATE(4135)] = 156208, + [SMALL_STATE(4136)] = 156282, + [SMALL_STATE(4137)] = 156336, + [SMALL_STATE(4138)] = 156410, + [SMALL_STATE(4139)] = 156464, + [SMALL_STATE(4140)] = 156528, + [SMALL_STATE(4141)] = 156602, + [SMALL_STATE(4142)] = 156660, + [SMALL_STATE(4143)] = 156734, + [SMALL_STATE(4144)] = 156808, + [SMALL_STATE(4145)] = 156882, + [SMALL_STATE(4146)] = 156956, + [SMALL_STATE(4147)] = 157030, + [SMALL_STATE(4148)] = 157104, + [SMALL_STATE(4149)] = 157178, + [SMALL_STATE(4150)] = 157238, + [SMALL_STATE(4151)] = 157312, + [SMALL_STATE(4152)] = 157386, + [SMALL_STATE(4153)] = 157460, + [SMALL_STATE(4154)] = 157534, + [SMALL_STATE(4155)] = 157608, + [SMALL_STATE(4156)] = 157668, + [SMALL_STATE(4157)] = 157742, + [SMALL_STATE(4158)] = 157816, + [SMALL_STATE(4159)] = 157890, + [SMALL_STATE(4160)] = 157948, + [SMALL_STATE(4161)] = 158022, + [SMALL_STATE(4162)] = 158082, + [SMALL_STATE(4163)] = 158156, + [SMALL_STATE(4164)] = 158230, + [SMALL_STATE(4165)] = 158304, + [SMALL_STATE(4166)] = 158362, + [SMALL_STATE(4167)] = 158436, + [SMALL_STATE(4168)] = 158510, + [SMALL_STATE(4169)] = 158584, + [SMALL_STATE(4170)] = 158624, + [SMALL_STATE(4171)] = 158698, + [SMALL_STATE(4172)] = 158758, + [SMALL_STATE(4173)] = 158816, + [SMALL_STATE(4174)] = 158890, + [SMALL_STATE(4175)] = 158964, + [SMALL_STATE(4176)] = 159010, + [SMALL_STATE(4177)] = 159084, + [SMALL_STATE(4178)] = 159138, + [SMALL_STATE(4179)] = 159212, + [SMALL_STATE(4180)] = 159276, + [SMALL_STATE(4181)] = 159350, + [SMALL_STATE(4182)] = 159424, + [SMALL_STATE(4183)] = 159498, + [SMALL_STATE(4184)] = 159555, + [SMALL_STATE(4185)] = 159614, + [SMALL_STATE(4186)] = 159671, + [SMALL_STATE(4187)] = 159734, + [SMALL_STATE(4188)] = 159791, + [SMALL_STATE(4189)] = 159842, + [SMALL_STATE(4190)] = 159901, + [SMALL_STATE(4191)] = 159940, + [SMALL_STATE(4192)] = 160003, + [SMALL_STATE(4193)] = 160040, + [SMALL_STATE(4194)] = 160099, + [SMALL_STATE(4195)] = 160148, + [SMALL_STATE(4196)] = 160189, + [SMALL_STATE(4197)] = 160252, + [SMALL_STATE(4198)] = 160313, + [SMALL_STATE(4199)] = 160376, + [SMALL_STATE(4200)] = 160435, + [SMALL_STATE(4201)] = 160496, + [SMALL_STATE(4202)] = 160557, + [SMALL_STATE(4203)] = 160618, + [SMALL_STATE(4204)] = 160681, + [SMALL_STATE(4205)] = 160740, + [SMALL_STATE(4206)] = 160803, + [SMALL_STATE(4207)] = 160862, + [SMALL_STATE(4208)] = 160919, + [SMALL_STATE(4209)] = 160978, + [SMALL_STATE(4210)] = 161041, + [SMALL_STATE(4211)] = 161100, + [SMALL_STATE(4212)] = 161163, + [SMALL_STATE(4213)] = 161229, + [SMALL_STATE(4214)] = 161287, + [SMALL_STATE(4215)] = 161323, + [SMALL_STATE(4216)] = 161359, + [SMALL_STATE(4217)] = 161415, + [SMALL_STATE(4218)] = 161473, + [SMALL_STATE(4219)] = 161529, + [SMALL_STATE(4220)] = 161585, + [SMALL_STATE(4221)] = 161641, + [SMALL_STATE(4222)] = 161677, + [SMALL_STATE(4223)] = 161739, + [SMALL_STATE(4224)] = 161805, + [SMALL_STATE(4225)] = 161855, + [SMALL_STATE(4226)] = 161915, + [SMALL_STATE(4227)] = 161977, + [SMALL_STATE(4228)] = 162043, + [SMALL_STATE(4229)] = 162109, + [SMALL_STATE(4230)] = 162169, + [SMALL_STATE(4231)] = 162205, + [SMALL_STATE(4232)] = 162271, + [SMALL_STATE(4233)] = 162337, + [SMALL_STATE(4234)] = 162403, + [SMALL_STATE(4235)] = 162443, + [SMALL_STATE(4236)] = 162509, + [SMALL_STATE(4237)] = 162575, + [SMALL_STATE(4238)] = 162641, + [SMALL_STATE(4239)] = 162707, + [SMALL_STATE(4240)] = 162773, + [SMALL_STATE(4241)] = 162833, + [SMALL_STATE(4242)] = 162869, + [SMALL_STATE(4243)] = 162935, + [SMALL_STATE(4244)] = 162993, + [SMALL_STATE(4245)] = 163053, + [SMALL_STATE(4246)] = 163119, + [SMALL_STATE(4247)] = 163185, + [SMALL_STATE(4248)] = 163251, + [SMALL_STATE(4249)] = 163317, + [SMALL_STATE(4250)] = 163383, + [SMALL_STATE(4251)] = 163419, + [SMALL_STATE(4252)] = 163477, + [SMALL_STATE(4253)] = 163543, + [SMALL_STATE(4254)] = 163609, + [SMALL_STATE(4255)] = 163664, + [SMALL_STATE(4256)] = 163727, + [SMALL_STATE(4257)] = 163790, + [SMALL_STATE(4258)] = 163845, + [SMALL_STATE(4259)] = 163900, + [SMALL_STATE(4260)] = 163963, + [SMALL_STATE(4261)] = 164004, + [SMALL_STATE(4262)] = 164045, + [SMALL_STATE(4263)] = 164100, + [SMALL_STATE(4264)] = 164155, + [SMALL_STATE(4265)] = 164194, + [SMALL_STATE(4266)] = 164249, + [SMALL_STATE(4267)] = 164310, + [SMALL_STATE(4268)] = 164373, + [SMALL_STATE(4269)] = 164436, + [SMALL_STATE(4270)] = 164471, + [SMALL_STATE(4271)] = 164534, + [SMALL_STATE(4272)] = 164597, + [SMALL_STATE(4273)] = 164660, + [SMALL_STATE(4274)] = 164715, + [SMALL_STATE(4275)] = 164752, + [SMALL_STATE(4276)] = 164815, + [SMALL_STATE(4277)] = 164876, + [SMALL_STATE(4278)] = 164939, + [SMALL_STATE(4279)] = 164994, + [SMALL_STATE(4280)] = 165037, + [SMALL_STATE(4281)] = 165092, + [SMALL_STATE(4282)] = 165133, + [SMALL_STATE(4283)] = 165168, + [SMALL_STATE(4284)] = 165209, + [SMALL_STATE(4285)] = 165272, + [SMALL_STATE(4286)] = 165335, + [SMALL_STATE(4287)] = 165376, + [SMALL_STATE(4288)] = 165439, + [SMALL_STATE(4289)] = 165502, + [SMALL_STATE(4290)] = 165557, + [SMALL_STATE(4291)] = 165600, + [SMALL_STATE(4292)] = 165663, + [SMALL_STATE(4293)] = 165698, + [SMALL_STATE(4294)] = 165753, + [SMALL_STATE(4295)] = 165788, + [SMALL_STATE(4296)] = 165823, + [SMALL_STATE(4297)] = 165886, + [SMALL_STATE(4298)] = 165949, + [SMALL_STATE(4299)] = 166004, + [SMALL_STATE(4300)] = 166067, + [SMALL_STATE(4301)] = 166102, + [SMALL_STATE(4302)] = 166165, + [SMALL_STATE(4303)] = 166228, + [SMALL_STATE(4304)] = 166291, + [SMALL_STATE(4305)] = 166346, + [SMALL_STATE(4306)] = 166401, + [SMALL_STATE(4307)] = 166464, + [SMALL_STATE(4308)] = 166527, + [SMALL_STATE(4309)] = 166590, + [SMALL_STATE(4310)] = 166625, + [SMALL_STATE(4311)] = 166688, + [SMALL_STATE(4312)] = 166742, + [SMALL_STATE(4313)] = 166788, + [SMALL_STATE(4314)] = 166824, + [SMALL_STATE(4315)] = 166878, + [SMALL_STATE(4316)] = 166932, + [SMALL_STATE(4317)] = 166972, + [SMALL_STATE(4318)] = 167026, + [SMALL_STATE(4319)] = 167080, + [SMALL_STATE(4320)] = 167134, + [SMALL_STATE(4321)] = 167188, + [SMALL_STATE(4322)] = 167234, + [SMALL_STATE(4323)] = 167288, + [SMALL_STATE(4324)] = 167342, + [SMALL_STATE(4325)] = 167396, + [SMALL_STATE(4326)] = 167442, + [SMALL_STATE(4327)] = 167488, + [SMALL_STATE(4328)] = 167542, + [SMALL_STATE(4329)] = 167598, + [SMALL_STATE(4330)] = 167644, + [SMALL_STATE(4331)] = 167698, + [SMALL_STATE(4332)] = 167754, + [SMALL_STATE(4333)] = 167808, + [SMALL_STATE(4334)] = 167864, + [SMALL_STATE(4335)] = 167920, + [SMALL_STATE(4336)] = 167976, + [SMALL_STATE(4337)] = 168022, + [SMALL_STATE(4338)] = 168076, + [SMALL_STATE(4339)] = 168122, + [SMALL_STATE(4340)] = 168178, + [SMALL_STATE(4341)] = 168218, + [SMALL_STATE(4342)] = 168272, + [SMALL_STATE(4343)] = 168326, + [SMALL_STATE(4344)] = 168372, + [SMALL_STATE(4345)] = 168428, + [SMALL_STATE(4346)] = 168482, + [SMALL_STATE(4347)] = 168536, + [SMALL_STATE(4348)] = 168590, + [SMALL_STATE(4349)] = 168644, + [SMALL_STATE(4350)] = 168690, + [SMALL_STATE(4351)] = 168744, + [SMALL_STATE(4352)] = 168798, + [SMALL_STATE(4353)] = 168852, + [SMALL_STATE(4354)] = 168908, + [SMALL_STATE(4355)] = 168962, + [SMALL_STATE(4356)] = 168995, + [SMALL_STATE(4357)] = 169028, + [SMALL_STATE(4358)] = 169083, + [SMALL_STATE(4359)] = 169120, + [SMALL_STATE(4360)] = 169161, + [SMALL_STATE(4361)] = 169216, + [SMALL_STATE(4362)] = 169255, + [SMALL_STATE(4363)] = 169296, + [SMALL_STATE(4364)] = 169329, + [SMALL_STATE(4365)] = 169364, + [SMALL_STATE(4366)] = 169397, + [SMALL_STATE(4367)] = 169436, + [SMALL_STATE(4368)] = 169491, + [SMALL_STATE(4369)] = 169524, + [SMALL_STATE(4370)] = 169557, + [SMALL_STATE(4371)] = 169592, + [SMALL_STATE(4372)] = 169627, + [SMALL_STATE(4373)] = 169660, + [SMALL_STATE(4374)] = 169715, + [SMALL_STATE(4375)] = 169768, + [SMALL_STATE(4376)] = 169821, + [SMALL_STATE(4377)] = 169874, + [SMALL_STATE(4378)] = 169907, + [SMALL_STATE(4379)] = 169940, + [SMALL_STATE(4380)] = 169993, + [SMALL_STATE(4381)] = 170025, + [SMALL_STATE(4382)] = 170077, + [SMALL_STATE(4383)] = 170129, + [SMALL_STATE(4384)] = 170181, + [SMALL_STATE(4385)] = 170215, + [SMALL_STATE(4386)] = 170267, + [SMALL_STATE(4387)] = 170305, + [SMALL_STATE(4388)] = 170337, + [SMALL_STATE(4389)] = 170369, + [SMALL_STATE(4390)] = 170401, + [SMALL_STATE(4391)] = 170433, + [SMALL_STATE(4392)] = 170465, + [SMALL_STATE(4393)] = 170517, + [SMALL_STATE(4394)] = 170553, + [SMALL_STATE(4395)] = 170605, + [SMALL_STATE(4396)] = 170657, + [SMALL_STATE(4397)] = 170695, + [SMALL_STATE(4398)] = 170727, + [SMALL_STATE(4399)] = 170759, + [SMALL_STATE(4400)] = 170811, + [SMALL_STATE(4401)] = 170843, + [SMALL_STATE(4402)] = 170875, + [SMALL_STATE(4403)] = 170907, + [SMALL_STATE(4404)] = 170939, + [SMALL_STATE(4405)] = 170996, + [SMALL_STATE(4406)] = 171035, + [SMALL_STATE(4407)] = 171072, + [SMALL_STATE(4408)] = 171129, + [SMALL_STATE(4409)] = 171188, + [SMALL_STATE(4410)] = 171225, + [SMALL_STATE(4411)] = 171264, + [SMALL_STATE(4412)] = 171301, + [SMALL_STATE(4413)] = 171340, + [SMALL_STATE(4414)] = 171407, + [SMALL_STATE(4415)] = 171464, + [SMALL_STATE(4416)] = 171523, + [SMALL_STATE(4417)] = 171556, + [SMALL_STATE(4418)] = 171589, + [SMALL_STATE(4419)] = 171626, + [SMALL_STATE(4420)] = 171683, + [SMALL_STATE(4421)] = 171722, + [SMALL_STATE(4422)] = 171779, + [SMALL_STATE(4423)] = 171838, + [SMALL_STATE(4424)] = 171895, + [SMALL_STATE(4425)] = 171932, + [SMALL_STATE(4426)] = 171968, + [SMALL_STATE(4427)] = 172004, + [SMALL_STATE(4428)] = 172038, + [SMALL_STATE(4429)] = 172074, + [SMALL_STATE(4430)] = 172109, + [SMALL_STATE(4431)] = 172140, + [SMALL_STATE(4432)] = 172173, + [SMALL_STATE(4433)] = 172216, + [SMALL_STATE(4434)] = 172249, + [SMALL_STATE(4435)] = 172292, + [SMALL_STATE(4436)] = 172347, + [SMALL_STATE(4437)] = 172378, + [SMALL_STATE(4438)] = 172409, + [SMALL_STATE(4439)] = 172442, + [SMALL_STATE(4440)] = 172475, + [SMALL_STATE(4441)] = 172518, + [SMALL_STATE(4442)] = 172561, + [SMALL_STATE(4443)] = 172604, + [SMALL_STATE(4444)] = 172639, + [SMALL_STATE(4445)] = 172672, + [SMALL_STATE(4446)] = 172727, + [SMALL_STATE(4447)] = 172760, + [SMALL_STATE(4448)] = 172795, + [SMALL_STATE(4449)] = 172823, + [SMALL_STATE(4450)] = 172871, + [SMALL_STATE(4451)] = 172919, + [SMALL_STATE(4452)] = 172967, + [SMALL_STATE(4453)] = 173015, + [SMALL_STATE(4454)] = 173049, + [SMALL_STATE(4455)] = 173085, + [SMALL_STATE(4456)] = 173125, + [SMALL_STATE(4457)] = 173173, + [SMALL_STATE(4458)] = 173221, + [SMALL_STATE(4459)] = 173263, + [SMALL_STATE(4460)] = 173307, + [SMALL_STATE(4461)] = 173355, + [SMALL_STATE(4462)] = 173401, + [SMALL_STATE(4463)] = 173447, + [SMALL_STATE(4464)] = 173495, + [SMALL_STATE(4465)] = 173543, + [SMALL_STATE(4466)] = 173571, + [SMALL_STATE(4467)] = 173603, + [SMALL_STATE(4468)] = 173651, + [SMALL_STATE(4469)] = 173679, + [SMALL_STATE(4470)] = 173707, + [SMALL_STATE(4471)] = 173755, + [SMALL_STATE(4472)] = 173803, + [SMALL_STATE(4473)] = 173851, + [SMALL_STATE(4474)] = 173891, + [SMALL_STATE(4475)] = 173939, + [SMALL_STATE(4476)] = 173987, + [SMALL_STATE(4477)] = 174035, + [SMALL_STATE(4478)] = 174083, + [SMALL_STATE(4479)] = 174131, + [SMALL_STATE(4480)] = 174159, + [SMALL_STATE(4481)] = 174207, + [SMALL_STATE(4482)] = 174235, + [SMALL_STATE(4483)] = 174263, + [SMALL_STATE(4484)] = 174311, + [SMALL_STATE(4485)] = 174339, + [SMALL_STATE(4486)] = 174369, + [SMALL_STATE(4487)] = 174397, + [SMALL_STATE(4488)] = 174445, + [SMALL_STATE(4489)] = 174473, + [SMALL_STATE(4490)] = 174501, + [SMALL_STATE(4491)] = 174529, + [SMALL_STATE(4492)] = 174557, + [SMALL_STATE(4493)] = 174605, + [SMALL_STATE(4494)] = 174653, + [SMALL_STATE(4495)] = 174701, + [SMALL_STATE(4496)] = 174741, + [SMALL_STATE(4497)] = 174769, + [SMALL_STATE(4498)] = 174797, + [SMALL_STATE(4499)] = 174825, + [SMALL_STATE(4500)] = 174853, + [SMALL_STATE(4501)] = 174881, + [SMALL_STATE(4502)] = 174909, + [SMALL_STATE(4503)] = 174937, + [SMALL_STATE(4504)] = 174965, + [SMALL_STATE(4505)] = 174993, + [SMALL_STATE(4506)] = 175021, + [SMALL_STATE(4507)] = 175061, + [SMALL_STATE(4508)] = 175089, + [SMALL_STATE(4509)] = 175117, + [SMALL_STATE(4510)] = 175157, + [SMALL_STATE(4511)] = 175197, + [SMALL_STATE(4512)] = 175237, + [SMALL_STATE(4513)] = 175277, + [SMALL_STATE(4514)] = 175317, + [SMALL_STATE(4515)] = 175345, + [SMALL_STATE(4516)] = 175385, + [SMALL_STATE(4517)] = 175413, + [SMALL_STATE(4518)] = 175453, + [SMALL_STATE(4519)] = 175493, + [SMALL_STATE(4520)] = 175533, + [SMALL_STATE(4521)] = 175573, + [SMALL_STATE(4522)] = 175613, + [SMALL_STATE(4523)] = 175641, + [SMALL_STATE(4524)] = 175669, + [SMALL_STATE(4525)] = 175709, + [SMALL_STATE(4526)] = 175737, + [SMALL_STATE(4527)] = 175785, + [SMALL_STATE(4528)] = 175833, + [SMALL_STATE(4529)] = 175861, + [SMALL_STATE(4530)] = 175903, + [SMALL_STATE(4531)] = 175931, + [SMALL_STATE(4532)] = 175959, + [SMALL_STATE(4533)] = 175987, + [SMALL_STATE(4534)] = 176015, + [SMALL_STATE(4535)] = 176043, + [SMALL_STATE(4536)] = 176071, + [SMALL_STATE(4537)] = 176099, + [SMALL_STATE(4538)] = 176127, + [SMALL_STATE(4539)] = 176175, + [SMALL_STATE(4540)] = 176223, + [SMALL_STATE(4541)] = 176251, + [SMALL_STATE(4542)] = 176291, + [SMALL_STATE(4543)] = 176319, + [SMALL_STATE(4544)] = 176347, + [SMALL_STATE(4545)] = 176375, + [SMALL_STATE(4546)] = 176403, + [SMALL_STATE(4547)] = 176431, + [SMALL_STATE(4548)] = 176459, + [SMALL_STATE(4549)] = 176487, + [SMALL_STATE(4550)] = 176515, + [SMALL_STATE(4551)] = 176543, + [SMALL_STATE(4552)] = 176571, + [SMALL_STATE(4553)] = 176599, + [SMALL_STATE(4554)] = 176627, + [SMALL_STATE(4555)] = 176655, + [SMALL_STATE(4556)] = 176683, + [SMALL_STATE(4557)] = 176711, + [SMALL_STATE(4558)] = 176759, + [SMALL_STATE(4559)] = 176787, + [SMALL_STATE(4560)] = 176821, + [SMALL_STATE(4561)] = 176855, + [SMALL_STATE(4562)] = 176895, + [SMALL_STATE(4563)] = 176923, + [SMALL_STATE(4564)] = 176951, + [SMALL_STATE(4565)] = 176979, + [SMALL_STATE(4566)] = 177007, + [SMALL_STATE(4567)] = 177035, + [SMALL_STATE(4568)] = 177063, + [SMALL_STATE(4569)] = 177091, + [SMALL_STATE(4570)] = 177119, + [SMALL_STATE(4571)] = 177147, + [SMALL_STATE(4572)] = 177195, + [SMALL_STATE(4573)] = 177223, + [SMALL_STATE(4574)] = 177251, + [SMALL_STATE(4575)] = 177291, + [SMALL_STATE(4576)] = 177319, + [SMALL_STATE(4577)] = 177347, + [SMALL_STATE(4578)] = 177375, + [SMALL_STATE(4579)] = 177415, + [SMALL_STATE(4580)] = 177443, + [SMALL_STATE(4581)] = 177471, + [SMALL_STATE(4582)] = 177499, + [SMALL_STATE(4583)] = 177539, + [SMALL_STATE(4584)] = 177587, + [SMALL_STATE(4585)] = 177635, + [SMALL_STATE(4586)] = 177683, + [SMALL_STATE(4587)] = 177715, + [SMALL_STATE(4588)] = 177763, + [SMALL_STATE(4589)] = 177813, + [SMALL_STATE(4590)] = 177861, + [SMALL_STATE(4591)] = 177893, + [SMALL_STATE(4592)] = 177933, + [SMALL_STATE(4593)] = 177981, + [SMALL_STATE(4594)] = 178021, + [SMALL_STATE(4595)] = 178061, + [SMALL_STATE(4596)] = 178101, + [SMALL_STATE(4597)] = 178141, + [SMALL_STATE(4598)] = 178181, + [SMALL_STATE(4599)] = 178229, + [SMALL_STATE(4600)] = 178269, + [SMALL_STATE(4601)] = 178317, + [SMALL_STATE(4602)] = 178365, + [SMALL_STATE(4603)] = 178413, + [SMALL_STATE(4604)] = 178453, + [SMALL_STATE(4605)] = 178493, + [SMALL_STATE(4606)] = 178533, + [SMALL_STATE(4607)] = 178573, + [SMALL_STATE(4608)] = 178613, + [SMALL_STATE(4609)] = 178653, + [SMALL_STATE(4610)] = 178693, + [SMALL_STATE(4611)] = 178750, + [SMALL_STATE(4612)] = 178807, + [SMALL_STATE(4613)] = 178852, + [SMALL_STATE(4614)] = 178909, + [SMALL_STATE(4615)] = 178954, + [SMALL_STATE(4616)] = 178999, + [SMALL_STATE(4617)] = 179030, + [SMALL_STATE(4618)] = 179087, + [SMALL_STATE(4619)] = 179144, + [SMALL_STATE(4620)] = 179177, + [SMALL_STATE(4621)] = 179204, + [SMALL_STATE(4622)] = 179239, + [SMALL_STATE(4623)] = 179296, + [SMALL_STATE(4624)] = 179353, + [SMALL_STATE(4625)] = 179390, + [SMALL_STATE(4626)] = 179417, + [SMALL_STATE(4627)] = 179474, + [SMALL_STATE(4628)] = 179523, + [SMALL_STATE(4629)] = 179582, + [SMALL_STATE(4630)] = 179639, + [SMALL_STATE(4631)] = 179696, + [SMALL_STATE(4632)] = 179735, + [SMALL_STATE(4633)] = 179776, + [SMALL_STATE(4634)] = 179833, + [SMALL_STATE(4635)] = 179876, + [SMALL_STATE(4636)] = 179921, + [SMALL_STATE(4637)] = 179978, + [SMALL_STATE(4638)] = 180035, + [SMALL_STATE(4639)] = 180062, + [SMALL_STATE(4640)] = 180119, + [SMALL_STATE(4641)] = 180148, + [SMALL_STATE(4642)] = 180175, + [SMALL_STATE(4643)] = 180220, + [SMALL_STATE(4644)] = 180277, + [SMALL_STATE(4645)] = 180334, + [SMALL_STATE(4646)] = 180391, + [SMALL_STATE(4647)] = 180448, + [SMALL_STATE(4648)] = 180505, + [SMALL_STATE(4649)] = 180562, + [SMALL_STATE(4650)] = 180589, + [SMALL_STATE(4651)] = 180634, + [SMALL_STATE(4652)] = 180679, + [SMALL_STATE(4653)] = 180736, + [SMALL_STATE(4654)] = 180793, + [SMALL_STATE(4655)] = 180850, + [SMALL_STATE(4656)] = 180907, + [SMALL_STATE(4657)] = 180934, + [SMALL_STATE(4658)] = 180991, + [SMALL_STATE(4659)] = 181022, + [SMALL_STATE(4660)] = 181079, + [SMALL_STATE(4661)] = 181124, + [SMALL_STATE(4662)] = 181181, + [SMALL_STATE(4663)] = 181238, + [SMALL_STATE(4664)] = 181295, + [SMALL_STATE(4665)] = 181352, + [SMALL_STATE(4666)] = 181409, + [SMALL_STATE(4667)] = 181466, + [SMALL_STATE(4668)] = 181523, + [SMALL_STATE(4669)] = 181580, + [SMALL_STATE(4670)] = 181637, + [SMALL_STATE(4671)] = 181694, + [SMALL_STATE(4672)] = 181751, + [SMALL_STATE(4673)] = 181778, + [SMALL_STATE(4674)] = 181835, + [SMALL_STATE(4675)] = 181862, + [SMALL_STATE(4676)] = 181921, + [SMALL_STATE(4677)] = 181978, + [SMALL_STATE(4678)] = 182035, + [SMALL_STATE(4679)] = 182092, + [SMALL_STATE(4680)] = 182151, + [SMALL_STATE(4681)] = 182208, + [SMALL_STATE(4682)] = 182265, + [SMALL_STATE(4683)] = 182314, + [SMALL_STATE(4684)] = 182341, + [SMALL_STATE(4685)] = 182398, + [SMALL_STATE(4686)] = 182455, + [SMALL_STATE(4687)] = 182512, + [SMALL_STATE(4688)] = 182569, + [SMALL_STATE(4689)] = 182614, + [SMALL_STATE(4690)] = 182671, + [SMALL_STATE(4691)] = 182728, + [SMALL_STATE(4692)] = 182785, + [SMALL_STATE(4693)] = 182842, + [SMALL_STATE(4694)] = 182887, + [SMALL_STATE(4695)] = 182944, + [SMALL_STATE(4696)] = 183001, + [SMALL_STATE(4697)] = 183042, + [SMALL_STATE(4698)] = 183099, + [SMALL_STATE(4699)] = 183156, + [SMALL_STATE(4700)] = 183213, + [SMALL_STATE(4701)] = 183270, + [SMALL_STATE(4702)] = 183297, + [SMALL_STATE(4703)] = 183337, + [SMALL_STATE(4704)] = 183388, + [SMALL_STATE(4705)] = 183439, + [SMALL_STATE(4706)] = 183490, + [SMALL_STATE(4707)] = 183541, + [SMALL_STATE(4708)] = 183592, + [SMALL_STATE(4709)] = 183643, + [SMALL_STATE(4710)] = 183694, + [SMALL_STATE(4711)] = 183745, + [SMALL_STATE(4712)] = 183796, + [SMALL_STATE(4713)] = 183847, + [SMALL_STATE(4714)] = 183898, + [SMALL_STATE(4715)] = 183949, + [SMALL_STATE(4716)] = 184000, + [SMALL_STATE(4717)] = 184051, + [SMALL_STATE(4718)] = 184102, + [SMALL_STATE(4719)] = 184153, + [SMALL_STATE(4720)] = 184204, + [SMALL_STATE(4721)] = 184245, + [SMALL_STATE(4722)] = 184296, + [SMALL_STATE(4723)] = 184347, + [SMALL_STATE(4724)] = 184398, + [SMALL_STATE(4725)] = 184449, + [SMALL_STATE(4726)] = 184500, + [SMALL_STATE(4727)] = 184539, + [SMALL_STATE(4728)] = 184590, + [SMALL_STATE(4729)] = 184641, + [SMALL_STATE(4730)] = 184682, + [SMALL_STATE(4731)] = 184733, + [SMALL_STATE(4732)] = 184774, + [SMALL_STATE(4733)] = 184825, + [SMALL_STATE(4734)] = 184876, + [SMALL_STATE(4735)] = 184927, + [SMALL_STATE(4736)] = 184978, + [SMALL_STATE(4737)] = 185029, + [SMALL_STATE(4738)] = 185080, + [SMALL_STATE(4739)] = 185131, + [SMALL_STATE(4740)] = 185182, + [SMALL_STATE(4741)] = 185233, + [SMALL_STATE(4742)] = 185284, + [SMALL_STATE(4743)] = 185335, + [SMALL_STATE(4744)] = 185386, + [SMALL_STATE(4745)] = 185437, + [SMALL_STATE(4746)] = 185488, + [SMALL_STATE(4747)] = 185539, + [SMALL_STATE(4748)] = 185590, + [SMALL_STATE(4749)] = 185641, + [SMALL_STATE(4750)] = 185692, + [SMALL_STATE(4751)] = 185743, + [SMALL_STATE(4752)] = 185794, + [SMALL_STATE(4753)] = 185823, + [SMALL_STATE(4754)] = 185874, + [SMALL_STATE(4755)] = 185925, + [SMALL_STATE(4756)] = 185966, + [SMALL_STATE(4757)] = 186017, + [SMALL_STATE(4758)] = 186055, + [SMALL_STATE(4759)] = 186103, + [SMALL_STATE(4760)] = 186149, + [SMALL_STATE(4761)] = 186197, + [SMALL_STATE(4762)] = 186245, + [SMALL_STATE(4763)] = 186291, + [SMALL_STATE(4764)] = 186337, + [SMALL_STATE(4765)] = 186383, + [SMALL_STATE(4766)] = 186429, + [SMALL_STATE(4767)] = 186475, + [SMALL_STATE(4768)] = 186521, + [SMALL_STATE(4769)] = 186559, + [SMALL_STATE(4770)] = 186605, + [SMALL_STATE(4771)] = 186653, + [SMALL_STATE(4772)] = 186691, + [SMALL_STATE(4773)] = 186737, + [SMALL_STATE(4774)] = 186783, + [SMALL_STATE(4775)] = 186835, + [SMALL_STATE(4776)] = 186881, + [SMALL_STATE(4777)] = 186927, + [SMALL_STATE(4778)] = 186973, + [SMALL_STATE(4779)] = 187025, + [SMALL_STATE(4780)] = 187071, + [SMALL_STATE(4781)] = 187109, + [SMALL_STATE(4782)] = 187161, + [SMALL_STATE(4783)] = 187207, + [SMALL_STATE(4784)] = 187253, + [SMALL_STATE(4785)] = 187301, + [SMALL_STATE(4786)] = 187347, + [SMALL_STATE(4787)] = 187393, + [SMALL_STATE(4788)] = 187439, + [SMALL_STATE(4789)] = 187487, + [SMALL_STATE(4790)] = 187535, + [SMALL_STATE(4791)] = 187581, + [SMALL_STATE(4792)] = 187626, + [SMALL_STATE(4793)] = 187671, + [SMALL_STATE(4794)] = 187716, + [SMALL_STATE(4795)] = 187761, + [SMALL_STATE(4796)] = 187806, + [SMALL_STATE(4797)] = 187851, + [SMALL_STATE(4798)] = 187896, + [SMALL_STATE(4799)] = 187941, + [SMALL_STATE(4800)] = 187986, + [SMALL_STATE(4801)] = 188031, + [SMALL_STATE(4802)] = 188076, + [SMALL_STATE(4803)] = 188121, + [SMALL_STATE(4804)] = 188166, + [SMALL_STATE(4805)] = 188211, + [SMALL_STATE(4806)] = 188256, + [SMALL_STATE(4807)] = 188301, + [SMALL_STATE(4808)] = 188346, + [SMALL_STATE(4809)] = 188391, + [SMALL_STATE(4810)] = 188436, + [SMALL_STATE(4811)] = 188481, + [SMALL_STATE(4812)] = 188526, + [SMALL_STATE(4813)] = 188563, + [SMALL_STATE(4814)] = 188608, + [SMALL_STATE(4815)] = 188653, + [SMALL_STATE(4816)] = 188698, + [SMALL_STATE(4817)] = 188743, + [SMALL_STATE(4818)] = 188788, + [SMALL_STATE(4819)] = 188833, + [SMALL_STATE(4820)] = 188878, + [SMALL_STATE(4821)] = 188923, + [SMALL_STATE(4822)] = 188968, + [SMALL_STATE(4823)] = 189015, + [SMALL_STATE(4824)] = 189060, + [SMALL_STATE(4825)] = 189105, + [SMALL_STATE(4826)] = 189150, + [SMALL_STATE(4827)] = 189195, + [SMALL_STATE(4828)] = 189240, + [SMALL_STATE(4829)] = 189285, + [SMALL_STATE(4830)] = 189330, + [SMALL_STATE(4831)] = 189375, + [SMALL_STATE(4832)] = 189420, + [SMALL_STATE(4833)] = 189465, + [SMALL_STATE(4834)] = 189510, + [SMALL_STATE(4835)] = 189555, + [SMALL_STATE(4836)] = 189600, + [SMALL_STATE(4837)] = 189645, + [SMALL_STATE(4838)] = 189690, + [SMALL_STATE(4839)] = 189735, + [SMALL_STATE(4840)] = 189780, + [SMALL_STATE(4841)] = 189825, + [SMALL_STATE(4842)] = 189870, + [SMALL_STATE(4843)] = 189915, + [SMALL_STATE(4844)] = 189960, + [SMALL_STATE(4845)] = 190005, + [SMALL_STATE(4846)] = 190050, + [SMALL_STATE(4847)] = 190095, + [SMALL_STATE(4848)] = 190140, + [SMALL_STATE(4849)] = 190185, + [SMALL_STATE(4850)] = 190230, + [SMALL_STATE(4851)] = 190275, + [SMALL_STATE(4852)] = 190320, + [SMALL_STATE(4853)] = 190365, + [SMALL_STATE(4854)] = 190410, + [SMALL_STATE(4855)] = 190455, + [SMALL_STATE(4856)] = 190500, + [SMALL_STATE(4857)] = 190545, + [SMALL_STATE(4858)] = 190590, + [SMALL_STATE(4859)] = 190635, + [SMALL_STATE(4860)] = 190680, + [SMALL_STATE(4861)] = 190725, + [SMALL_STATE(4862)] = 190770, + [SMALL_STATE(4863)] = 190815, + [SMALL_STATE(4864)] = 190860, + [SMALL_STATE(4865)] = 190905, + [SMALL_STATE(4866)] = 190950, + [SMALL_STATE(4867)] = 190995, + [SMALL_STATE(4868)] = 191040, + [SMALL_STATE(4869)] = 191085, + [SMALL_STATE(4870)] = 191130, + [SMALL_STATE(4871)] = 191175, + [SMALL_STATE(4872)] = 191220, + [SMALL_STATE(4873)] = 191265, + [SMALL_STATE(4874)] = 191310, + [SMALL_STATE(4875)] = 191355, + [SMALL_STATE(4876)] = 191400, + [SMALL_STATE(4877)] = 191445, + [SMALL_STATE(4878)] = 191490, + [SMALL_STATE(4879)] = 191535, + [SMALL_STATE(4880)] = 191580, + [SMALL_STATE(4881)] = 191625, + [SMALL_STATE(4882)] = 191670, + [SMALL_STATE(4883)] = 191715, + [SMALL_STATE(4884)] = 191760, + [SMALL_STATE(4885)] = 191805, + [SMALL_STATE(4886)] = 191850, + [SMALL_STATE(4887)] = 191895, + [SMALL_STATE(4888)] = 191940, + [SMALL_STATE(4889)] = 191985, + [SMALL_STATE(4890)] = 192011, + [SMALL_STATE(4891)] = 192049, + [SMALL_STATE(4892)] = 192095, + [SMALL_STATE(4893)] = 192135, + [SMALL_STATE(4894)] = 192173, + [SMALL_STATE(4895)] = 192219, + [SMALL_STATE(4896)] = 192257, + [SMALL_STATE(4897)] = 192297, + [SMALL_STATE(4898)] = 192323, + [SMALL_STATE(4899)] = 192365, + [SMALL_STATE(4900)] = 192405, + [SMALL_STATE(4901)] = 192447, + [SMALL_STATE(4902)] = 192485, + [SMALL_STATE(4903)] = 192523, + [SMALL_STATE(4904)] = 192549, + [SMALL_STATE(4905)] = 192595, + [SMALL_STATE(4906)] = 192633, + [SMALL_STATE(4907)] = 192679, + [SMALL_STATE(4908)] = 192717, + [SMALL_STATE(4909)] = 192757, + [SMALL_STATE(4910)] = 192795, + [SMALL_STATE(4911)] = 192835, + [SMALL_STATE(4912)] = 192881, + [SMALL_STATE(4913)] = 192919, + [SMALL_STATE(4914)] = 192965, + [SMALL_STATE(4915)] = 193003, + [SMALL_STATE(4916)] = 193041, + [SMALL_STATE(4917)] = 193079, + [SMALL_STATE(4918)] = 193121, + [SMALL_STATE(4919)] = 193161, + [SMALL_STATE(4920)] = 193201, + [SMALL_STATE(4921)] = 193239, + [SMALL_STATE(4922)] = 193267, + [SMALL_STATE(4923)] = 193313, + [SMALL_STATE(4924)] = 193359, + [SMALL_STATE(4925)] = 193405, + [SMALL_STATE(4926)] = 193431, + [SMALL_STATE(4927)] = 193469, + [SMALL_STATE(4928)] = 193515, + [SMALL_STATE(4929)] = 193555, + [SMALL_STATE(4930)] = 193593, + [SMALL_STATE(4931)] = 193639, + [SMALL_STATE(4932)] = 193675, + [SMALL_STATE(4933)] = 193713, + [SMALL_STATE(4934)] = 193759, + [SMALL_STATE(4935)] = 193801, + [SMALL_STATE(4936)] = 193841, + [SMALL_STATE(4937)] = 193867, + [SMALL_STATE(4938)] = 193893, + [SMALL_STATE(4939)] = 193933, + [SMALL_STATE(4940)] = 193979, + [SMALL_STATE(4941)] = 194005, + [SMALL_STATE(4942)] = 194033, + [SMALL_STATE(4943)] = 194071, + [SMALL_STATE(4944)] = 194113, + [SMALL_STATE(4945)] = 194155, + [SMALL_STATE(4946)] = 194193, + [SMALL_STATE(4947)] = 194226, + [SMALL_STATE(4948)] = 194259, + [SMALL_STATE(4949)] = 194292, + [SMALL_STATE(4950)] = 194329, + [SMALL_STATE(4951)] = 194362, + [SMALL_STATE(4952)] = 194395, + [SMALL_STATE(4953)] = 194428, + [SMALL_STATE(4954)] = 194465, + [SMALL_STATE(4955)] = 194490, + [SMALL_STATE(4956)] = 194523, + [SMALL_STATE(4957)] = 194556, + [SMALL_STATE(4958)] = 194593, + [SMALL_STATE(4959)] = 194626, + [SMALL_STATE(4960)] = 194659, + [SMALL_STATE(4961)] = 194698, + [SMALL_STATE(4962)] = 194735, + [SMALL_STATE(4963)] = 194776, + [SMALL_STATE(4964)] = 194801, + [SMALL_STATE(4965)] = 194834, + [SMALL_STATE(4966)] = 194867, + [SMALL_STATE(4967)] = 194900, + [SMALL_STATE(4968)] = 194937, + [SMALL_STATE(4969)] = 194970, + [SMALL_STATE(4970)] = 195003, + [SMALL_STATE(4971)] = 195040, + [SMALL_STATE(4972)] = 195081, + [SMALL_STATE(4973)] = 195118, + [SMALL_STATE(4974)] = 195159, + [SMALL_STATE(4975)] = 195198, + [SMALL_STATE(4976)] = 195237, + [SMALL_STATE(4977)] = 195260, + [SMALL_STATE(4978)] = 195285, + [SMALL_STATE(4979)] = 195318, + [SMALL_STATE(4980)] = 195357, + [SMALL_STATE(4981)] = 195394, + [SMALL_STATE(4982)] = 195431, + [SMALL_STATE(4983)] = 195468, + [SMALL_STATE(4984)] = 195493, + [SMALL_STATE(4985)] = 195534, + [SMALL_STATE(4986)] = 195559, + [SMALL_STATE(4987)] = 195598, + [SMALL_STATE(4988)] = 195635, + [SMALL_STATE(4989)] = 195668, + [SMALL_STATE(4990)] = 195705, + [SMALL_STATE(4991)] = 195738, + [SMALL_STATE(4992)] = 195763, + [SMALL_STATE(4993)] = 195804, + [SMALL_STATE(4994)] = 195829, + [SMALL_STATE(4995)] = 195866, + [SMALL_STATE(4996)] = 195899, + [SMALL_STATE(4997)] = 195932, + [SMALL_STATE(4998)] = 195957, + [SMALL_STATE(4999)] = 195990, + [SMALL_STATE(5000)] = 196023, + [SMALL_STATE(5001)] = 196060, + [SMALL_STATE(5002)] = 196094, + [SMALL_STATE(5003)] = 196116, + [SMALL_STATE(5004)] = 196136, + [SMALL_STATE(5005)] = 196156, + [SMALL_STATE(5006)] = 196192, + [SMALL_STATE(5007)] = 196228, + [SMALL_STATE(5008)] = 196256, + [SMALL_STATE(5009)] = 196284, + [SMALL_STATE(5010)] = 196304, + [SMALL_STATE(5011)] = 196324, + [SMALL_STATE(5012)] = 196344, + [SMALL_STATE(5013)] = 196364, + [SMALL_STATE(5014)] = 196384, + [SMALL_STATE(5015)] = 196418, + [SMALL_STATE(5016)] = 196438, + [SMALL_STATE(5017)] = 196472, + [SMALL_STATE(5018)] = 196492, + [SMALL_STATE(5019)] = 196526, + [SMALL_STATE(5020)] = 196546, + [SMALL_STATE(5021)] = 196566, + [SMALL_STATE(5022)] = 196586, + [SMALL_STATE(5023)] = 196610, + [SMALL_STATE(5024)] = 196630, + [SMALL_STATE(5025)] = 196666, + [SMALL_STATE(5026)] = 196702, + [SMALL_STATE(5027)] = 196722, + [SMALL_STATE(5028)] = 196754, + [SMALL_STATE(5029)] = 196788, + [SMALL_STATE(5030)] = 196816, + [SMALL_STATE(5031)] = 196840, + [SMALL_STATE(5032)] = 196876, + [SMALL_STATE(5033)] = 196896, + [SMALL_STATE(5034)] = 196918, + [SMALL_STATE(5035)] = 196954, + [SMALL_STATE(5036)] = 196976, + [SMALL_STATE(5037)] = 196996, + [SMALL_STATE(5038)] = 197020, + [SMALL_STATE(5039)] = 197040, + [SMALL_STATE(5040)] = 197064, + [SMALL_STATE(5041)] = 197088, + [SMALL_STATE(5042)] = 197124, + [SMALL_STATE(5043)] = 197144, + [SMALL_STATE(5044)] = 197168, + [SMALL_STATE(5045)] = 197204, + [SMALL_STATE(5046)] = 197224, + [SMALL_STATE(5047)] = 197258, + [SMALL_STATE(5048)] = 197278, + [SMALL_STATE(5049)] = 197314, + [SMALL_STATE(5050)] = 197334, + [SMALL_STATE(5051)] = 197354, + [SMALL_STATE(5052)] = 197390, + [SMALL_STATE(5053)] = 197410, + [SMALL_STATE(5054)] = 197444, + [SMALL_STATE(5055)] = 197480, + [SMALL_STATE(5056)] = 197504, + [SMALL_STATE(5057)] = 197540, + [SMALL_STATE(5058)] = 197560, + [SMALL_STATE(5059)] = 197584, + [SMALL_STATE(5060)] = 197604, + [SMALL_STATE(5061)] = 197624, + [SMALL_STATE(5062)] = 197660, + [SMALL_STATE(5063)] = 197684, + [SMALL_STATE(5064)] = 197720, + [SMALL_STATE(5065)] = 197756, + [SMALL_STATE(5066)] = 197792, + [SMALL_STATE(5067)] = 197812, + [SMALL_STATE(5068)] = 197832, + [SMALL_STATE(5069)] = 197856, + [SMALL_STATE(5070)] = 197892, + [SMALL_STATE(5071)] = 197928, + [SMALL_STATE(5072)] = 197948, + [SMALL_STATE(5073)] = 197968, + [SMALL_STATE(5074)] = 198004, + [SMALL_STATE(5075)] = 198024, + [SMALL_STATE(5076)] = 198044, + [SMALL_STATE(5077)] = 198080, + [SMALL_STATE(5078)] = 198116, + [SMALL_STATE(5079)] = 198140, + [SMALL_STATE(5080)] = 198168, + [SMALL_STATE(5081)] = 198188, + [SMALL_STATE(5082)] = 198222, + [SMALL_STATE(5083)] = 198250, + [SMALL_STATE(5084)] = 198284, + [SMALL_STATE(5085)] = 198304, + [SMALL_STATE(5086)] = 198328, + [SMALL_STATE(5087)] = 198351, + [SMALL_STATE(5088)] = 198370, + [SMALL_STATE(5089)] = 198397, + [SMALL_STATE(5090)] = 198416, + [SMALL_STATE(5091)] = 198435, + [SMALL_STATE(5092)] = 198454, + [SMALL_STATE(5093)] = 198477, + [SMALL_STATE(5094)] = 198496, + [SMALL_STATE(5095)] = 198519, + [SMALL_STATE(5096)] = 198546, + [SMALL_STATE(5097)] = 198565, + [SMALL_STATE(5098)] = 198582, + [SMALL_STATE(5099)] = 198605, + [SMALL_STATE(5100)] = 198628, + [SMALL_STATE(5101)] = 198647, + [SMALL_STATE(5102)] = 198678, + [SMALL_STATE(5103)] = 198705, + [SMALL_STATE(5104)] = 198724, + [SMALL_STATE(5105)] = 198747, + [SMALL_STATE(5106)] = 198766, + [SMALL_STATE(5107)] = 198789, + [SMALL_STATE(5108)] = 198806, + [SMALL_STATE(5109)] = 198833, + [SMALL_STATE(5110)] = 198860, + [SMALL_STATE(5111)] = 198877, + [SMALL_STATE(5112)] = 198896, + [SMALL_STATE(5113)] = 198923, + [SMALL_STATE(5114)] = 198942, + [SMALL_STATE(5115)] = 198961, + [SMALL_STATE(5116)] = 198988, + [SMALL_STATE(5117)] = 199007, + [SMALL_STATE(5118)] = 199030, + [SMALL_STATE(5119)] = 199057, + [SMALL_STATE(5120)] = 199088, + [SMALL_STATE(5121)] = 199111, + [SMALL_STATE(5122)] = 199140, + [SMALL_STATE(5123)] = 199163, + [SMALL_STATE(5124)] = 199186, + [SMALL_STATE(5125)] = 199203, + [SMALL_STATE(5126)] = 199220, + [SMALL_STATE(5127)] = 199243, + [SMALL_STATE(5128)] = 199266, + [SMALL_STATE(5129)] = 199283, + [SMALL_STATE(5130)] = 199306, + [SMALL_STATE(5131)] = 199323, + [SMALL_STATE(5132)] = 199342, + [SMALL_STATE(5133)] = 199361, + [SMALL_STATE(5134)] = 199378, + [SMALL_STATE(5135)] = 199401, + [SMALL_STATE(5136)] = 199420, + [SMALL_STATE(5137)] = 199439, + [SMALL_STATE(5138)] = 199456, + [SMALL_STATE(5139)] = 199473, + [SMALL_STATE(5140)] = 199492, + [SMALL_STATE(5141)] = 199519, + [SMALL_STATE(5142)] = 199542, + [SMALL_STATE(5143)] = 199565, + [SMALL_STATE(5144)] = 199582, + [SMALL_STATE(5145)] = 199601, + [SMALL_STATE(5146)] = 199618, + [SMALL_STATE(5147)] = 199635, + [SMALL_STATE(5148)] = 199652, + [SMALL_STATE(5149)] = 199669, + [SMALL_STATE(5150)] = 199698, + [SMALL_STATE(5151)] = 199721, + [SMALL_STATE(5152)] = 199744, + [SMALL_STATE(5153)] = 199763, + [SMALL_STATE(5154)] = 199782, + [SMALL_STATE(5155)] = 199799, + [SMALL_STATE(5156)] = 199822, + [SMALL_STATE(5157)] = 199839, + [SMALL_STATE(5158)] = 199866, + [SMALL_STATE(5159)] = 199893, + [SMALL_STATE(5160)] = 199916, + [SMALL_STATE(5161)] = 199948, + [SMALL_STATE(5162)] = 199974, + [SMALL_STATE(5163)] = 200000, + [SMALL_STATE(5164)] = 200032, + [SMALL_STATE(5165)] = 200064, + [SMALL_STATE(5166)] = 200096, + [SMALL_STATE(5167)] = 200128, + [SMALL_STATE(5168)] = 200154, + [SMALL_STATE(5169)] = 200180, + [SMALL_STATE(5170)] = 200212, + [SMALL_STATE(5171)] = 200230, + [SMALL_STATE(5172)] = 200252, + [SMALL_STATE(5173)] = 200270, + [SMALL_STATE(5174)] = 200288, + [SMALL_STATE(5175)] = 200306, + [SMALL_STATE(5176)] = 200324, + [SMALL_STATE(5177)] = 200356, + [SMALL_STATE(5178)] = 200382, + [SMALL_STATE(5179)] = 200400, + [SMALL_STATE(5180)] = 200432, + [SMALL_STATE(5181)] = 200458, + [SMALL_STATE(5182)] = 200490, + [SMALL_STATE(5183)] = 200522, + [SMALL_STATE(5184)] = 200554, + [SMALL_STATE(5185)] = 200586, + [SMALL_STATE(5186)] = 200618, + [SMALL_STATE(5187)] = 200640, + [SMALL_STATE(5188)] = 200662, + [SMALL_STATE(5189)] = 200694, + [SMALL_STATE(5190)] = 200726, + [SMALL_STATE(5191)] = 200744, + [SMALL_STATE(5192)] = 200766, + [SMALL_STATE(5193)] = 200798, + [SMALL_STATE(5194)] = 200830, + [SMALL_STATE(5195)] = 200852, + [SMALL_STATE(5196)] = 200878, + [SMALL_STATE(5197)] = 200910, + [SMALL_STATE(5198)] = 200942, + [SMALL_STATE(5199)] = 200964, + [SMALL_STATE(5200)] = 200996, + [SMALL_STATE(5201)] = 201028, + [SMALL_STATE(5202)] = 201060, + [SMALL_STATE(5203)] = 201082, + [SMALL_STATE(5204)] = 201114, + [SMALL_STATE(5205)] = 201132, + [SMALL_STATE(5206)] = 201154, + [SMALL_STATE(5207)] = 201172, + [SMALL_STATE(5208)] = 201194, + [SMALL_STATE(5209)] = 201226, + [SMALL_STATE(5210)] = 201258, + [SMALL_STATE(5211)] = 201278, + [SMALL_STATE(5212)] = 201296, + [SMALL_STATE(5213)] = 201328, + [SMALL_STATE(5214)] = 201360, + [SMALL_STATE(5215)] = 201392, + [SMALL_STATE(5216)] = 201409, + [SMALL_STATE(5217)] = 201438, + [SMALL_STATE(5218)] = 201459, + [SMALL_STATE(5219)] = 201486, + [SMALL_STATE(5220)] = 201501, + [SMALL_STATE(5221)] = 201522, + [SMALL_STATE(5222)] = 201543, + [SMALL_STATE(5223)] = 201572, + [SMALL_STATE(5224)] = 201601, + [SMALL_STATE(5225)] = 201622, + [SMALL_STATE(5226)] = 201637, + [SMALL_STATE(5227)] = 201652, + [SMALL_STATE(5228)] = 201671, + [SMALL_STATE(5229)] = 201692, + [SMALL_STATE(5230)] = 201707, + [SMALL_STATE(5231)] = 201734, + [SMALL_STATE(5232)] = 201755, + [SMALL_STATE(5233)] = 201774, + [SMALL_STATE(5234)] = 201801, + [SMALL_STATE(5235)] = 201822, + [SMALL_STATE(5236)] = 201851, + [SMALL_STATE(5237)] = 201872, + [SMALL_STATE(5238)] = 201893, + [SMALL_STATE(5239)] = 201920, + [SMALL_STATE(5240)] = 201941, + [SMALL_STATE(5241)] = 201966, + [SMALL_STATE(5242)] = 201995, + [SMALL_STATE(5243)] = 202024, + [SMALL_STATE(5244)] = 202045, + [SMALL_STATE(5245)] = 202066, + [SMALL_STATE(5246)] = 202087, + [SMALL_STATE(5247)] = 202116, + [SMALL_STATE(5248)] = 202137, + [SMALL_STATE(5249)] = 202152, + [SMALL_STATE(5250)] = 202181, + [SMALL_STATE(5251)] = 202196, + [SMALL_STATE(5252)] = 202211, + [SMALL_STATE(5253)] = 202240, + [SMALL_STATE(5254)] = 202257, + [SMALL_STATE(5255)] = 202284, + [SMALL_STATE(5256)] = 202299, + [SMALL_STATE(5257)] = 202314, + [SMALL_STATE(5258)] = 202329, + [SMALL_STATE(5259)] = 202350, + [SMALL_STATE(5260)] = 202365, + [SMALL_STATE(5261)] = 202394, + [SMALL_STATE(5262)] = 202409, + [SMALL_STATE(5263)] = 202436, + [SMALL_STATE(5264)] = 202457, + [SMALL_STATE(5265)] = 202472, + [SMALL_STATE(5266)] = 202501, + [SMALL_STATE(5267)] = 202528, + [SMALL_STATE(5268)] = 202543, + [SMALL_STATE(5269)] = 202570, + [SMALL_STATE(5270)] = 202599, + [SMALL_STATE(5271)] = 202622, + [SMALL_STATE(5272)] = 202651, + [SMALL_STATE(5273)] = 202678, + [SMALL_STATE(5274)] = 202693, + [SMALL_STATE(5275)] = 202722, + [SMALL_STATE(5276)] = 202751, + [SMALL_STATE(5277)] = 202772, + [SMALL_STATE(5278)] = 202797, + [SMALL_STATE(5279)] = 202826, + [SMALL_STATE(5280)] = 202855, + [SMALL_STATE(5281)] = 202882, + [SMALL_STATE(5282)] = 202911, + [SMALL_STATE(5283)] = 202940, + [SMALL_STATE(5284)] = 202961, + [SMALL_STATE(5285)] = 202978, + [SMALL_STATE(5286)] = 203007, + [SMALL_STATE(5287)] = 203030, + [SMALL_STATE(5288)] = 203047, + [SMALL_STATE(5289)] = 203062, + [SMALL_STATE(5290)] = 203079, + [SMALL_STATE(5291)] = 203096, + [SMALL_STATE(5292)] = 203113, + [SMALL_STATE(5293)] = 203132, + [SMALL_STATE(5294)] = 203157, + [SMALL_STATE(5295)] = 203172, + [SMALL_STATE(5296)] = 203189, + [SMALL_STATE(5297)] = 203216, + [SMALL_STATE(5298)] = 203241, + [SMALL_STATE(5299)] = 203258, + [SMALL_STATE(5300)] = 203284, + [SMALL_STATE(5301)] = 203308, + [SMALL_STATE(5302)] = 203332, + [SMALL_STATE(5303)] = 203356, + [SMALL_STATE(5304)] = 203380, + [SMALL_STATE(5305)] = 203404, + [SMALL_STATE(5306)] = 203428, + [SMALL_STATE(5307)] = 203452, + [SMALL_STATE(5308)] = 203472, + [SMALL_STATE(5309)] = 203500, + [SMALL_STATE(5310)] = 203518, + [SMALL_STATE(5311)] = 203536, + [SMALL_STATE(5312)] = 203562, + [SMALL_STATE(5313)] = 203584, + [SMALL_STATE(5314)] = 203608, + [SMALL_STATE(5315)] = 203628, + [SMALL_STATE(5316)] = 203646, + [SMALL_STATE(5317)] = 203662, + [SMALL_STATE(5318)] = 203688, + [SMALL_STATE(5319)] = 203706, + [SMALL_STATE(5320)] = 203730, + [SMALL_STATE(5321)] = 203748, + [SMALL_STATE(5322)] = 203772, + [SMALL_STATE(5323)] = 203792, + [SMALL_STATE(5324)] = 203814, + [SMALL_STATE(5325)] = 203838, + [SMALL_STATE(5326)] = 203856, + [SMALL_STATE(5327)] = 203884, + [SMALL_STATE(5328)] = 203902, + [SMALL_STATE(5329)] = 203920, + [SMALL_STATE(5330)] = 203940, + [SMALL_STATE(5331)] = 203960, + [SMALL_STATE(5332)] = 203978, + [SMALL_STATE(5333)] = 203998, + [SMALL_STATE(5334)] = 204026, + [SMALL_STATE(5335)] = 204046, + [SMALL_STATE(5336)] = 204066, + [SMALL_STATE(5337)] = 204091, + [SMALL_STATE(5338)] = 204110, + [SMALL_STATE(5339)] = 204127, + [SMALL_STATE(5340)] = 204146, + [SMALL_STATE(5341)] = 204165, + [SMALL_STATE(5342)] = 204184, + [SMALL_STATE(5343)] = 204207, + [SMALL_STATE(5344)] = 204226, + [SMALL_STATE(5345)] = 204249, + [SMALL_STATE(5346)] = 204274, + [SMALL_STATE(5347)] = 204293, + [SMALL_STATE(5348)] = 204312, + [SMALL_STATE(5349)] = 204331, + [SMALL_STATE(5350)] = 204356, + [SMALL_STATE(5351)] = 204375, + [SMALL_STATE(5352)] = 204394, + [SMALL_STATE(5353)] = 204419, + [SMALL_STATE(5354)] = 204442, + [SMALL_STATE(5355)] = 204467, + [SMALL_STATE(5356)] = 204486, + [SMALL_STATE(5357)] = 204509, + [SMALL_STATE(5358)] = 204532, + [SMALL_STATE(5359)] = 204551, + [SMALL_STATE(5360)] = 204574, + [SMALL_STATE(5361)] = 204597, + [SMALL_STATE(5362)] = 204620, + [SMALL_STATE(5363)] = 204645, + [SMALL_STATE(5364)] = 204668, + [SMALL_STATE(5365)] = 204687, + [SMALL_STATE(5366)] = 204706, + [SMALL_STATE(5367)] = 204729, + [SMALL_STATE(5368)] = 204752, + [SMALL_STATE(5369)] = 204771, + [SMALL_STATE(5370)] = 204794, + [SMALL_STATE(5371)] = 204817, + [SMALL_STATE(5372)] = 204842, + [SMALL_STATE(5373)] = 204865, + [SMALL_STATE(5374)] = 204884, + [SMALL_STATE(5375)] = 204903, + [SMALL_STATE(5376)] = 204922, + [SMALL_STATE(5377)] = 204945, + [SMALL_STATE(5378)] = 204964, + [SMALL_STATE(5379)] = 204987, + [SMALL_STATE(5380)] = 205010, + [SMALL_STATE(5381)] = 205033, + [SMALL_STATE(5382)] = 205058, + [SMALL_STATE(5383)] = 205073, + [SMALL_STATE(5384)] = 205098, + [SMALL_STATE(5385)] = 205113, + [SMALL_STATE(5386)] = 205138, + [SMALL_STATE(5387)] = 205161, + [SMALL_STATE(5388)] = 205184, + [SMALL_STATE(5389)] = 205203, + [SMALL_STATE(5390)] = 205228, + [SMALL_STATE(5391)] = 205253, + [SMALL_STATE(5392)] = 205268, + [SMALL_STATE(5393)] = 205283, + [SMALL_STATE(5394)] = 205306, + [SMALL_STATE(5395)] = 205325, + [SMALL_STATE(5396)] = 205348, + [SMALL_STATE(5397)] = 205373, + [SMALL_STATE(5398)] = 205392, + [SMALL_STATE(5399)] = 205415, + [SMALL_STATE(5400)] = 205430, + [SMALL_STATE(5401)] = 205447, + [SMALL_STATE(5402)] = 205472, + [SMALL_STATE(5403)] = 205491, + [SMALL_STATE(5404)] = 205506, + [SMALL_STATE(5405)] = 205525, + [SMALL_STATE(5406)] = 205544, + [SMALL_STATE(5407)] = 205563, + [SMALL_STATE(5408)] = 205586, + [SMALL_STATE(5409)] = 205605, + [SMALL_STATE(5410)] = 205624, + [SMALL_STATE(5411)] = 205647, + [SMALL_STATE(5412)] = 205670, + [SMALL_STATE(5413)] = 205693, + [SMALL_STATE(5414)] = 205716, + [SMALL_STATE(5415)] = 205741, + [SMALL_STATE(5416)] = 205764, + [SMALL_STATE(5417)] = 205787, + [SMALL_STATE(5418)] = 205810, + [SMALL_STATE(5419)] = 205829, + [SMALL_STATE(5420)] = 205844, + [SMALL_STATE(5421)] = 205869, + [SMALL_STATE(5422)] = 205892, + [SMALL_STATE(5423)] = 205915, + [SMALL_STATE(5424)] = 205932, + [SMALL_STATE(5425)] = 205955, + [SMALL_STATE(5426)] = 205974, + [SMALL_STATE(5427)] = 205993, + [SMALL_STATE(5428)] = 206012, + [SMALL_STATE(5429)] = 206031, + [SMALL_STATE(5430)] = 206048, + [SMALL_STATE(5431)] = 206071, + [SMALL_STATE(5432)] = 206090, + [SMALL_STATE(5433)] = 206109, + [SMALL_STATE(5434)] = 206124, + [SMALL_STATE(5435)] = 206141, + [SMALL_STATE(5436)] = 206166, + [SMALL_STATE(5437)] = 206183, + [SMALL_STATE(5438)] = 206202, + [SMALL_STATE(5439)] = 206221, + [SMALL_STATE(5440)] = 206240, + [SMALL_STATE(5441)] = 206259, + [SMALL_STATE(5442)] = 206282, + [SMALL_STATE(5443)] = 206301, + [SMALL_STATE(5444)] = 206324, + [SMALL_STATE(5445)] = 206347, + [SMALL_STATE(5446)] = 206372, + [SMALL_STATE(5447)] = 206395, + [SMALL_STATE(5448)] = 206411, + [SMALL_STATE(5449)] = 206431, + [SMALL_STATE(5450)] = 206445, + [SMALL_STATE(5451)] = 206463, + [SMALL_STATE(5452)] = 206477, + [SMALL_STATE(5453)] = 206497, + [SMALL_STATE(5454)] = 206515, + [SMALL_STATE(5455)] = 206535, + [SMALL_STATE(5456)] = 206553, + [SMALL_STATE(5457)] = 206573, + [SMALL_STATE(5458)] = 206593, + [SMALL_STATE(5459)] = 206611, + [SMALL_STATE(5460)] = 206631, + [SMALL_STATE(5461)] = 206649, + [SMALL_STATE(5462)] = 206667, + [SMALL_STATE(5463)] = 206687, + [SMALL_STATE(5464)] = 206705, + [SMALL_STATE(5465)] = 206723, + [SMALL_STATE(5466)] = 206737, + [SMALL_STATE(5467)] = 206755, + [SMALL_STATE(5468)] = 206773, + [SMALL_STATE(5469)] = 206791, + [SMALL_STATE(5470)] = 206809, + [SMALL_STATE(5471)] = 206827, + [SMALL_STATE(5472)] = 206841, + [SMALL_STATE(5473)] = 206861, + [SMALL_STATE(5474)] = 206875, + [SMALL_STATE(5475)] = 206889, + [SMALL_STATE(5476)] = 206909, + [SMALL_STATE(5477)] = 206927, + [SMALL_STATE(5478)] = 206945, + [SMALL_STATE(5479)] = 206963, + [SMALL_STATE(5480)] = 206981, + [SMALL_STATE(5481)] = 207001, + [SMALL_STATE(5482)] = 207019, + [SMALL_STATE(5483)] = 207037, + [SMALL_STATE(5484)] = 207057, + [SMALL_STATE(5485)] = 207075, + [SMALL_STATE(5486)] = 207093, + [SMALL_STATE(5487)] = 207113, + [SMALL_STATE(5488)] = 207133, + [SMALL_STATE(5489)] = 207153, + [SMALL_STATE(5490)] = 207171, + [SMALL_STATE(5491)] = 207189, + [SMALL_STATE(5492)] = 207203, + [SMALL_STATE(5493)] = 207221, + [SMALL_STATE(5494)] = 207235, + [SMALL_STATE(5495)] = 207255, + [SMALL_STATE(5496)] = 207274, + [SMALL_STATE(5497)] = 207293, + [SMALL_STATE(5498)] = 207310, + [SMALL_STATE(5499)] = 207327, + [SMALL_STATE(5500)] = 207344, + [SMALL_STATE(5501)] = 207363, + [SMALL_STATE(5502)] = 207380, + [SMALL_STATE(5503)] = 207397, + [SMALL_STATE(5504)] = 207414, + [SMALL_STATE(5505)] = 207433, + [SMALL_STATE(5506)] = 207450, + [SMALL_STATE(5507)] = 207467, + [SMALL_STATE(5508)] = 207486, + [SMALL_STATE(5509)] = 207503, + [SMALL_STATE(5510)] = 207520, + [SMALL_STATE(5511)] = 207537, + [SMALL_STATE(5512)] = 207550, + [SMALL_STATE(5513)] = 207563, + [SMALL_STATE(5514)] = 207580, + [SMALL_STATE(5515)] = 207597, + [SMALL_STATE(5516)] = 207616, + [SMALL_STATE(5517)] = 207635, + [SMALL_STATE(5518)] = 207652, + [SMALL_STATE(5519)] = 207665, + [SMALL_STATE(5520)] = 207681, + [SMALL_STATE(5521)] = 207695, + [SMALL_STATE(5522)] = 207711, + [SMALL_STATE(5523)] = 207727, + [SMALL_STATE(5524)] = 207743, + [SMALL_STATE(5525)] = 207759, + [SMALL_STATE(5526)] = 207775, + [SMALL_STATE(5527)] = 207789, + [SMALL_STATE(5528)] = 207805, + [SMALL_STATE(5529)] = 207821, + [SMALL_STATE(5530)] = 207837, + [SMALL_STATE(5531)] = 207853, + [SMALL_STATE(5532)] = 207869, + [SMALL_STATE(5533)] = 207885, + [SMALL_STATE(5534)] = 207901, + [SMALL_STATE(5535)] = 207917, + [SMALL_STATE(5536)] = 207933, + [SMALL_STATE(5537)] = 207949, + [SMALL_STATE(5538)] = 207965, + [SMALL_STATE(5539)] = 207981, + [SMALL_STATE(5540)] = 207997, + [SMALL_STATE(5541)] = 208013, + [SMALL_STATE(5542)] = 208029, + [SMALL_STATE(5543)] = 208045, + [SMALL_STATE(5544)] = 208061, + [SMALL_STATE(5545)] = 208077, + [SMALL_STATE(5546)] = 208091, + [SMALL_STATE(5547)] = 208107, + [SMALL_STATE(5548)] = 208123, + [SMALL_STATE(5549)] = 208139, + [SMALL_STATE(5550)] = 208155, + [SMALL_STATE(5551)] = 208171, + [SMALL_STATE(5552)] = 208187, + [SMALL_STATE(5553)] = 208201, + [SMALL_STATE(5554)] = 208217, + [SMALL_STATE(5555)] = 208233, + [SMALL_STATE(5556)] = 208247, + [SMALL_STATE(5557)] = 208263, + [SMALL_STATE(5558)] = 208279, + [SMALL_STATE(5559)] = 208295, + [SMALL_STATE(5560)] = 208311, + [SMALL_STATE(5561)] = 208327, + [SMALL_STATE(5562)] = 208343, + [SMALL_STATE(5563)] = 208359, + [SMALL_STATE(5564)] = 208375, + [SMALL_STATE(5565)] = 208391, + [SMALL_STATE(5566)] = 208407, + [SMALL_STATE(5567)] = 208423, + [SMALL_STATE(5568)] = 208439, + [SMALL_STATE(5569)] = 208455, + [SMALL_STATE(5570)] = 208471, + [SMALL_STATE(5571)] = 208487, + [SMALL_STATE(5572)] = 208503, + [SMALL_STATE(5573)] = 208519, + [SMALL_STATE(5574)] = 208535, + [SMALL_STATE(5575)] = 208549, + [SMALL_STATE(5576)] = 208565, + [SMALL_STATE(5577)] = 208581, + [SMALL_STATE(5578)] = 208597, + [SMALL_STATE(5579)] = 208613, + [SMALL_STATE(5580)] = 208629, + [SMALL_STATE(5581)] = 208645, + [SMALL_STATE(5582)] = 208661, + [SMALL_STATE(5583)] = 208677, + [SMALL_STATE(5584)] = 208693, + [SMALL_STATE(5585)] = 208709, + [SMALL_STATE(5586)] = 208723, + [SMALL_STATE(5587)] = 208739, + [SMALL_STATE(5588)] = 208755, + [SMALL_STATE(5589)] = 208771, + [SMALL_STATE(5590)] = 208787, + [SMALL_STATE(5591)] = 208803, + [SMALL_STATE(5592)] = 208819, + [SMALL_STATE(5593)] = 208835, + [SMALL_STATE(5594)] = 208851, + [SMALL_STATE(5595)] = 208865, + [SMALL_STATE(5596)] = 208881, + [SMALL_STATE(5597)] = 208897, + [SMALL_STATE(5598)] = 208913, + [SMALL_STATE(5599)] = 208929, + [SMALL_STATE(5600)] = 208945, + [SMALL_STATE(5601)] = 208961, + [SMALL_STATE(5602)] = 208977, + [SMALL_STATE(5603)] = 208993, + [SMALL_STATE(5604)] = 209009, + [SMALL_STATE(5605)] = 209025, + [SMALL_STATE(5606)] = 209041, + [SMALL_STATE(5607)] = 209057, + [SMALL_STATE(5608)] = 209073, + [SMALL_STATE(5609)] = 209089, + [SMALL_STATE(5610)] = 209105, + [SMALL_STATE(5611)] = 209119, + [SMALL_STATE(5612)] = 209135, + [SMALL_STATE(5613)] = 209151, + [SMALL_STATE(5614)] = 209167, + [SMALL_STATE(5615)] = 209183, + [SMALL_STATE(5616)] = 209199, + [SMALL_STATE(5617)] = 209213, + [SMALL_STATE(5618)] = 209229, + [SMALL_STATE(5619)] = 209245, + [SMALL_STATE(5620)] = 209261, + [SMALL_STATE(5621)] = 209277, + [SMALL_STATE(5622)] = 209293, + [SMALL_STATE(5623)] = 209309, + [SMALL_STATE(5624)] = 209325, + [SMALL_STATE(5625)] = 209341, + [SMALL_STATE(5626)] = 209355, + [SMALL_STATE(5627)] = 209371, + [SMALL_STATE(5628)] = 209387, + [SMALL_STATE(5629)] = 209401, + [SMALL_STATE(5630)] = 209417, + [SMALL_STATE(5631)] = 209433, + [SMALL_STATE(5632)] = 209449, + [SMALL_STATE(5633)] = 209465, + [SMALL_STATE(5634)] = 209481, + [SMALL_STATE(5635)] = 209497, + [SMALL_STATE(5636)] = 209513, + [SMALL_STATE(5637)] = 209529, + [SMALL_STATE(5638)] = 209545, + [SMALL_STATE(5639)] = 209561, + [SMALL_STATE(5640)] = 209575, + [SMALL_STATE(5641)] = 209587, + [SMALL_STATE(5642)] = 209601, + [SMALL_STATE(5643)] = 209617, + [SMALL_STATE(5644)] = 209633, + [SMALL_STATE(5645)] = 209649, + [SMALL_STATE(5646)] = 209665, + [SMALL_STATE(5647)] = 209681, + [SMALL_STATE(5648)] = 209695, + [SMALL_STATE(5649)] = 209711, + [SMALL_STATE(5650)] = 209727, + [SMALL_STATE(5651)] = 209743, + [SMALL_STATE(5652)] = 209759, + [SMALL_STATE(5653)] = 209775, + [SMALL_STATE(5654)] = 209791, + [SMALL_STATE(5655)] = 209807, + [SMALL_STATE(5656)] = 209823, + [SMALL_STATE(5657)] = 209839, + [SMALL_STATE(5658)] = 209855, + [SMALL_STATE(5659)] = 209871, + [SMALL_STATE(5660)] = 209887, + [SMALL_STATE(5661)] = 209903, + [SMALL_STATE(5662)] = 209919, + [SMALL_STATE(5663)] = 209935, + [SMALL_STATE(5664)] = 209951, + [SMALL_STATE(5665)] = 209967, + [SMALL_STATE(5666)] = 209981, + [SMALL_STATE(5667)] = 209997, + [SMALL_STATE(5668)] = 210013, + [SMALL_STATE(5669)] = 210029, + [SMALL_STATE(5670)] = 210045, + [SMALL_STATE(5671)] = 210061, + [SMALL_STATE(5672)] = 210075, + [SMALL_STATE(5673)] = 210091, + [SMALL_STATE(5674)] = 210107, + [SMALL_STATE(5675)] = 210123, + [SMALL_STATE(5676)] = 210137, + [SMALL_STATE(5677)] = 210153, + [SMALL_STATE(5678)] = 210169, + [SMALL_STATE(5679)] = 210185, + [SMALL_STATE(5680)] = 210201, + [SMALL_STATE(5681)] = 210215, + [SMALL_STATE(5682)] = 210231, + [SMALL_STATE(5683)] = 210247, + [SMALL_STATE(5684)] = 210261, + [SMALL_STATE(5685)] = 210277, + [SMALL_STATE(5686)] = 210291, + [SMALL_STATE(5687)] = 210307, + [SMALL_STATE(5688)] = 210323, + [SMALL_STATE(5689)] = 210339, + [SMALL_STATE(5690)] = 210355, + [SMALL_STATE(5691)] = 210371, + [SMALL_STATE(5692)] = 210387, + [SMALL_STATE(5693)] = 210403, + [SMALL_STATE(5694)] = 210419, + [SMALL_STATE(5695)] = 210435, + [SMALL_STATE(5696)] = 210451, + [SMALL_STATE(5697)] = 210467, + [SMALL_STATE(5698)] = 210483, + [SMALL_STATE(5699)] = 210499, + [SMALL_STATE(5700)] = 210515, + [SMALL_STATE(5701)] = 210531, + [SMALL_STATE(5702)] = 210547, + [SMALL_STATE(5703)] = 210563, + [SMALL_STATE(5704)] = 210579, + [SMALL_STATE(5705)] = 210595, + [SMALL_STATE(5706)] = 210611, + [SMALL_STATE(5707)] = 210627, + [SMALL_STATE(5708)] = 210643, + [SMALL_STATE(5709)] = 210653, + [SMALL_STATE(5710)] = 210669, + [SMALL_STATE(5711)] = 210685, + [SMALL_STATE(5712)] = 210701, + [SMALL_STATE(5713)] = 210717, + [SMALL_STATE(5714)] = 210733, + [SMALL_STATE(5715)] = 210749, + [SMALL_STATE(5716)] = 210765, + [SMALL_STATE(5717)] = 210781, + [SMALL_STATE(5718)] = 210797, + [SMALL_STATE(5719)] = 210813, + [SMALL_STATE(5720)] = 210827, + [SMALL_STATE(5721)] = 210843, + [SMALL_STATE(5722)] = 210859, + [SMALL_STATE(5723)] = 210875, + [SMALL_STATE(5724)] = 210891, + [SMALL_STATE(5725)] = 210907, + [SMALL_STATE(5726)] = 210923, + [SMALL_STATE(5727)] = 210937, + [SMALL_STATE(5728)] = 210951, + [SMALL_STATE(5729)] = 210967, + [SMALL_STATE(5730)] = 210983, + [SMALL_STATE(5731)] = 210999, + [SMALL_STATE(5732)] = 211015, + [SMALL_STATE(5733)] = 211031, + [SMALL_STATE(5734)] = 211041, + [SMALL_STATE(5735)] = 211057, + [SMALL_STATE(5736)] = 211073, + [SMALL_STATE(5737)] = 211087, + [SMALL_STATE(5738)] = 211103, + [SMALL_STATE(5739)] = 211117, + [SMALL_STATE(5740)] = 211133, + [SMALL_STATE(5741)] = 211149, + [SMALL_STATE(5742)] = 211163, + [SMALL_STATE(5743)] = 211179, + [SMALL_STATE(5744)] = 211193, + [SMALL_STATE(5745)] = 211209, + [SMALL_STATE(5746)] = 211225, + [SMALL_STATE(5747)] = 211241, + [SMALL_STATE(5748)] = 211257, + [SMALL_STATE(5749)] = 211273, + [SMALL_STATE(5750)] = 211289, + [SMALL_STATE(5751)] = 211305, + [SMALL_STATE(5752)] = 211321, + [SMALL_STATE(5753)] = 211337, + [SMALL_STATE(5754)] = 211353, + [SMALL_STATE(5755)] = 211369, + [SMALL_STATE(5756)] = 211385, + [SMALL_STATE(5757)] = 211401, + [SMALL_STATE(5758)] = 211417, + [SMALL_STATE(5759)] = 211433, + [SMALL_STATE(5760)] = 211449, + [SMALL_STATE(5761)] = 211465, + [SMALL_STATE(5762)] = 211481, + [SMALL_STATE(5763)] = 211497, + [SMALL_STATE(5764)] = 211513, + [SMALL_STATE(5765)] = 211529, + [SMALL_STATE(5766)] = 211545, + [SMALL_STATE(5767)] = 211561, + [SMALL_STATE(5768)] = 211577, + [SMALL_STATE(5769)] = 211593, + [SMALL_STATE(5770)] = 211609, + [SMALL_STATE(5771)] = 211625, + [SMALL_STATE(5772)] = 211641, + [SMALL_STATE(5773)] = 211657, + [SMALL_STATE(5774)] = 211673, + [SMALL_STATE(5775)] = 211689, + [SMALL_STATE(5776)] = 211705, + [SMALL_STATE(5777)] = 211721, + [SMALL_STATE(5778)] = 211737, + [SMALL_STATE(5779)] = 211751, + [SMALL_STATE(5780)] = 211767, + [SMALL_STATE(5781)] = 211783, + [SMALL_STATE(5782)] = 211799, + [SMALL_STATE(5783)] = 211815, + [SMALL_STATE(5784)] = 211831, + [SMALL_STATE(5785)] = 211847, + [SMALL_STATE(5786)] = 211863, + [SMALL_STATE(5787)] = 211879, + [SMALL_STATE(5788)] = 211895, + [SMALL_STATE(5789)] = 211911, + [SMALL_STATE(5790)] = 211927, + [SMALL_STATE(5791)] = 211943, + [SMALL_STATE(5792)] = 211959, + [SMALL_STATE(5793)] = 211973, + [SMALL_STATE(5794)] = 211989, + [SMALL_STATE(5795)] = 212003, + [SMALL_STATE(5796)] = 212019, + [SMALL_STATE(5797)] = 212035, + [SMALL_STATE(5798)] = 212051, + [SMALL_STATE(5799)] = 212067, + [SMALL_STATE(5800)] = 212083, + [SMALL_STATE(5801)] = 212099, + [SMALL_STATE(5802)] = 212115, + [SMALL_STATE(5803)] = 212131, + [SMALL_STATE(5804)] = 212147, + [SMALL_STATE(5805)] = 212163, + [SMALL_STATE(5806)] = 212179, + [SMALL_STATE(5807)] = 212195, + [SMALL_STATE(5808)] = 212211, + [SMALL_STATE(5809)] = 212227, + [SMALL_STATE(5810)] = 212243, + [SMALL_STATE(5811)] = 212259, + [SMALL_STATE(5812)] = 212275, + [SMALL_STATE(5813)] = 212291, + [SMALL_STATE(5814)] = 212305, + [SMALL_STATE(5815)] = 212318, + [SMALL_STATE(5816)] = 212331, + [SMALL_STATE(5817)] = 212344, + [SMALL_STATE(5818)] = 212357, + [SMALL_STATE(5819)] = 212370, + [SMALL_STATE(5820)] = 212383, + [SMALL_STATE(5821)] = 212396, + [SMALL_STATE(5822)] = 212409, + [SMALL_STATE(5823)] = 212422, + [SMALL_STATE(5824)] = 212435, + [SMALL_STATE(5825)] = 212446, + [SMALL_STATE(5826)] = 212459, + [SMALL_STATE(5827)] = 212472, + [SMALL_STATE(5828)] = 212485, + [SMALL_STATE(5829)] = 212498, + [SMALL_STATE(5830)] = 212511, + [SMALL_STATE(5831)] = 212524, + [SMALL_STATE(5832)] = 212537, + [SMALL_STATE(5833)] = 212548, + [SMALL_STATE(5834)] = 212561, + [SMALL_STATE(5835)] = 212572, + [SMALL_STATE(5836)] = 212585, + [SMALL_STATE(5837)] = 212598, + [SMALL_STATE(5838)] = 212611, + [SMALL_STATE(5839)] = 212624, + [SMALL_STATE(5840)] = 212637, + [SMALL_STATE(5841)] = 212650, + [SMALL_STATE(5842)] = 212663, + [SMALL_STATE(5843)] = 212676, + [SMALL_STATE(5844)] = 212687, + [SMALL_STATE(5845)] = 212700, + [SMALL_STATE(5846)] = 212713, + [SMALL_STATE(5847)] = 212726, + [SMALL_STATE(5848)] = 212737, + [SMALL_STATE(5849)] = 212750, + [SMALL_STATE(5850)] = 212763, + [SMALL_STATE(5851)] = 212776, + [SMALL_STATE(5852)] = 212789, + [SMALL_STATE(5853)] = 212802, + [SMALL_STATE(5854)] = 212815, + [SMALL_STATE(5855)] = 212828, + [SMALL_STATE(5856)] = 212841, + [SMALL_STATE(5857)] = 212854, + [SMALL_STATE(5858)] = 212867, + [SMALL_STATE(5859)] = 212880, + [SMALL_STATE(5860)] = 212893, + [SMALL_STATE(5861)] = 212906, + [SMALL_STATE(5862)] = 212919, + [SMALL_STATE(5863)] = 212932, + [SMALL_STATE(5864)] = 212945, + [SMALL_STATE(5865)] = 212958, + [SMALL_STATE(5866)] = 212971, + [SMALL_STATE(5867)] = 212984, + [SMALL_STATE(5868)] = 212997, + [SMALL_STATE(5869)] = 213010, + [SMALL_STATE(5870)] = 213019, + [SMALL_STATE(5871)] = 213030, + [SMALL_STATE(5872)] = 213041, + [SMALL_STATE(5873)] = 213054, + [SMALL_STATE(5874)] = 213067, + [SMALL_STATE(5875)] = 213080, + [SMALL_STATE(5876)] = 213093, + [SMALL_STATE(5877)] = 213106, + [SMALL_STATE(5878)] = 213117, + [SMALL_STATE(5879)] = 213130, + [SMALL_STATE(5880)] = 213143, + [SMALL_STATE(5881)] = 213156, + [SMALL_STATE(5882)] = 213167, + [SMALL_STATE(5883)] = 213178, + [SMALL_STATE(5884)] = 213187, + [SMALL_STATE(5885)] = 213200, + [SMALL_STATE(5886)] = 213213, + [SMALL_STATE(5887)] = 213226, + [SMALL_STATE(5888)] = 213239, + [SMALL_STATE(5889)] = 213252, + [SMALL_STATE(5890)] = 213265, + [SMALL_STATE(5891)] = 213278, + [SMALL_STATE(5892)] = 213287, + [SMALL_STATE(5893)] = 213300, + [SMALL_STATE(5894)] = 213313, + [SMALL_STATE(5895)] = 213326, + [SMALL_STATE(5896)] = 213339, + [SMALL_STATE(5897)] = 213350, + [SMALL_STATE(5898)] = 213363, + [SMALL_STATE(5899)] = 213376, + [SMALL_STATE(5900)] = 213389, + [SMALL_STATE(5901)] = 213402, + [SMALL_STATE(5902)] = 213415, + [SMALL_STATE(5903)] = 213428, + [SMALL_STATE(5904)] = 213439, + [SMALL_STATE(5905)] = 213452, + [SMALL_STATE(5906)] = 213465, + [SMALL_STATE(5907)] = 213478, + [SMALL_STATE(5908)] = 213491, + [SMALL_STATE(5909)] = 213504, + [SMALL_STATE(5910)] = 213517, + [SMALL_STATE(5911)] = 213530, + [SMALL_STATE(5912)] = 213543, + [SMALL_STATE(5913)] = 213556, + [SMALL_STATE(5914)] = 213569, + [SMALL_STATE(5915)] = 213582, + [SMALL_STATE(5916)] = 213595, + [SMALL_STATE(5917)] = 213608, + [SMALL_STATE(5918)] = 213621, + [SMALL_STATE(5919)] = 213634, + [SMALL_STATE(5920)] = 213647, + [SMALL_STATE(5921)] = 213660, + [SMALL_STATE(5922)] = 213673, + [SMALL_STATE(5923)] = 213686, + [SMALL_STATE(5924)] = 213697, + [SMALL_STATE(5925)] = 213710, + [SMALL_STATE(5926)] = 213723, + [SMALL_STATE(5927)] = 213734, + [SMALL_STATE(5928)] = 213747, + [SMALL_STATE(5929)] = 213760, + [SMALL_STATE(5930)] = 213773, + [SMALL_STATE(5931)] = 213786, + [SMALL_STATE(5932)] = 213799, + [SMALL_STATE(5933)] = 213812, + [SMALL_STATE(5934)] = 213825, + [SMALL_STATE(5935)] = 213838, + [SMALL_STATE(5936)] = 213851, + [SMALL_STATE(5937)] = 213864, + [SMALL_STATE(5938)] = 213877, + [SMALL_STATE(5939)] = 213890, + [SMALL_STATE(5940)] = 213903, + [SMALL_STATE(5941)] = 213916, + [SMALL_STATE(5942)] = 213929, + [SMALL_STATE(5943)] = 213938, + [SMALL_STATE(5944)] = 213951, + [SMALL_STATE(5945)] = 213962, + [SMALL_STATE(5946)] = 213973, + [SMALL_STATE(5947)] = 213986, + [SMALL_STATE(5948)] = 213999, + [SMALL_STATE(5949)] = 214012, + [SMALL_STATE(5950)] = 214025, + [SMALL_STATE(5951)] = 214038, + [SMALL_STATE(5952)] = 214051, + [SMALL_STATE(5953)] = 214064, + [SMALL_STATE(5954)] = 214077, + [SMALL_STATE(5955)] = 214090, + [SMALL_STATE(5956)] = 214103, + [SMALL_STATE(5957)] = 214116, + [SMALL_STATE(5958)] = 214129, + [SMALL_STATE(5959)] = 214142, + [SMALL_STATE(5960)] = 214155, + [SMALL_STATE(5961)] = 214168, + [SMALL_STATE(5962)] = 214181, + [SMALL_STATE(5963)] = 214194, + [SMALL_STATE(5964)] = 214207, + [SMALL_STATE(5965)] = 214220, + [SMALL_STATE(5966)] = 214233, + [SMALL_STATE(5967)] = 214246, + [SMALL_STATE(5968)] = 214259, + [SMALL_STATE(5969)] = 214272, + [SMALL_STATE(5970)] = 214283, + [SMALL_STATE(5971)] = 214296, + [SMALL_STATE(5972)] = 214307, + [SMALL_STATE(5973)] = 214318, + [SMALL_STATE(5974)] = 214327, + [SMALL_STATE(5975)] = 214336, + [SMALL_STATE(5976)] = 214349, + [SMALL_STATE(5977)] = 214362, + [SMALL_STATE(5978)] = 214375, + [SMALL_STATE(5979)] = 214388, + [SMALL_STATE(5980)] = 214401, + [SMALL_STATE(5981)] = 214414, + [SMALL_STATE(5982)] = 214427, + [SMALL_STATE(5983)] = 214440, + [SMALL_STATE(5984)] = 214453, + [SMALL_STATE(5985)] = 214466, + [SMALL_STATE(5986)] = 214479, + [SMALL_STATE(5987)] = 214492, + [SMALL_STATE(5988)] = 214505, + [SMALL_STATE(5989)] = 214518, + [SMALL_STATE(5990)] = 214531, + [SMALL_STATE(5991)] = 214544, + [SMALL_STATE(5992)] = 214557, + [SMALL_STATE(5993)] = 214570, + [SMALL_STATE(5994)] = 214583, + [SMALL_STATE(5995)] = 214596, + [SMALL_STATE(5996)] = 214609, + [SMALL_STATE(5997)] = 214622, + [SMALL_STATE(5998)] = 214635, + [SMALL_STATE(5999)] = 214648, + [SMALL_STATE(6000)] = 214661, + [SMALL_STATE(6001)] = 214672, + [SMALL_STATE(6002)] = 214685, + [SMALL_STATE(6003)] = 214696, + [SMALL_STATE(6004)] = 214709, + [SMALL_STATE(6005)] = 214722, + [SMALL_STATE(6006)] = 214735, + [SMALL_STATE(6007)] = 214748, + [SMALL_STATE(6008)] = 214761, + [SMALL_STATE(6009)] = 214774, + [SMALL_STATE(6010)] = 214787, + [SMALL_STATE(6011)] = 214800, + [SMALL_STATE(6012)] = 214813, + [SMALL_STATE(6013)] = 214826, + [SMALL_STATE(6014)] = 214839, + [SMALL_STATE(6015)] = 214852, + [SMALL_STATE(6016)] = 214863, + [SMALL_STATE(6017)] = 214876, + [SMALL_STATE(6018)] = 214889, + [SMALL_STATE(6019)] = 214902, + [SMALL_STATE(6020)] = 214915, + [SMALL_STATE(6021)] = 214928, + [SMALL_STATE(6022)] = 214941, + [SMALL_STATE(6023)] = 214954, + [SMALL_STATE(6024)] = 214967, + [SMALL_STATE(6025)] = 214980, + [SMALL_STATE(6026)] = 214993, + [SMALL_STATE(6027)] = 215004, + [SMALL_STATE(6028)] = 215017, + [SMALL_STATE(6029)] = 215030, + [SMALL_STATE(6030)] = 215043, + [SMALL_STATE(6031)] = 215056, + [SMALL_STATE(6032)] = 215069, + [SMALL_STATE(6033)] = 215082, + [SMALL_STATE(6034)] = 215095, + [SMALL_STATE(6035)] = 215106, + [SMALL_STATE(6036)] = 215119, + [SMALL_STATE(6037)] = 215132, + [SMALL_STATE(6038)] = 215145, + [SMALL_STATE(6039)] = 215158, + [SMALL_STATE(6040)] = 215171, + [SMALL_STATE(6041)] = 215184, + [SMALL_STATE(6042)] = 215197, + [SMALL_STATE(6043)] = 215210, + [SMALL_STATE(6044)] = 215223, + [SMALL_STATE(6045)] = 215236, + [SMALL_STATE(6046)] = 215249, + [SMALL_STATE(6047)] = 215262, + [SMALL_STATE(6048)] = 215275, + [SMALL_STATE(6049)] = 215288, + [SMALL_STATE(6050)] = 215301, + [SMALL_STATE(6051)] = 215314, + [SMALL_STATE(6052)] = 215327, + [SMALL_STATE(6053)] = 215340, + [SMALL_STATE(6054)] = 215353, + [SMALL_STATE(6055)] = 215366, + [SMALL_STATE(6056)] = 215379, + [SMALL_STATE(6057)] = 215392, + [SMALL_STATE(6058)] = 215405, + [SMALL_STATE(6059)] = 215418, + [SMALL_STATE(6060)] = 215431, + [SMALL_STATE(6061)] = 215442, + [SMALL_STATE(6062)] = 215455, + [SMALL_STATE(6063)] = 215466, + [SMALL_STATE(6064)] = 215479, + [SMALL_STATE(6065)] = 215492, + [SMALL_STATE(6066)] = 215505, + [SMALL_STATE(6067)] = 215518, + [SMALL_STATE(6068)] = 215531, + [SMALL_STATE(6069)] = 215544, + [SMALL_STATE(6070)] = 215555, + [SMALL_STATE(6071)] = 215568, + [SMALL_STATE(6072)] = 215581, + [SMALL_STATE(6073)] = 215594, + [SMALL_STATE(6074)] = 215607, + [SMALL_STATE(6075)] = 215620, + [SMALL_STATE(6076)] = 215633, + [SMALL_STATE(6077)] = 215646, + [SMALL_STATE(6078)] = 215657, + [SMALL_STATE(6079)] = 215668, + [SMALL_STATE(6080)] = 215681, + [SMALL_STATE(6081)] = 215694, + [SMALL_STATE(6082)] = 215707, + [SMALL_STATE(6083)] = 215720, + [SMALL_STATE(6084)] = 215733, + [SMALL_STATE(6085)] = 215746, + [SMALL_STATE(6086)] = 215759, + [SMALL_STATE(6087)] = 215772, + [SMALL_STATE(6088)] = 215785, + [SMALL_STATE(6089)] = 215798, + [SMALL_STATE(6090)] = 215811, + [SMALL_STATE(6091)] = 215824, + [SMALL_STATE(6092)] = 215835, + [SMALL_STATE(6093)] = 215848, + [SMALL_STATE(6094)] = 215861, + [SMALL_STATE(6095)] = 215874, + [SMALL_STATE(6096)] = 215887, + [SMALL_STATE(6097)] = 215900, + [SMALL_STATE(6098)] = 215911, + [SMALL_STATE(6099)] = 215924, + [SMALL_STATE(6100)] = 215937, + [SMALL_STATE(6101)] = 215950, + [SMALL_STATE(6102)] = 215963, + [SMALL_STATE(6103)] = 215976, + [SMALL_STATE(6104)] = 215989, + [SMALL_STATE(6105)] = 216002, + [SMALL_STATE(6106)] = 216013, + [SMALL_STATE(6107)] = 216024, + [SMALL_STATE(6108)] = 216037, + [SMALL_STATE(6109)] = 216050, + [SMALL_STATE(6110)] = 216063, + [SMALL_STATE(6111)] = 216076, + [SMALL_STATE(6112)] = 216089, + [SMALL_STATE(6113)] = 216102, + [SMALL_STATE(6114)] = 216115, + [SMALL_STATE(6115)] = 216125, + [SMALL_STATE(6116)] = 216135, + [SMALL_STATE(6117)] = 216145, + [SMALL_STATE(6118)] = 216155, + [SMALL_STATE(6119)] = 216165, + [SMALL_STATE(6120)] = 216175, + [SMALL_STATE(6121)] = 216185, + [SMALL_STATE(6122)] = 216195, + [SMALL_STATE(6123)] = 216205, + [SMALL_STATE(6124)] = 216215, + [SMALL_STATE(6125)] = 216225, + [SMALL_STATE(6126)] = 216235, + [SMALL_STATE(6127)] = 216245, + [SMALL_STATE(6128)] = 216255, + [SMALL_STATE(6129)] = 216265, + [SMALL_STATE(6130)] = 216275, + [SMALL_STATE(6131)] = 216285, + [SMALL_STATE(6132)] = 216295, + [SMALL_STATE(6133)] = 216305, + [SMALL_STATE(6134)] = 216315, + [SMALL_STATE(6135)] = 216325, + [SMALL_STATE(6136)] = 216335, + [SMALL_STATE(6137)] = 216345, + [SMALL_STATE(6138)] = 216355, + [SMALL_STATE(6139)] = 216365, + [SMALL_STATE(6140)] = 216375, + [SMALL_STATE(6141)] = 216385, + [SMALL_STATE(6142)] = 216395, + [SMALL_STATE(6143)] = 216405, + [SMALL_STATE(6144)] = 216415, + [SMALL_STATE(6145)] = 216425, + [SMALL_STATE(6146)] = 216435, + [SMALL_STATE(6147)] = 216445, + [SMALL_STATE(6148)] = 216455, + [SMALL_STATE(6149)] = 216463, + [SMALL_STATE(6150)] = 216473, + [SMALL_STATE(6151)] = 216483, + [SMALL_STATE(6152)] = 216493, + [SMALL_STATE(6153)] = 216503, + [SMALL_STATE(6154)] = 216513, + [SMALL_STATE(6155)] = 216523, + [SMALL_STATE(6156)] = 216533, + [SMALL_STATE(6157)] = 216543, + [SMALL_STATE(6158)] = 216553, + [SMALL_STATE(6159)] = 216563, + [SMALL_STATE(6160)] = 216573, + [SMALL_STATE(6161)] = 216583, + [SMALL_STATE(6162)] = 216593, + [SMALL_STATE(6163)] = 216603, + [SMALL_STATE(6164)] = 216613, + [SMALL_STATE(6165)] = 216623, + [SMALL_STATE(6166)] = 216633, + [SMALL_STATE(6167)] = 216643, + [SMALL_STATE(6168)] = 216653, + [SMALL_STATE(6169)] = 216663, + [SMALL_STATE(6170)] = 216673, + [SMALL_STATE(6171)] = 216683, + [SMALL_STATE(6172)] = 216693, + [SMALL_STATE(6173)] = 216703, + [SMALL_STATE(6174)] = 216713, + [SMALL_STATE(6175)] = 216723, + [SMALL_STATE(6176)] = 216733, + [SMALL_STATE(6177)] = 216743, + [SMALL_STATE(6178)] = 216753, + [SMALL_STATE(6179)] = 216763, + [SMALL_STATE(6180)] = 216773, + [SMALL_STATE(6181)] = 216783, + [SMALL_STATE(6182)] = 216793, + [SMALL_STATE(6183)] = 216803, + [SMALL_STATE(6184)] = 216813, + [SMALL_STATE(6185)] = 216823, + [SMALL_STATE(6186)] = 216833, + [SMALL_STATE(6187)] = 216843, + [SMALL_STATE(6188)] = 216853, + [SMALL_STATE(6189)] = 216863, + [SMALL_STATE(6190)] = 216873, + [SMALL_STATE(6191)] = 216883, + [SMALL_STATE(6192)] = 216893, + [SMALL_STATE(6193)] = 216903, + [SMALL_STATE(6194)] = 216913, + [SMALL_STATE(6195)] = 216923, + [SMALL_STATE(6196)] = 216933, + [SMALL_STATE(6197)] = 216943, + [SMALL_STATE(6198)] = 216953, + [SMALL_STATE(6199)] = 216963, + [SMALL_STATE(6200)] = 216973, + [SMALL_STATE(6201)] = 216983, + [SMALL_STATE(6202)] = 216993, + [SMALL_STATE(6203)] = 217003, + [SMALL_STATE(6204)] = 217013, + [SMALL_STATE(6205)] = 217023, + [SMALL_STATE(6206)] = 217033, + [SMALL_STATE(6207)] = 217043, + [SMALL_STATE(6208)] = 217053, + [SMALL_STATE(6209)] = 217063, + [SMALL_STATE(6210)] = 217073, + [SMALL_STATE(6211)] = 217083, + [SMALL_STATE(6212)] = 217093, + [SMALL_STATE(6213)] = 217103, + [SMALL_STATE(6214)] = 217113, + [SMALL_STATE(6215)] = 217123, + [SMALL_STATE(6216)] = 217133, + [SMALL_STATE(6217)] = 217143, + [SMALL_STATE(6218)] = 217153, + [SMALL_STATE(6219)] = 217163, + [SMALL_STATE(6220)] = 217173, + [SMALL_STATE(6221)] = 217183, + [SMALL_STATE(6222)] = 217193, + [SMALL_STATE(6223)] = 217203, + [SMALL_STATE(6224)] = 217213, + [SMALL_STATE(6225)] = 217223, + [SMALL_STATE(6226)] = 217233, + [SMALL_STATE(6227)] = 217243, + [SMALL_STATE(6228)] = 217253, + [SMALL_STATE(6229)] = 217263, + [SMALL_STATE(6230)] = 217273, + [SMALL_STATE(6231)] = 217283, + [SMALL_STATE(6232)] = 217293, + [SMALL_STATE(6233)] = 217303, + [SMALL_STATE(6234)] = 217313, + [SMALL_STATE(6235)] = 217323, + [SMALL_STATE(6236)] = 217333, + [SMALL_STATE(6237)] = 217343, + [SMALL_STATE(6238)] = 217353, + [SMALL_STATE(6239)] = 217363, + [SMALL_STATE(6240)] = 217373, + [SMALL_STATE(6241)] = 217383, + [SMALL_STATE(6242)] = 217393, + [SMALL_STATE(6243)] = 217403, + [SMALL_STATE(6244)] = 217413, + [SMALL_STATE(6245)] = 217423, + [SMALL_STATE(6246)] = 217433, + [SMALL_STATE(6247)] = 217443, + [SMALL_STATE(6248)] = 217453, + [SMALL_STATE(6249)] = 217463, + [SMALL_STATE(6250)] = 217473, + [SMALL_STATE(6251)] = 217483, + [SMALL_STATE(6252)] = 217493, + [SMALL_STATE(6253)] = 217503, + [SMALL_STATE(6254)] = 217513, + [SMALL_STATE(6255)] = 217523, + [SMALL_STATE(6256)] = 217533, + [SMALL_STATE(6257)] = 217543, + [SMALL_STATE(6258)] = 217553, + [SMALL_STATE(6259)] = 217563, + [SMALL_STATE(6260)] = 217573, + [SMALL_STATE(6261)] = 217581, + [SMALL_STATE(6262)] = 217589, + [SMALL_STATE(6263)] = 217599, + [SMALL_STATE(6264)] = 217609, + [SMALL_STATE(6265)] = 217619, + [SMALL_STATE(6266)] = 217629, + [SMALL_STATE(6267)] = 217639, + [SMALL_STATE(6268)] = 217649, + [SMALL_STATE(6269)] = 217659, + [SMALL_STATE(6270)] = 217669, + [SMALL_STATE(6271)] = 217679, + [SMALL_STATE(6272)] = 217689, + [SMALL_STATE(6273)] = 217699, + [SMALL_STATE(6274)] = 217709, + [SMALL_STATE(6275)] = 217719, + [SMALL_STATE(6276)] = 217729, + [SMALL_STATE(6277)] = 217739, + [SMALL_STATE(6278)] = 217749, + [SMALL_STATE(6279)] = 217759, + [SMALL_STATE(6280)] = 217769, + [SMALL_STATE(6281)] = 217779, + [SMALL_STATE(6282)] = 217789, + [SMALL_STATE(6283)] = 217799, + [SMALL_STATE(6284)] = 217809, + [SMALL_STATE(6285)] = 217819, + [SMALL_STATE(6286)] = 217829, + [SMALL_STATE(6287)] = 217839, + [SMALL_STATE(6288)] = 217849, + [SMALL_STATE(6289)] = 217859, + [SMALL_STATE(6290)] = 217869, + [SMALL_STATE(6291)] = 217877, + [SMALL_STATE(6292)] = 217887, + [SMALL_STATE(6293)] = 217897, + [SMALL_STATE(6294)] = 217907, + [SMALL_STATE(6295)] = 217917, + [SMALL_STATE(6296)] = 217927, + [SMALL_STATE(6297)] = 217937, + [SMALL_STATE(6298)] = 217947, + [SMALL_STATE(6299)] = 217957, + [SMALL_STATE(6300)] = 217967, + [SMALL_STATE(6301)] = 217977, + [SMALL_STATE(6302)] = 217987, + [SMALL_STATE(6303)] = 217997, + [SMALL_STATE(6304)] = 218007, + [SMALL_STATE(6305)] = 218017, + [SMALL_STATE(6306)] = 218027, + [SMALL_STATE(6307)] = 218037, + [SMALL_STATE(6308)] = 218047, + [SMALL_STATE(6309)] = 218057, + [SMALL_STATE(6310)] = 218067, + [SMALL_STATE(6311)] = 218077, + [SMALL_STATE(6312)] = 218087, + [SMALL_STATE(6313)] = 218097, + [SMALL_STATE(6314)] = 218105, + [SMALL_STATE(6315)] = 218113, + [SMALL_STATE(6316)] = 218123, + [SMALL_STATE(6317)] = 218133, + [SMALL_STATE(6318)] = 218143, + [SMALL_STATE(6319)] = 218153, + [SMALL_STATE(6320)] = 218163, + [SMALL_STATE(6321)] = 218173, + [SMALL_STATE(6322)] = 218181, + [SMALL_STATE(6323)] = 218191, + [SMALL_STATE(6324)] = 218201, + [SMALL_STATE(6325)] = 218211, + [SMALL_STATE(6326)] = 218221, + [SMALL_STATE(6327)] = 218231, + [SMALL_STATE(6328)] = 218241, + [SMALL_STATE(6329)] = 218251, + [SMALL_STATE(6330)] = 218261, + [SMALL_STATE(6331)] = 218271, + [SMALL_STATE(6332)] = 218281, + [SMALL_STATE(6333)] = 218291, + [SMALL_STATE(6334)] = 218301, + [SMALL_STATE(6335)] = 218311, + [SMALL_STATE(6336)] = 218321, + [SMALL_STATE(6337)] = 218331, + [SMALL_STATE(6338)] = 218341, + [SMALL_STATE(6339)] = 218351, + [SMALL_STATE(6340)] = 218361, + [SMALL_STATE(6341)] = 218371, + [SMALL_STATE(6342)] = 218381, + [SMALL_STATE(6343)] = 218391, + [SMALL_STATE(6344)] = 218401, + [SMALL_STATE(6345)] = 218411, + [SMALL_STATE(6346)] = 218421, + [SMALL_STATE(6347)] = 218431, + [SMALL_STATE(6348)] = 218441, + [SMALL_STATE(6349)] = 218451, + [SMALL_STATE(6350)] = 218461, + [SMALL_STATE(6351)] = 218471, + [SMALL_STATE(6352)] = 218481, + [SMALL_STATE(6353)] = 218491, + [SMALL_STATE(6354)] = 218501, + [SMALL_STATE(6355)] = 218511, + [SMALL_STATE(6356)] = 218521, + [SMALL_STATE(6357)] = 218531, + [SMALL_STATE(6358)] = 218541, + [SMALL_STATE(6359)] = 218551, + [SMALL_STATE(6360)] = 218561, + [SMALL_STATE(6361)] = 218569, + [SMALL_STATE(6362)] = 218579, + [SMALL_STATE(6363)] = 218589, + [SMALL_STATE(6364)] = 218597, + [SMALL_STATE(6365)] = 218607, + [SMALL_STATE(6366)] = 218617, + [SMALL_STATE(6367)] = 218627, + [SMALL_STATE(6368)] = 218637, + [SMALL_STATE(6369)] = 218647, + [SMALL_STATE(6370)] = 218657, + [SMALL_STATE(6371)] = 218667, + [SMALL_STATE(6372)] = 218677, + [SMALL_STATE(6373)] = 218687, + [SMALL_STATE(6374)] = 218697, + [SMALL_STATE(6375)] = 218707, + [SMALL_STATE(6376)] = 218717, + [SMALL_STATE(6377)] = 218727, + [SMALL_STATE(6378)] = 218737, + [SMALL_STATE(6379)] = 218747, + [SMALL_STATE(6380)] = 218757, + [SMALL_STATE(6381)] = 218767, + [SMALL_STATE(6382)] = 218777, + [SMALL_STATE(6383)] = 218787, + [SMALL_STATE(6384)] = 218797, + [SMALL_STATE(6385)] = 218807, + [SMALL_STATE(6386)] = 218817, + [SMALL_STATE(6387)] = 218827, + [SMALL_STATE(6388)] = 218837, + [SMALL_STATE(6389)] = 218847, + [SMALL_STATE(6390)] = 218857, + [SMALL_STATE(6391)] = 218867, + [SMALL_STATE(6392)] = 218877, + [SMALL_STATE(6393)] = 218887, + [SMALL_STATE(6394)] = 218897, + [SMALL_STATE(6395)] = 218905, + [SMALL_STATE(6396)] = 218913, + [SMALL_STATE(6397)] = 218923, + [SMALL_STATE(6398)] = 218933, + [SMALL_STATE(6399)] = 218943, + [SMALL_STATE(6400)] = 218953, + [SMALL_STATE(6401)] = 218961, + [SMALL_STATE(6402)] = 218971, + [SMALL_STATE(6403)] = 218979, + [SMALL_STATE(6404)] = 218987, + [SMALL_STATE(6405)] = 218997, + [SMALL_STATE(6406)] = 219007, + [SMALL_STATE(6407)] = 219017, + [SMALL_STATE(6408)] = 219027, + [SMALL_STATE(6409)] = 219037, + [SMALL_STATE(6410)] = 219047, + [SMALL_STATE(6411)] = 219057, + [SMALL_STATE(6412)] = 219067, + [SMALL_STATE(6413)] = 219075, + [SMALL_STATE(6414)] = 219083, + [SMALL_STATE(6415)] = 219091, + [SMALL_STATE(6416)] = 219101, + [SMALL_STATE(6417)] = 219111, + [SMALL_STATE(6418)] = 219121, + [SMALL_STATE(6419)] = 219131, + [SMALL_STATE(6420)] = 219141, + [SMALL_STATE(6421)] = 219151, + [SMALL_STATE(6422)] = 219161, + [SMALL_STATE(6423)] = 219169, + [SMALL_STATE(6424)] = 219179, + [SMALL_STATE(6425)] = 219189, + [SMALL_STATE(6426)] = 219199, + [SMALL_STATE(6427)] = 219207, + [SMALL_STATE(6428)] = 219217, + [SMALL_STATE(6429)] = 219227, + [SMALL_STATE(6430)] = 219235, + [SMALL_STATE(6431)] = 219245, + [SMALL_STATE(6432)] = 219255, + [SMALL_STATE(6433)] = 219263, + [SMALL_STATE(6434)] = 219273, + [SMALL_STATE(6435)] = 219283, + [SMALL_STATE(6436)] = 219291, + [SMALL_STATE(6437)] = 219301, + [SMALL_STATE(6438)] = 219311, + [SMALL_STATE(6439)] = 219319, + [SMALL_STATE(6440)] = 219329, + [SMALL_STATE(6441)] = 219339, + [SMALL_STATE(6442)] = 219349, + [SMALL_STATE(6443)] = 219359, + [SMALL_STATE(6444)] = 219369, + [SMALL_STATE(6445)] = 219379, + [SMALL_STATE(6446)] = 219389, + [SMALL_STATE(6447)] = 219399, + [SMALL_STATE(6448)] = 219409, + [SMALL_STATE(6449)] = 219419, + [SMALL_STATE(6450)] = 219429, + [SMALL_STATE(6451)] = 219437, + [SMALL_STATE(6452)] = 219445, + [SMALL_STATE(6453)] = 219455, + [SMALL_STATE(6454)] = 219463, + [SMALL_STATE(6455)] = 219473, + [SMALL_STATE(6456)] = 219483, + [SMALL_STATE(6457)] = 219491, + [SMALL_STATE(6458)] = 219501, + [SMALL_STATE(6459)] = 219511, + [SMALL_STATE(6460)] = 219521, + [SMALL_STATE(6461)] = 219531, + [SMALL_STATE(6462)] = 219539, + [SMALL_STATE(6463)] = 219549, + [SMALL_STATE(6464)] = 219559, + [SMALL_STATE(6465)] = 219569, + [SMALL_STATE(6466)] = 219579, + [SMALL_STATE(6467)] = 219589, + [SMALL_STATE(6468)] = 219599, + [SMALL_STATE(6469)] = 219607, + [SMALL_STATE(6470)] = 219615, + [SMALL_STATE(6471)] = 219625, + [SMALL_STATE(6472)] = 219635, + [SMALL_STATE(6473)] = 219645, + [SMALL_STATE(6474)] = 219655, + [SMALL_STATE(6475)] = 219665, + [SMALL_STATE(6476)] = 219675, + [SMALL_STATE(6477)] = 219685, + [SMALL_STATE(6478)] = 219693, + [SMALL_STATE(6479)] = 219701, + [SMALL_STATE(6480)] = 219711, + [SMALL_STATE(6481)] = 219721, + [SMALL_STATE(6482)] = 219731, + [SMALL_STATE(6483)] = 219741, + [SMALL_STATE(6484)] = 219751, + [SMALL_STATE(6485)] = 219761, + [SMALL_STATE(6486)] = 219771, + [SMALL_STATE(6487)] = 219781, + [SMALL_STATE(6488)] = 219791, + [SMALL_STATE(6489)] = 219801, + [SMALL_STATE(6490)] = 219811, + [SMALL_STATE(6491)] = 219821, + [SMALL_STATE(6492)] = 219831, + [SMALL_STATE(6493)] = 219841, + [SMALL_STATE(6494)] = 219851, + [SMALL_STATE(6495)] = 219861, + [SMALL_STATE(6496)] = 219871, + [SMALL_STATE(6497)] = 219881, + [SMALL_STATE(6498)] = 219891, + [SMALL_STATE(6499)] = 219901, + [SMALL_STATE(6500)] = 219911, + [SMALL_STATE(6501)] = 219921, + [SMALL_STATE(6502)] = 219931, + [SMALL_STATE(6503)] = 219941, + [SMALL_STATE(6504)] = 219951, + [SMALL_STATE(6505)] = 219961, + [SMALL_STATE(6506)] = 219971, + [SMALL_STATE(6507)] = 219981, + [SMALL_STATE(6508)] = 219991, + [SMALL_STATE(6509)] = 220001, + [SMALL_STATE(6510)] = 220011, + [SMALL_STATE(6511)] = 220021, + [SMALL_STATE(6512)] = 220031, + [SMALL_STATE(6513)] = 220039, + [SMALL_STATE(6514)] = 220049, + [SMALL_STATE(6515)] = 220059, + [SMALL_STATE(6516)] = 220069, + [SMALL_STATE(6517)] = 220079, + [SMALL_STATE(6518)] = 220089, + [SMALL_STATE(6519)] = 220099, + [SMALL_STATE(6520)] = 220107, + [SMALL_STATE(6521)] = 220117, + [SMALL_STATE(6522)] = 220125, + [SMALL_STATE(6523)] = 220135, + [SMALL_STATE(6524)] = 220145, + [SMALL_STATE(6525)] = 220155, + [SMALL_STATE(6526)] = 220165, + [SMALL_STATE(6527)] = 220175, + [SMALL_STATE(6528)] = 220185, + [SMALL_STATE(6529)] = 220193, + [SMALL_STATE(6530)] = 220203, + [SMALL_STATE(6531)] = 220213, + [SMALL_STATE(6532)] = 220223, + [SMALL_STATE(6533)] = 220233, + [SMALL_STATE(6534)] = 220243, + [SMALL_STATE(6535)] = 220253, + [SMALL_STATE(6536)] = 220263, + [SMALL_STATE(6537)] = 220273, + [SMALL_STATE(6538)] = 220283, + [SMALL_STATE(6539)] = 220293, + [SMALL_STATE(6540)] = 220303, + [SMALL_STATE(6541)] = 220313, + [SMALL_STATE(6542)] = 220323, + [SMALL_STATE(6543)] = 220333, + [SMALL_STATE(6544)] = 220343, + [SMALL_STATE(6545)] = 220353, + [SMALL_STATE(6546)] = 220361, + [SMALL_STATE(6547)] = 220371, + [SMALL_STATE(6548)] = 220379, + [SMALL_STATE(6549)] = 220387, + [SMALL_STATE(6550)] = 220397, + [SMALL_STATE(6551)] = 220407, + [SMALL_STATE(6552)] = 220417, + [SMALL_STATE(6553)] = 220427, + [SMALL_STATE(6554)] = 220437, + [SMALL_STATE(6555)] = 220447, + [SMALL_STATE(6556)] = 220457, + [SMALL_STATE(6557)] = 220467, + [SMALL_STATE(6558)] = 220477, + [SMALL_STATE(6559)] = 220487, + [SMALL_STATE(6560)] = 220497, + [SMALL_STATE(6561)] = 220507, + [SMALL_STATE(6562)] = 220517, + [SMALL_STATE(6563)] = 220527, + [SMALL_STATE(6564)] = 220537, + [SMALL_STATE(6565)] = 220547, + [SMALL_STATE(6566)] = 220557, + [SMALL_STATE(6567)] = 220567, + [SMALL_STATE(6568)] = 220577, + [SMALL_STATE(6569)] = 220587, + [SMALL_STATE(6570)] = 220597, + [SMALL_STATE(6571)] = 220607, + [SMALL_STATE(6572)] = 220617, + [SMALL_STATE(6573)] = 220627, + [SMALL_STATE(6574)] = 220637, + [SMALL_STATE(6575)] = 220647, + [SMALL_STATE(6576)] = 220657, + [SMALL_STATE(6577)] = 220667, + [SMALL_STATE(6578)] = 220677, + [SMALL_STATE(6579)] = 220687, + [SMALL_STATE(6580)] = 220697, + [SMALL_STATE(6581)] = 220707, + [SMALL_STATE(6582)] = 220717, + [SMALL_STATE(6583)] = 220727, + [SMALL_STATE(6584)] = 220737, + [SMALL_STATE(6585)] = 220747, + [SMALL_STATE(6586)] = 220757, + [SMALL_STATE(6587)] = 220767, + [SMALL_STATE(6588)] = 220777, + [SMALL_STATE(6589)] = 220787, + [SMALL_STATE(6590)] = 220797, + [SMALL_STATE(6591)] = 220805, + [SMALL_STATE(6592)] = 220815, + [SMALL_STATE(6593)] = 220825, + [SMALL_STATE(6594)] = 220835, + [SMALL_STATE(6595)] = 220845, + [SMALL_STATE(6596)] = 220855, + [SMALL_STATE(6597)] = 220863, + [SMALL_STATE(6598)] = 220873, + [SMALL_STATE(6599)] = 220883, + [SMALL_STATE(6600)] = 220893, + [SMALL_STATE(6601)] = 220903, + [SMALL_STATE(6602)] = 220913, + [SMALL_STATE(6603)] = 220923, + [SMALL_STATE(6604)] = 220931, + [SMALL_STATE(6605)] = 220941, + [SMALL_STATE(6606)] = 220951, + [SMALL_STATE(6607)] = 220961, + [SMALL_STATE(6608)] = 220971, + [SMALL_STATE(6609)] = 220981, + [SMALL_STATE(6610)] = 220991, + [SMALL_STATE(6611)] = 221001, + [SMALL_STATE(6612)] = 221011, + [SMALL_STATE(6613)] = 221021, + [SMALL_STATE(6614)] = 221029, + [SMALL_STATE(6615)] = 221039, + [SMALL_STATE(6616)] = 221049, + [SMALL_STATE(6617)] = 221059, + [SMALL_STATE(6618)] = 221067, + [SMALL_STATE(6619)] = 221074, + [SMALL_STATE(6620)] = 221081, + [SMALL_STATE(6621)] = 221088, + [SMALL_STATE(6622)] = 221095, + [SMALL_STATE(6623)] = 221102, + [SMALL_STATE(6624)] = 221109, + [SMALL_STATE(6625)] = 221116, + [SMALL_STATE(6626)] = 221123, + [SMALL_STATE(6627)] = 221130, + [SMALL_STATE(6628)] = 221137, + [SMALL_STATE(6629)] = 221144, + [SMALL_STATE(6630)] = 221151, + [SMALL_STATE(6631)] = 221158, + [SMALL_STATE(6632)] = 221165, + [SMALL_STATE(6633)] = 221172, + [SMALL_STATE(6634)] = 221179, + [SMALL_STATE(6635)] = 221186, + [SMALL_STATE(6636)] = 221193, + [SMALL_STATE(6637)] = 221200, + [SMALL_STATE(6638)] = 221207, + [SMALL_STATE(6639)] = 221214, + [SMALL_STATE(6640)] = 221221, + [SMALL_STATE(6641)] = 221228, + [SMALL_STATE(6642)] = 221235, + [SMALL_STATE(6643)] = 221242, + [SMALL_STATE(6644)] = 221249, + [SMALL_STATE(6645)] = 221256, + [SMALL_STATE(6646)] = 221263, + [SMALL_STATE(6647)] = 221270, + [SMALL_STATE(6648)] = 221277, + [SMALL_STATE(6649)] = 221284, + [SMALL_STATE(6650)] = 221291, + [SMALL_STATE(6651)] = 221298, + [SMALL_STATE(6652)] = 221305, + [SMALL_STATE(6653)] = 221312, + [SMALL_STATE(6654)] = 221319, + [SMALL_STATE(6655)] = 221326, + [SMALL_STATE(6656)] = 221333, + [SMALL_STATE(6657)] = 221340, + [SMALL_STATE(6658)] = 221347, + [SMALL_STATE(6659)] = 221354, + [SMALL_STATE(6660)] = 221361, + [SMALL_STATE(6661)] = 221368, + [SMALL_STATE(6662)] = 221375, + [SMALL_STATE(6663)] = 221382, + [SMALL_STATE(6664)] = 221389, + [SMALL_STATE(6665)] = 221396, + [SMALL_STATE(6666)] = 221403, + [SMALL_STATE(6667)] = 221410, + [SMALL_STATE(6668)] = 221417, + [SMALL_STATE(6669)] = 221424, + [SMALL_STATE(6670)] = 221431, + [SMALL_STATE(6671)] = 221438, + [SMALL_STATE(6672)] = 221445, + [SMALL_STATE(6673)] = 221452, + [SMALL_STATE(6674)] = 221459, + [SMALL_STATE(6675)] = 221466, + [SMALL_STATE(6676)] = 221473, + [SMALL_STATE(6677)] = 221480, + [SMALL_STATE(6678)] = 221487, + [SMALL_STATE(6679)] = 221494, + [SMALL_STATE(6680)] = 221501, + [SMALL_STATE(6681)] = 221508, + [SMALL_STATE(6682)] = 221515, + [SMALL_STATE(6683)] = 221522, + [SMALL_STATE(6684)] = 221529, + [SMALL_STATE(6685)] = 221536, + [SMALL_STATE(6686)] = 221543, + [SMALL_STATE(6687)] = 221550, + [SMALL_STATE(6688)] = 221557, + [SMALL_STATE(6689)] = 221564, + [SMALL_STATE(6690)] = 221571, + [SMALL_STATE(6691)] = 221578, + [SMALL_STATE(6692)] = 221585, + [SMALL_STATE(6693)] = 221592, + [SMALL_STATE(6694)] = 221599, + [SMALL_STATE(6695)] = 221606, + [SMALL_STATE(6696)] = 221613, + [SMALL_STATE(6697)] = 221620, + [SMALL_STATE(6698)] = 221627, + [SMALL_STATE(6699)] = 221634, + [SMALL_STATE(6700)] = 221641, + [SMALL_STATE(6701)] = 221648, + [SMALL_STATE(6702)] = 221655, + [SMALL_STATE(6703)] = 221662, + [SMALL_STATE(6704)] = 221669, + [SMALL_STATE(6705)] = 221676, + [SMALL_STATE(6706)] = 221683, + [SMALL_STATE(6707)] = 221690, + [SMALL_STATE(6708)] = 221697, + [SMALL_STATE(6709)] = 221704, + [SMALL_STATE(6710)] = 221711, + [SMALL_STATE(6711)] = 221718, + [SMALL_STATE(6712)] = 221725, + [SMALL_STATE(6713)] = 221732, + [SMALL_STATE(6714)] = 221739, + [SMALL_STATE(6715)] = 221746, + [SMALL_STATE(6716)] = 221753, + [SMALL_STATE(6717)] = 221760, + [SMALL_STATE(6718)] = 221767, + [SMALL_STATE(6719)] = 221774, + [SMALL_STATE(6720)] = 221781, + [SMALL_STATE(6721)] = 221788, + [SMALL_STATE(6722)] = 221795, + [SMALL_STATE(6723)] = 221802, + [SMALL_STATE(6724)] = 221809, + [SMALL_STATE(6725)] = 221816, + [SMALL_STATE(6726)] = 221823, + [SMALL_STATE(6727)] = 221830, + [SMALL_STATE(6728)] = 221837, + [SMALL_STATE(6729)] = 221844, + [SMALL_STATE(6730)] = 221851, + [SMALL_STATE(6731)] = 221858, + [SMALL_STATE(6732)] = 221865, + [SMALL_STATE(6733)] = 221872, + [SMALL_STATE(6734)] = 221879, + [SMALL_STATE(6735)] = 221886, + [SMALL_STATE(6736)] = 221893, + [SMALL_STATE(6737)] = 221900, + [SMALL_STATE(6738)] = 221907, + [SMALL_STATE(6739)] = 221914, + [SMALL_STATE(6740)] = 221921, + [SMALL_STATE(6741)] = 221928, + [SMALL_STATE(6742)] = 221935, + [SMALL_STATE(6743)] = 221942, + [SMALL_STATE(6744)] = 221949, + [SMALL_STATE(6745)] = 221956, + [SMALL_STATE(6746)] = 221963, + [SMALL_STATE(6747)] = 221970, + [SMALL_STATE(6748)] = 221977, + [SMALL_STATE(6749)] = 221984, + [SMALL_STATE(6750)] = 221991, + [SMALL_STATE(6751)] = 221998, + [SMALL_STATE(6752)] = 222005, + [SMALL_STATE(6753)] = 222012, + [SMALL_STATE(6754)] = 222019, + [SMALL_STATE(6755)] = 222026, + [SMALL_STATE(6756)] = 222033, + [SMALL_STATE(6757)] = 222040, + [SMALL_STATE(6758)] = 222047, + [SMALL_STATE(6759)] = 222054, + [SMALL_STATE(6760)] = 222061, + [SMALL_STATE(6761)] = 222068, + [SMALL_STATE(6762)] = 222075, + [SMALL_STATE(6763)] = 222082, + [SMALL_STATE(6764)] = 222089, + [SMALL_STATE(6765)] = 222096, + [SMALL_STATE(6766)] = 222103, + [SMALL_STATE(6767)] = 222110, + [SMALL_STATE(6768)] = 222117, + [SMALL_STATE(6769)] = 222124, + [SMALL_STATE(6770)] = 222131, + [SMALL_STATE(6771)] = 222138, + [SMALL_STATE(6772)] = 222145, + [SMALL_STATE(6773)] = 222152, + [SMALL_STATE(6774)] = 222159, + [SMALL_STATE(6775)] = 222166, + [SMALL_STATE(6776)] = 222173, + [SMALL_STATE(6777)] = 222180, + [SMALL_STATE(6778)] = 222187, + [SMALL_STATE(6779)] = 222194, + [SMALL_STATE(6780)] = 222201, + [SMALL_STATE(6781)] = 222208, + [SMALL_STATE(6782)] = 222215, + [SMALL_STATE(6783)] = 222222, + [SMALL_STATE(6784)] = 222229, + [SMALL_STATE(6785)] = 222236, + [SMALL_STATE(6786)] = 222243, + [SMALL_STATE(6787)] = 222250, + [SMALL_STATE(6788)] = 222257, + [SMALL_STATE(6789)] = 222264, + [SMALL_STATE(6790)] = 222271, + [SMALL_STATE(6791)] = 222278, + [SMALL_STATE(6792)] = 222285, + [SMALL_STATE(6793)] = 222292, + [SMALL_STATE(6794)] = 222299, + [SMALL_STATE(6795)] = 222306, + [SMALL_STATE(6796)] = 222313, + [SMALL_STATE(6797)] = 222320, + [SMALL_STATE(6798)] = 222327, + [SMALL_STATE(6799)] = 222334, + [SMALL_STATE(6800)] = 222341, + [SMALL_STATE(6801)] = 222348, + [SMALL_STATE(6802)] = 222355, + [SMALL_STATE(6803)] = 222362, + [SMALL_STATE(6804)] = 222369, + [SMALL_STATE(6805)] = 222376, + [SMALL_STATE(6806)] = 222383, + [SMALL_STATE(6807)] = 222390, + [SMALL_STATE(6808)] = 222397, + [SMALL_STATE(6809)] = 222404, + [SMALL_STATE(6810)] = 222411, + [SMALL_STATE(6811)] = 222418, + [SMALL_STATE(6812)] = 222425, + [SMALL_STATE(6813)] = 222432, + [SMALL_STATE(6814)] = 222439, + [SMALL_STATE(6815)] = 222446, + [SMALL_STATE(6816)] = 222453, + [SMALL_STATE(6817)] = 222460, + [SMALL_STATE(6818)] = 222467, + [SMALL_STATE(6819)] = 222474, + [SMALL_STATE(6820)] = 222481, + [SMALL_STATE(6821)] = 222488, + [SMALL_STATE(6822)] = 222495, + [SMALL_STATE(6823)] = 222502, + [SMALL_STATE(6824)] = 222509, + [SMALL_STATE(6825)] = 222516, + [SMALL_STATE(6826)] = 222523, + [SMALL_STATE(6827)] = 222530, + [SMALL_STATE(6828)] = 222537, + [SMALL_STATE(6829)] = 222544, + [SMALL_STATE(6830)] = 222551, + [SMALL_STATE(6831)] = 222558, + [SMALL_STATE(6832)] = 222565, + [SMALL_STATE(6833)] = 222572, + [SMALL_STATE(6834)] = 222579, + [SMALL_STATE(6835)] = 222586, + [SMALL_STATE(6836)] = 222593, + [SMALL_STATE(6837)] = 222600, + [SMALL_STATE(6838)] = 222607, + [SMALL_STATE(6839)] = 222614, + [SMALL_STATE(6840)] = 222621, + [SMALL_STATE(6841)] = 222628, + [SMALL_STATE(6842)] = 222635, + [SMALL_STATE(6843)] = 222642, + [SMALL_STATE(6844)] = 222649, + [SMALL_STATE(6845)] = 222656, + [SMALL_STATE(6846)] = 222663, + [SMALL_STATE(6847)] = 222670, + [SMALL_STATE(6848)] = 222677, + [SMALL_STATE(6849)] = 222684, + [SMALL_STATE(6850)] = 222691, + [SMALL_STATE(6851)] = 222698, + [SMALL_STATE(6852)] = 222705, + [SMALL_STATE(6853)] = 222712, + [SMALL_STATE(6854)] = 222719, + [SMALL_STATE(6855)] = 222726, + [SMALL_STATE(6856)] = 222733, + [SMALL_STATE(6857)] = 222740, + [SMALL_STATE(6858)] = 222747, + [SMALL_STATE(6859)] = 222754, + [SMALL_STATE(6860)] = 222761, + [SMALL_STATE(6861)] = 222768, + [SMALL_STATE(6862)] = 222775, + [SMALL_STATE(6863)] = 222782, + [SMALL_STATE(6864)] = 222789, + [SMALL_STATE(6865)] = 222796, + [SMALL_STATE(6866)] = 222803, + [SMALL_STATE(6867)] = 222810, + [SMALL_STATE(6868)] = 222817, + [SMALL_STATE(6869)] = 222824, + [SMALL_STATE(6870)] = 222831, + [SMALL_STATE(6871)] = 222838, + [SMALL_STATE(6872)] = 222845, + [SMALL_STATE(6873)] = 222852, + [SMALL_STATE(6874)] = 222859, + [SMALL_STATE(6875)] = 222866, + [SMALL_STATE(6876)] = 222873, + [SMALL_STATE(6877)] = 222880, + [SMALL_STATE(6878)] = 222887, + [SMALL_STATE(6879)] = 222894, + [SMALL_STATE(6880)] = 222901, + [SMALL_STATE(6881)] = 222908, + [SMALL_STATE(6882)] = 222915, + [SMALL_STATE(6883)] = 222922, + [SMALL_STATE(6884)] = 222929, + [SMALL_STATE(6885)] = 222936, + [SMALL_STATE(6886)] = 222943, + [SMALL_STATE(6887)] = 222950, + [SMALL_STATE(6888)] = 222957, + [SMALL_STATE(6889)] = 222964, + [SMALL_STATE(6890)] = 222971, + [SMALL_STATE(6891)] = 222978, + [SMALL_STATE(6892)] = 222985, + [SMALL_STATE(6893)] = 222992, + [SMALL_STATE(6894)] = 222999, + [SMALL_STATE(6895)] = 223006, + [SMALL_STATE(6896)] = 223013, + [SMALL_STATE(6897)] = 223020, + [SMALL_STATE(6898)] = 223027, + [SMALL_STATE(6899)] = 223034, + [SMALL_STATE(6900)] = 223041, + [SMALL_STATE(6901)] = 223048, + [SMALL_STATE(6902)] = 223055, + [SMALL_STATE(6903)] = 223062, + [SMALL_STATE(6904)] = 223069, + [SMALL_STATE(6905)] = 223076, + [SMALL_STATE(6906)] = 223083, + [SMALL_STATE(6907)] = 223090, + [SMALL_STATE(6908)] = 223097, + [SMALL_STATE(6909)] = 223104, + [SMALL_STATE(6910)] = 223111, + [SMALL_STATE(6911)] = 223118, + [SMALL_STATE(6912)] = 223125, + [SMALL_STATE(6913)] = 223132, + [SMALL_STATE(6914)] = 223139, + [SMALL_STATE(6915)] = 223146, + [SMALL_STATE(6916)] = 223153, + [SMALL_STATE(6917)] = 223160, + [SMALL_STATE(6918)] = 223167, + [SMALL_STATE(6919)] = 223174, + [SMALL_STATE(6920)] = 223181, + [SMALL_STATE(6921)] = 223188, + [SMALL_STATE(6922)] = 223195, + [SMALL_STATE(6923)] = 223202, + [SMALL_STATE(6924)] = 223209, + [SMALL_STATE(6925)] = 223216, + [SMALL_STATE(6926)] = 223223, + [SMALL_STATE(6927)] = 223230, + [SMALL_STATE(6928)] = 223237, + [SMALL_STATE(6929)] = 223244, + [SMALL_STATE(6930)] = 223251, + [SMALL_STATE(6931)] = 223258, + [SMALL_STATE(6932)] = 223265, + [SMALL_STATE(6933)] = 223272, + [SMALL_STATE(6934)] = 223279, + [SMALL_STATE(6935)] = 223286, + [SMALL_STATE(6936)] = 223293, + [SMALL_STATE(6937)] = 223300, + [SMALL_STATE(6938)] = 223307, + [SMALL_STATE(6939)] = 223314, + [SMALL_STATE(6940)] = 223321, + [SMALL_STATE(6941)] = 223328, + [SMALL_STATE(6942)] = 223335, + [SMALL_STATE(6943)] = 223342, + [SMALL_STATE(6944)] = 223349, + [SMALL_STATE(6945)] = 223356, + [SMALL_STATE(6946)] = 223363, + [SMALL_STATE(6947)] = 223370, + [SMALL_STATE(6948)] = 223377, + [SMALL_STATE(6949)] = 223384, + [SMALL_STATE(6950)] = 223391, + [SMALL_STATE(6951)] = 223398, + [SMALL_STATE(6952)] = 223405, + [SMALL_STATE(6953)] = 223412, + [SMALL_STATE(6954)] = 223419, + [SMALL_STATE(6955)] = 223426, + [SMALL_STATE(6956)] = 223433, + [SMALL_STATE(6957)] = 223440, + [SMALL_STATE(6958)] = 223447, + [SMALL_STATE(6959)] = 223454, + [SMALL_STATE(6960)] = 223461, + [SMALL_STATE(6961)] = 223468, + [SMALL_STATE(6962)] = 223475, + [SMALL_STATE(6963)] = 223482, + [SMALL_STATE(6964)] = 223489, + [SMALL_STATE(6965)] = 223496, + [SMALL_STATE(6966)] = 223503, + [SMALL_STATE(6967)] = 223510, + [SMALL_STATE(6968)] = 223517, + [SMALL_STATE(6969)] = 223524, + [SMALL_STATE(6970)] = 223531, + [SMALL_STATE(6971)] = 223538, + [SMALL_STATE(6972)] = 223545, + [SMALL_STATE(6973)] = 223552, + [SMALL_STATE(6974)] = 223559, + [SMALL_STATE(6975)] = 223566, + [SMALL_STATE(6976)] = 223573, + [SMALL_STATE(6977)] = 223580, + [SMALL_STATE(6978)] = 223587, + [SMALL_STATE(6979)] = 223594, + [SMALL_STATE(6980)] = 223601, + [SMALL_STATE(6981)] = 223608, + [SMALL_STATE(6982)] = 223615, + [SMALL_STATE(6983)] = 223622, + [SMALL_STATE(6984)] = 223629, + [SMALL_STATE(6985)] = 223636, + [SMALL_STATE(6986)] = 223643, + [SMALL_STATE(6987)] = 223650, + [SMALL_STATE(6988)] = 223657, + [SMALL_STATE(6989)] = 223664, + [SMALL_STATE(6990)] = 223671, + [SMALL_STATE(6991)] = 223678, + [SMALL_STATE(6992)] = 223685, + [SMALL_STATE(6993)] = 223692, + [SMALL_STATE(6994)] = 223699, + [SMALL_STATE(6995)] = 223706, + [SMALL_STATE(6996)] = 223713, + [SMALL_STATE(6997)] = 223720, + [SMALL_STATE(6998)] = 223727, + [SMALL_STATE(6999)] = 223734, + [SMALL_STATE(7000)] = 223741, + [SMALL_STATE(7001)] = 223748, + [SMALL_STATE(7002)] = 223755, + [SMALL_STATE(7003)] = 223762, + [SMALL_STATE(7004)] = 223769, + [SMALL_STATE(7005)] = 223776, + [SMALL_STATE(7006)] = 223783, + [SMALL_STATE(7007)] = 223790, + [SMALL_STATE(7008)] = 223797, + [SMALL_STATE(7009)] = 223804, + [SMALL_STATE(7010)] = 223811, + [SMALL_STATE(7011)] = 223818, + [SMALL_STATE(7012)] = 223825, + [SMALL_STATE(7013)] = 223832, + [SMALL_STATE(7014)] = 223839, + [SMALL_STATE(7015)] = 223846, + [SMALL_STATE(7016)] = 223853, + [SMALL_STATE(7017)] = 223860, + [SMALL_STATE(7018)] = 223867, + [SMALL_STATE(7019)] = 223874, + [SMALL_STATE(7020)] = 223881, + [SMALL_STATE(7021)] = 223888, + [SMALL_STATE(7022)] = 223895, + [SMALL_STATE(7023)] = 223902, + [SMALL_STATE(7024)] = 223909, + [SMALL_STATE(7025)] = 223916, + [SMALL_STATE(7026)] = 223923, + [SMALL_STATE(7027)] = 223930, + [SMALL_STATE(7028)] = 223937, + [SMALL_STATE(7029)] = 223944, + [SMALL_STATE(7030)] = 223951, + [SMALL_STATE(7031)] = 223958, + [SMALL_STATE(7032)] = 223965, + [SMALL_STATE(7033)] = 223972, + [SMALL_STATE(7034)] = 223979, + [SMALL_STATE(7035)] = 223986, + [SMALL_STATE(7036)] = 223993, + [SMALL_STATE(7037)] = 224000, + [SMALL_STATE(7038)] = 224007, + [SMALL_STATE(7039)] = 224014, + [SMALL_STATE(7040)] = 224021, + [SMALL_STATE(7041)] = 224028, + [SMALL_STATE(7042)] = 224035, + [SMALL_STATE(7043)] = 224042, + [SMALL_STATE(7044)] = 224049, + [SMALL_STATE(7045)] = 224056, + [SMALL_STATE(7046)] = 224063, + [SMALL_STATE(7047)] = 224070, + [SMALL_STATE(7048)] = 224077, + [SMALL_STATE(7049)] = 224084, + [SMALL_STATE(7050)] = 224091, + [SMALL_STATE(7051)] = 224098, + [SMALL_STATE(7052)] = 224105, + [SMALL_STATE(7053)] = 224112, + [SMALL_STATE(7054)] = 224119, + [SMALL_STATE(7055)] = 224126, + [SMALL_STATE(7056)] = 224133, + [SMALL_STATE(7057)] = 224140, + [SMALL_STATE(7058)] = 224147, + [SMALL_STATE(7059)] = 224154, + [SMALL_STATE(7060)] = 224161, + [SMALL_STATE(7061)] = 224168, + [SMALL_STATE(7062)] = 224175, + [SMALL_STATE(7063)] = 224182, + [SMALL_STATE(7064)] = 224189, + [SMALL_STATE(7065)] = 224196, + [SMALL_STATE(7066)] = 224203, + [SMALL_STATE(7067)] = 224210, + [SMALL_STATE(7068)] = 224217, + [SMALL_STATE(7069)] = 224224, + [SMALL_STATE(7070)] = 224231, + [SMALL_STATE(7071)] = 224238, + [SMALL_STATE(7072)] = 224245, + [SMALL_STATE(7073)] = 224252, + [SMALL_STATE(7074)] = 224259, + [SMALL_STATE(7075)] = 224266, + [SMALL_STATE(7076)] = 224273, + [SMALL_STATE(7077)] = 224280, + [SMALL_STATE(7078)] = 224287, + [SMALL_STATE(7079)] = 224294, + [SMALL_STATE(7080)] = 224301, + [SMALL_STATE(7081)] = 224308, + [SMALL_STATE(7082)] = 224315, + [SMALL_STATE(7083)] = 224322, + [SMALL_STATE(7084)] = 224329, + [SMALL_STATE(7085)] = 224336, + [SMALL_STATE(7086)] = 224343, + [SMALL_STATE(7087)] = 224350, + [SMALL_STATE(7088)] = 224357, + [SMALL_STATE(7089)] = 224364, + [SMALL_STATE(7090)] = 224371, + [SMALL_STATE(7091)] = 224378, + [SMALL_STATE(7092)] = 224385, + [SMALL_STATE(7093)] = 224392, + [SMALL_STATE(7094)] = 224399, + [SMALL_STATE(7095)] = 224406, + [SMALL_STATE(7096)] = 224413, + [SMALL_STATE(7097)] = 224420, + [SMALL_STATE(7098)] = 224427, + [SMALL_STATE(7099)] = 224434, + [SMALL_STATE(7100)] = 224441, + [SMALL_STATE(7101)] = 224448, + [SMALL_STATE(7102)] = 224455, + [SMALL_STATE(7103)] = 224462, + [SMALL_STATE(7104)] = 224469, + [SMALL_STATE(7105)] = 224476, + [SMALL_STATE(7106)] = 224483, + [SMALL_STATE(7107)] = 224490, + [SMALL_STATE(7108)] = 224497, + [SMALL_STATE(7109)] = 224504, + [SMALL_STATE(7110)] = 224511, + [SMALL_STATE(7111)] = 224518, + [SMALL_STATE(7112)] = 224525, + [SMALL_STATE(7113)] = 224532, + [SMALL_STATE(7114)] = 224539, + [SMALL_STATE(7115)] = 224546, + [SMALL_STATE(7116)] = 224553, + [SMALL_STATE(7117)] = 224560, + [SMALL_STATE(7118)] = 224567, + [SMALL_STATE(7119)] = 224574, + [SMALL_STATE(7120)] = 224581, + [SMALL_STATE(7121)] = 224588, + [SMALL_STATE(7122)] = 224595, + [SMALL_STATE(7123)] = 224602, + [SMALL_STATE(7124)] = 224609, + [SMALL_STATE(7125)] = 224616, + [SMALL_STATE(7126)] = 224623, + [SMALL_STATE(7127)] = 224630, + [SMALL_STATE(7128)] = 224637, + [SMALL_STATE(7129)] = 224644, + [SMALL_STATE(7130)] = 224651, + [SMALL_STATE(7131)] = 224658, + [SMALL_STATE(7132)] = 224665, + [SMALL_STATE(7133)] = 224672, + [SMALL_STATE(7134)] = 224679, + [SMALL_STATE(7135)] = 224686, + [SMALL_STATE(7136)] = 224693, + [SMALL_STATE(7137)] = 224700, + [SMALL_STATE(7138)] = 224707, + [SMALL_STATE(7139)] = 224714, + [SMALL_STATE(7140)] = 224721, + [SMALL_STATE(7141)] = 224728, + [SMALL_STATE(7142)] = 224735, + [SMALL_STATE(7143)] = 224742, + [SMALL_STATE(7144)] = 224749, + [SMALL_STATE(7145)] = 224756, + [SMALL_STATE(7146)] = 224763, + [SMALL_STATE(7147)] = 224770, + [SMALL_STATE(7148)] = 224777, + [SMALL_STATE(7149)] = 224784, + [SMALL_STATE(7150)] = 224791, + [SMALL_STATE(7151)] = 224798, + [SMALL_STATE(7152)] = 224805, + [SMALL_STATE(7153)] = 224812, + [SMALL_STATE(7154)] = 224819, + [SMALL_STATE(7155)] = 224826, + [SMALL_STATE(7156)] = 224833, + [SMALL_STATE(7157)] = 224840, + [SMALL_STATE(7158)] = 224847, + [SMALL_STATE(7159)] = 224854, + [SMALL_STATE(7160)] = 224861, + [SMALL_STATE(7161)] = 224868, + [SMALL_STATE(7162)] = 224875, + [SMALL_STATE(7163)] = 224882, + [SMALL_STATE(7164)] = 224889, + [SMALL_STATE(7165)] = 224896, + [SMALL_STATE(7166)] = 224903, + [SMALL_STATE(7167)] = 224910, + [SMALL_STATE(7168)] = 224917, + [SMALL_STATE(7169)] = 224924, + [SMALL_STATE(7170)] = 224931, + [SMALL_STATE(7171)] = 224938, + [SMALL_STATE(7172)] = 224945, + [SMALL_STATE(7173)] = 224952, + [SMALL_STATE(7174)] = 224959, + [SMALL_STATE(7175)] = 224966, + [SMALL_STATE(7176)] = 224973, + [SMALL_STATE(7177)] = 224980, + [SMALL_STATE(7178)] = 224987, + [SMALL_STATE(7179)] = 224994, + [SMALL_STATE(7180)] = 225001, + [SMALL_STATE(7181)] = 225008, + [SMALL_STATE(7182)] = 225015, + [SMALL_STATE(7183)] = 225022, + [SMALL_STATE(7184)] = 225029, + [SMALL_STATE(7185)] = 225036, + [SMALL_STATE(7186)] = 225043, + [SMALL_STATE(7187)] = 225050, + [SMALL_STATE(7188)] = 225057, + [SMALL_STATE(7189)] = 225064, + [SMALL_STATE(7190)] = 225071, + [SMALL_STATE(7191)] = 225078, + [SMALL_STATE(7192)] = 225085, + [SMALL_STATE(7193)] = 225092, + [SMALL_STATE(7194)] = 225099, + [SMALL_STATE(7195)] = 225106, + [SMALL_STATE(7196)] = 225113, + [SMALL_STATE(7197)] = 225120, + [SMALL_STATE(7198)] = 225127, + [SMALL_STATE(7199)] = 225134, + [SMALL_STATE(7200)] = 225141, + [SMALL_STATE(7201)] = 225148, + [SMALL_STATE(7202)] = 225155, + [SMALL_STATE(7203)] = 225162, + [SMALL_STATE(7204)] = 225169, + [SMALL_STATE(7205)] = 225176, + [SMALL_STATE(7206)] = 225183, + [SMALL_STATE(7207)] = 225190, + [SMALL_STATE(7208)] = 225197, + [SMALL_STATE(7209)] = 225204, + [SMALL_STATE(7210)] = 225211, + [SMALL_STATE(7211)] = 225218, + [SMALL_STATE(7212)] = 225225, + [SMALL_STATE(7213)] = 225232, + [SMALL_STATE(7214)] = 225239, + [SMALL_STATE(7215)] = 225246, + [SMALL_STATE(7216)] = 225253, + [SMALL_STATE(7217)] = 225260, + [SMALL_STATE(7218)] = 225267, + [SMALL_STATE(7219)] = 225274, + [SMALL_STATE(7220)] = 225281, + [SMALL_STATE(7221)] = 225288, + [SMALL_STATE(7222)] = 225295, + [SMALL_STATE(7223)] = 225302, + [SMALL_STATE(7224)] = 225309, + [SMALL_STATE(7225)] = 225316, + [SMALL_STATE(7226)] = 225323, + [SMALL_STATE(7227)] = 225330, + [SMALL_STATE(7228)] = 225337, + [SMALL_STATE(7229)] = 225344, + [SMALL_STATE(7230)] = 225351, +}; + +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_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 66), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 66), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1678), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5224), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6735), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4561), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6730), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6201), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(117), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1718), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1673), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1718), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(924), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4284), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1099), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(435), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3409), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3151), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7169), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5437), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6170), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7160), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6199), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4088), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(74), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1299), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3341), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2413), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3289), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3751), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5054), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4648), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4646), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4645), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6092), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6525), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1662), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6843), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6202), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(275), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7162), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1293), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7137), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7136), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6727), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1644), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1435), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3372), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6290), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5612), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3521), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3522), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7018), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3337), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4190), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4156), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1347), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(759), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6530), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1585), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1478), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5603), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5230), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7163), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7164), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1436), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1500), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6316), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1707), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4087), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4419), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1421), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5283), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7060), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4578), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7057), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6129), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(687), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3415), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3194), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6038), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6256), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1717), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7167), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6209), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(268), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7130), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1283), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7126), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7027), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7052), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1375), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6262), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1461), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5740), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5296), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7131), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7132), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1455), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1708), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1495), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5276), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6723), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4473), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6651), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6602), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(652), + [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3394), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3150), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(54), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5835), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6597), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1637), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6649), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6416), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(278), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7178), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1287), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6839), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6838), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6658), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1369), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6592), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1482), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5785), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5218), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7193), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7180), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1447), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1690), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1684), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5258), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7230), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4495), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7226), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6118), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(878), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3414), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3155), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5920), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6225), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1548), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7091), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6226), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(263), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7064), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1281), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7062), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7059), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7033), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1402), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6310), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5629), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5268), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7003), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7002), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1470), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1720), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 10), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 10), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1603), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(326), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1693), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1693), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(435), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3409), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3341), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7169), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5437), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6524), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7160), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(74), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2413), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3289), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3751), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5054), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4648), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4646), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4645), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6092), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6525), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6202), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(275), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7162), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1293), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7137), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7136), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6727), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1644), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1435), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3372), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6290), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5612), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3521), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3522), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7018), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3337), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4156), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6349), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6530), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1585), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1478), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1436), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1500), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6316), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1707), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4087), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4419), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1728), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(878), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3414), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5920), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6225), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6226), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(263), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7064), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1281), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7062), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7059), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7033), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6310), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1470), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1720), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1491), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(652), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3394), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(54), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5835), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6597), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6416), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7178), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1287), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6839), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6838), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6658), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6592), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1482), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1447), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1690), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1656), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(687), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3415), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6038), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6256), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6209), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(268), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7130), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1283), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7126), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7027), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7052), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6262), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1461), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1455), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1661), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1140), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3379), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6041), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6534), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6599), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(281), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7192), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1284), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6655), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6656), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6728), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6452), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1449), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1448), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1641), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 66), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 66), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4006), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6775), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4597), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6971), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6418), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4272), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6875), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3252), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4284), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4284), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3396), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3341), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7169), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4778), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6598), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7160), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6199), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6868), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2413), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3792), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4019), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5041), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4690), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4689), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4685), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4026), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7087), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3337), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4190), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6719), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4132), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5609), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(759), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1783), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5272), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7200), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2523), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(326), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), + [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1693), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(878), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5437), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6524), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1337), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6361), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5875), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6225), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1498), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7140), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6258), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(263), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7209), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1281), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7062), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7059), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7033), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1644), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1435), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3372), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6290), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5612), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3521), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6349), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6310), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1585), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1453), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1470), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1720), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6316), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1707), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4087), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4419), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2491), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(687), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6038), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6256), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1717), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7167), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6209), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(268), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7130), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1283), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7126), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7027), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7052), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6262), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1461), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1455), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2522), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1140), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6041), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6534), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6599), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(281), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7192), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1284), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6655), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6656), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6728), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6452), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1449), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1448), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1641), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2469), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(435), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(74), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6092), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6525), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6843), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6202), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(275), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7162), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1293), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7137), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7136), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6727), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6530), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1478), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1436), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1500), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2549), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(652), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(54), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5835), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6597), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1637), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6649), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6416), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(278), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7178), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1287), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6839), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6838), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6658), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6592), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1482), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1447), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1690), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2508), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5920), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1548), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7091), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6226), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7064), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6650), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4574), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6790), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6411), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3380), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6787), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5590), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1790), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5266), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7179), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6806), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4541), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6676), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6331), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3393), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7035), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5753), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1782), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5280), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7205), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 8), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 8), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6586), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6340), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6458), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 129), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 129), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6569), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 43), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 43), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 164), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 164), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 163), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 163), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 162), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 162), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 149), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 149), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 148), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 148), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 168), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 168), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 123), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 123), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 122), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 122), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 73), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 73), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 109), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 109), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 165), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 165), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 92), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 92), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 166), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 166), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 167), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 167), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 50), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 50), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 54), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 54), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 42), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 42), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 41), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 41), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 47), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 47), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 9), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 9), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 30), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 30), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 55), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 55), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 64), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 64), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 66), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 66), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 31), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 31), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 47), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 47), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 94), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 94), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 66), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 66), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 9), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 9), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 140), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 140), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2346), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5437), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6361), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6349), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2346), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5437), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6361), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6349), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2346), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5437), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6361), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6349), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6439), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2346), + [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(326), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1718), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1718), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1693), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3240), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5437), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1497), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1337), + [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6361), + [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1644), + [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1435), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3372), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6290), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5612), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3521), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5311), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6349), + [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1585), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6316), + [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1707), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4087), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4419), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7172), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3512] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(409), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), + [3536] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7141), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7147), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7145), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7138), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6799), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7170), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6894), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(449), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7134), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7096), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7166), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7076), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7075), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), + [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(442), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7070), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6986), + [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6936), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6899), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6890), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7074), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 13), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 13), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(386), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5791), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6169), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5578), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6150), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(464), + [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(411), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 160), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 160), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1817), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5698), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6146), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(420), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5714), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6208), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(404), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 83), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 83), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 38), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 38), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 83), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 83), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 38), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 38), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1846), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 9), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 9), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 14), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 14), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 10), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 10), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 36), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 36), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 74), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 74), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 121), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 121), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(429), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 51), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 51), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1877), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [4077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(411), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6430), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 33), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 33), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1917), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1929), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 15), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 15), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 53), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 53), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [4235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6470), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(404), + [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6417), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 151), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 151), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 92), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 92), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 161), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 161), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 152), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 152), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 37), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 37), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 7, .production_id = 153), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 7, .production_id = 153), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 7, .production_id = 153), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 7, .production_id = 153), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 39), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 39), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 37), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 37), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 39), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 39), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 92), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 92), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 143), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 143), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 54), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 54), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 128), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 128), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(464), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 146), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 146), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 145), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 145), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 144), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 144), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 146), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 146), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 145), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 145), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 144), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 144), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 115), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 115), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 46), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 46), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 84), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 84), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 54), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 54), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), + [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(429), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 82), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 82), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 76), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 76), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 8), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 8), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 119), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 119), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 112), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 112), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 46), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 46), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 2), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 2), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 118), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 118), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 117), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 117), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 116), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 116), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 84), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 84), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 119), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 119), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 118), + [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 118), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 117), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 117), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 116), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 116), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 82), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 82), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 76), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 76), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 73), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 73), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 50), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 50), + [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(429), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(442), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 132), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 132), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(411), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), + [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(386), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2319), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(414), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 132), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 132), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 142), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 142), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 72), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 72), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5105), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), + [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 111), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 111), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 110), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 110), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 16), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 16), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 59), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), + [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(429), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5612), + [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6316), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 22), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 22), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), + [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 70), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 70), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 49), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 49), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2775), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 96), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 96), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6957), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(411), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(404), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), + [5248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(404), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5756), + [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6147), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(406), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(414), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 52), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 52), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), + [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), + [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3261), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(420), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3536), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4003), + [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6849), + [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6254), + [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6851), + [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4004), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4002), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_function_specifier, 1), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_function_specifier, 1), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), + [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3387), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 46), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 87), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3341), + [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7169), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6598), + [5638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7160), + [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2413), + [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3337), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4003), + [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6849), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6254), + [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6851), + [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4004), + [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4002), + [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4190), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 58), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 91), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 147), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1462), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 128), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [5975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 124), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 151), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4241), + [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7010), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6535), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7012), + [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3604), + [6007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4230), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1325), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 113), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4043), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1340), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 44), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 69), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4269), + [6566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4269), + [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2413), + [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2413), + [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4300), + [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4274), + [6583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(6932), + [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3604), + [6643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3604), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3341), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7169), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6170), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7160), + [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2413), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3337), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), + [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), + [6706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), + [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4269), + [6723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4269), + [6726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2413), + [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2413), + [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4274), + [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6932), + [6740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), + [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4387), + [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4387), + [6762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4123), + [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4123), + [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4384), + [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6951), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7169), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [6807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3604), + [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3604), + [6813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7010), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [6818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4264), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), + [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), + [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [6869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4390), + [6872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4401), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), + [6877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), + [6881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), + [6885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), + [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), + [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2413), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4123), + [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4123), + [6925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2413), + [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [7022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3604), + [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3604), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), + [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [7130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [7180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [7186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [7240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1302), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 134), + [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [7713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 5), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), + [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 17), + [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 17), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 26), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 26), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6170), + [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 137), + [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 137), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), + [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 19), + [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 19), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), + [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 26), + [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 26), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 135), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 135), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 5, .production_id = 17), + [7840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 5, .production_id = 17), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [7848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), + [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 50), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 135), + [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 135), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 134), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 19), + [7876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 19), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 6, .dynamic_precedence = 1, .production_id = 17), + [7882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 6, .dynamic_precedence = 1, .production_id = 17), + [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 108), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 32), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6535), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 95), + [7901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 95), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 68), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 19), + [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 19), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 81), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 81), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), + [7927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 19), + [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 19), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), + [7949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [7953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), + [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 54), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 134), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [8119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 48), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), + [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), + [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4720), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), + [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), + [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), + [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), + [8334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1691), + [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [8339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(6644), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), + [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), + [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 127), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 150), + [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 97), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [8470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5532), + [8473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5532), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 75), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 27), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(5238), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(489), + [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4509), + [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(6468), + [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(6957), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1867), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1886), + [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1813), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), + [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 86), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1595), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1280), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(6315), + [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 56), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 120), + [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 54), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [9061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3364), + [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [9108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(5101), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6392), + [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1388), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [9185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), SHIFT_REPEAT(5121), + [9188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4228), + [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [9285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 81), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [9351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [9443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 21), + [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 81), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 3), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [9483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 4), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [9495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 47), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 126), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 27), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 75), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [9621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 44), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 140), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10051] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 105), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 140), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6789), + [10274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6844), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [10291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6836), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6833), + [10299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6794), + [10302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6732), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [10321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6724), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6721), + [10333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6654), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [10346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6624), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [10383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6619), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [10404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6846), + [10407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6646), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_mql5_external_scanner_create(void); +void tree_sitter_mql5_external_scanner_destroy(void *); +bool tree_sitter_mql5_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_mql5_external_scanner_serialize(void *, char *); +void tree_sitter_mql5_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_mql5(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_mql5_external_scanner_create, + tree_sitter_mql5_external_scanner_destroy, + tree_sitter_mql5_external_scanner_scan, + tree_sitter_mql5_external_scanner_serialize, + tree_sitter_mql5_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h new file mode 100644 index 0000000..2b14ac1 --- /dev/null +++ b/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_